Session 4: Running a Model and Post Processing the Results

This session will focus on running a Source model and working with the time series results.

We will do this twice. The first time, we'll mostly accept default options and the second time we will explore various options in more detail.

Which Model?

Note: This session uses ExampleProject/RiverModel2.rsproj. You are welcome to work with your own model instead, however you will need to change the notebook text at certain points to reflect the names of nodes, links and functions in your model file.

Overview

  • Example - Storage Water Balance
  • Two passes - first pass accepts defaults / takes simple options. second pass looks at options
  • First Pass
    • Configuring Time Series Recorders
    • Running the model
    • Retrieving results
    • Summarising, Plotting, Analysing and Exporting results
  • Second pass / details
    • Configuring time series recorders
      • Individual enable/disable
      • Bulk enable / disable
      • How to work out the ‘keys'
    • Running the model
      • Specifying time periods
      • Specifying input set
      • Other options
      • Other ‘Running Configurations'

Simple Water Balance Model

The following model is adapted from the introductory tutorials provided by eWater.

Startup

  1. Load the Veneer plugin if you haven't already (see instructions in 0Setup_and_Hello_World.ipynb)
  2. Start Source
  3. Open ExampleProject/RiverModel2.rsproj
  4. Open the first and only scenario - Water Balance
  5. Start the Web Server Monitoring window (under the Tools menu) and ensure Veneer is running

Pass 1

Import the veneer-py package and initialise the client

Every notebook you create for veneer-py will have an import statement to load the veneer package, and a line to initialise a client.

Notes:

  1. You'll typically have other import statements (eg import pandas as pd) and other initialisation. I usually group these initial statements together at the top of the notebook, but there is no need to do so in Python. I break with my usual habit for this tutorial, in order to introduce each import as it is required.
  2. When initialising the Veneer client, it will default to port number 9876, however I have explictly used port=9876 below as a reminder of where you may need to change things if the Veneer you are connecting to is running on a different port. This could be the case if you are running more than one copy of Veneer.

In [1]:
import veneer
v = veneer.Veneer(port=9876)

Configuring recorders

When you trigger a scenario run from Veneer, Source will run just as if you hit the Run button in the toolbar. This includes all run settings (eg start, end date), what 'mode' is used (eg normal run, calibration run, river operations) and with whichever output recorders are enabled.

All of these options can be configured from Python, but by far the most common thing to configure are output recorders.

Outputs are configured using v.configure_recording(), which is used for both enabling and disabling recorders


In [2]:
help(v.configure_recording)


Help on method configure_recording in module veneer.general:

configure_recording(enable=[], disable=[]) method of veneer.general.Veneer instance
    Enabled and disable time series recording in the Source model.
    
    enable: List of time series selectors to enable,
    
    disable: List of time series selectors to disable
    
    Note: Each time series selector is a python dictionary object with up to three keys:
      * NetworkElement
      * RecordingElement
      * RecordingVariable
    
    These are used to match time series available from the Source model. A given selector may match
    multiple time series. For example, a selector of {'RecordingVariable':'Downstream Flow Volume'}
    will match Downstream Flow Volume from all nodes and links.
    
    Any empty dictionary {} will match ALL time series in the model.
    
    So, for example, you could disable ALL recording in the model with
    
    v = Veneer()
    v.configure_recording(disable=[{}])
    
    Note, the time series selectors in enable and disable may both match the same time series in some cases.
    In this case, the 'enable' will take effect.

Configure recording enables very fine grained control as well as very broadscale actions - similar to the project explorer in the user interface.

For example, you can enable Downstream Flow Volume at the Lake Release minimum flow node with:

v.configure_recording([{'Network Element':'Lake Release', 'RecordingVariable':'Downstream Flow Volume'}])

Alternatively, you can disable ALL recording in the model, with

v.configure_recording(disable=[{}])

The enable and disable parameters work in the same way - they both accept a Python list (the [] syntax) , where each item in that list contains criteria for matching available output recorders. The criteria are provided in Python dictionaries (the {} syntax) - key-value lookup objects where, in this case, the keys can take the values NetworkElement, RecordingElement and RecordingVariable.

Any key that's missing will simply match all corresponding elements. For example, ommitting NetworkElement will match corresponding output records in all nodes, links and catchments. This is why an empty dictionary - {} - matches all output recorders.

Note: - There is currently a bug whereby the disabling all recorders with an empty dictionary doesn't disable everything - a few odd outputs are left on...

When constructing enable and disable commands, the keys should be used (or omitted) as follows :

  • NetworkElement: The name of the node,link or catchment of interest - omit to target every network element
  • RecordingVariable: The specific variable of inerest (eg Downstream Flow Volume, or Water Surface Elevation) - omit to target every applicable variable
  • RecordingElement: The 'grouping' of variables, such as 'Demand Model'

Determining NetworkElement is straightforward, but the others aren't always clear. Working out values for RecordingVariable and RecordingElement is covered later in this session.

Lets ensure that we have Downstream Flow Volume recorded


In [3]:
v.configure_recording([{'RecordingVariable':'Downstream Flow Volume'}])

As an example, lets disable recording at the inflows and confluences and enable every recorder on the water user


In [4]:
v.configure_recording(enable=[{'NetworkElement':'Crop Fields'}],
                      disable=[{'NetworkElement':'Crab Creek'},{'NetworkElement':'Fish Creek'},
                               {'NetworkElement':'Shell Creek'},{'NetworkElement':'Fish Creek Confluence'},
                               {'NetworkElement':'Shell Creek Confluence'}])

Running the model

Running the model, with current settings is a matter of calling v.run_model()

This will trigger a run, in the same way as pressing the Run button on the toolbar. If the run is successful, the run_model function will return a HTTP success code and a URL pointing to the results of the run, such as:

(302, 'runs/2')

Note: HTTP 302 is a redirect code - used for sending your browser to a new URL when the information you wanted has moved. The key thing here is runs/2 (in this case, there was already simulation results set in memory).


In [5]:
v.run_model()


Out[5]:
(302, 'runs/1')

If you have a large model and a lot of outputs recorded, the results can consume a lot of system resources. It can be useful to drop (forget) earlier runs. You can drop all existing runs before a simulation with

v.drop_all_runs()

Note: After dropping runs, you won't be able to retrieve those results from Source - but any results you've already got in the Python session will remain.


In [6]:
v.drop_all_runs()

In [7]:
v.run_model()


Out[7]:
(302, 'runs/1')

In [ ]:

Retrieving results

There is a two step process for retrieving results from Veneer:

  1. Retrieve an index of all results from the run - using v.retrieve_run(id), then
  2. Retrieve one or more time series using v.retrieve_multiple_time_series

You can skip step 1 - retrieve_multiple_time_series will do it implicitly - but if you are going to make numerous calls to retrieve time series its more efficient to call v.retrieve_run yourself, save the results and pass it in to v.retrieve_multiple_time_series.

Note: If you know you want the results of the most recent model run, you can omit any reference to the run ID and use the default - the string 'latest'.


In [8]:
help(v.retrieve_run)


Help on method retrieve_run in module veneer.general:

retrieve_run(run='latest') method of veneer.general.Veneer instance
    Retrieve a results summary for a particular run.
    
    This will include references to all of the time series results available for the run.
    
    run: Run to retrieve. Either 'latest' (default) or an integer run number from 1


In [9]:
results_index = v.retrieve_run()  # This will retrieve the latest run

The results_index variable is not particularly user friendly - but it does include information about the run that can come in handy.


In [10]:
results_index


Out[10]:
{'DateRun': '08/01/2017 16:56:50',
 'Name': 'Default Input Set (1)',
 'Number': 1,
 'Results': [{'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Storage Volume'}, {'RecordingElement': 'Link Travel Time', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Link Travel Time/variable/Link Travel Time', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Link Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Link Travel Time'}, {'RecordingElement': 'Groundwater Flux', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Groundwater Flux/variable/Groundwater Flux', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Groundwater Flux'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Water Surface Area'}, {'RecordingElement': 'Lateral Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Lateral Inflow Volume/variable/Lateral Inflow Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Lateral Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Lateral Inflow Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #1: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #1: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #1 > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #1 > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #1 > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #1 > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #1 > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #1 > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #1 > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 1/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Default Link #1', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #1 > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Storage Volume'}, {'RecordingElement': 'Link Travel Time', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Link Travel Time/variable/Link Travel Time', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Link Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Link Travel Time'}, {'RecordingElement': 'Groundwater Flux', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Groundwater Flux/variable/Groundwater Flux', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Groundwater Flux'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Water Surface Area'}, {'RecordingElement': 'Lateral Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Lateral Inflow Volume/variable/Lateral Inflow Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Lateral Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Lateral Inflow Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #2: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #2: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #2 > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #2 > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #2 > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #2 > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #2 > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #2 > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #2 > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 2/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Default Link #2', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #2 > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Storage Volume'}, {'RecordingElement': 'Lag', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Lag/variable/Lag', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Lag', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Lag'}, {'RecordingElement': 'LagTime', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/LagTime/variable/LagTime', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'LagTime', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: LagTime'}, {'RecordingElement': 'Link Travel Time', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Link Travel Time/variable/Link Travel Time', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Link Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Link Travel Time'}, {'RecordingElement': 'Groundwater Flux', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Groundwater Flux/variable/Groundwater Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Groundwater Flux'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Water Surface Area'}, {'RecordingElement': 'Lateral Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Lateral Inflow Volume/variable/Lateral Inflow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Lateral Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Lateral Inflow Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing: Default Link #3: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #3: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing > Default Link #3 > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing > Default Link #3 > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing > Default Link #3 > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing > Default Link #3 > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing > Default Link #3 > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing > Default Link #3 > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing > Default Link #3 > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 3/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Default Link #3', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Lagged Flow Routing > Default Link #3 > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Storage Volume'}, {'RecordingElement': 'Link Travel Time', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Link Travel Time/variable/Link Travel Time', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Link Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Link Travel Time'}, {'RecordingElement': 'Groundwater Flux', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Groundwater Flux/variable/Groundwater Flux', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Groundwater Flux'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Water Surface Area'}, {'RecordingElement': 'Lateral Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Lateral Inflow Volume/variable/Lateral Inflow Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Lateral Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Lateral Inflow Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #4: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #4: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #4 > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #4 > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #4 > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #4 > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #4 > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #4 > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #4 > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 4/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Default Link #4', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #4 > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Storage Volume'}, {'RecordingElement': 'Link Travel Time', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Link Travel Time/variable/Link Travel Time', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Link Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Link Travel Time'}, {'RecordingElement': 'Groundwater Flux', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Groundwater Flux/variable/Groundwater Flux', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Groundwater Flux'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Water Surface Area'}, {'RecordingElement': 'Lateral Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Lateral Inflow Volume/variable/Lateral Inflow Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Lateral Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Lateral Inflow Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #5: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #5: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #5 > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #5 > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #5 > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #5 > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #5 > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #5 > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #5 > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 5/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Default Link #5', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #5 > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Storage Volume'}, {'RecordingElement': 'Link Travel Time', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Link Travel Time/variable/Link Travel Time', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Link Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Link Travel Time'}, {'RecordingElement': 'Groundwater Flux', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Groundwater Flux/variable/Groundwater Flux', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Groundwater Flux'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Water Surface Area'}, {'RecordingElement': 'Lateral Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Lateral Inflow Volume/variable/Lateral Inflow Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Lateral Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Lateral Inflow Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #6: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #6: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #6 > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #6 > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #6 > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #6 > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #6 > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #6 > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #6 > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 6/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Default Link #6', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #6 > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Storage Volume'}, {'RecordingElement': 'Link Travel Time', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Link Travel Time/variable/Link Travel Time', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Link Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Link Travel Time'}, {'RecordingElement': 'Groundwater Flux', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Groundwater Flux/variable/Groundwater Flux', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Groundwater Flux'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Water Surface Area'}, {'RecordingElement': 'Lateral Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Lateral Inflow Volume/variable/Lateral Inflow Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Lateral Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Lateral Inflow Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Lake Outflow: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Lake Outflow: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Lake Outflow > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Lake Outflow > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Lake Outflow > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Lake Outflow > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Lake Outflow > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Lake Outflow > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Lake Outflow > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Outflow/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Lake Outflow', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Lake Outflow > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Storage Volume'}, {'RecordingElement': 'Link Travel Time', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Link Travel Time/variable/Link Travel Time', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Link Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Link Travel Time'}, {'RecordingElement': 'Groundwater Flux', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Groundwater Flux/variable/Groundwater Flux', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Groundwater Flux'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Water Surface Area'}, {'RecordingElement': 'Lateral Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Lateral Inflow Volume/variable/Lateral Inflow Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Lateral Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Lateral Inflow Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Upstream Flow', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Upstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'TotalInflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Downstream Flow', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Downstream Flow', 'RunNumber': 1, 'TimeSeriesName': 'Outflow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'InflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Storage Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Loss%2FGain Flux', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Loss/Gain Flux', 'RunNumber': 1, 'TimeSeriesName': 'HighFlowLoss'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Lateral Flow', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Lateral Flow', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlow'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Lateral Flow Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Lateral Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'LateralFlowVolume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Mass Balance', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'MassBalance'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Live Storage Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Live Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'LiveStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Dead Storage Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'CurrentDeadStorage'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Groundwater Flux', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Groundwater Flux', 'RunNumber': 1, 'TimeSeriesName': 'GroundWaterFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Catchment Flux', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Catchment Flux', 'RunNumber': 1, 'TimeSeriesName': 'CatchmentFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Net Evaporation Flux', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Net Evaporation Flux', 'RunNumber': 1, 'TimeSeriesName': 'NetEvaporationFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Timeseries Flux', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Timeseries Flux', 'RunNumber': 1, 'TimeSeriesName': 'TimeseriesFlux'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Divisions/variable/Flow Based Flux', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Flow Based Flux', 'RunNumber': 1, 'TimeSeriesName': 'FlowFlux'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #14: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #14: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #14 > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #14 > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #14 > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #14 > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #14 > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #14 > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #14 > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Default Link 14/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Default Link #14', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing > Default Link #14 > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #15: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #15: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #15: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #15: Storage Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #15: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #15: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #15: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 15/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #15', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #15: Mass Balance'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #11: Upstream Flow'}, {'RecordingElement': 'Catchment Inflow', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Catchment Inflow/variable/Flow', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #11: Catchment Inflow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #11: Downstream Flow'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #11: Storage Volume'}, {'RecordingElement': 'Divisions', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Divisions/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'OutflowVolume'}, {'RecordingElement': 'Lateral Flow', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Lateral Flow/variable/Flow', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #11: Lateral Flow'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #11: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Straight-Through Routing: Default Link #11: Downstream Flow Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Default Link 11/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Default Link #11', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Default Link #11: Mass Balance'}, {'RecordingElement': 'Forecast Volume', 'TimeSeriesUrl': '/runs/1/location/Crab Creek/element/Forecast Volume/variable/0', 'NetworkElement': 'Crab Creek', 'RecordingVariable': '0', 'RunNumber': 1, 'TimeSeriesName': 'Inflow: Crab Creek: Forecast Volume: Current time step + 1'}, {'RecordingElement': 'Forecast Volume', 'TimeSeriesUrl': '/runs/1/location/Fish Creek/element/Forecast Volume/variable/0', 'NetworkElement': 'Fish Creek', 'RecordingVariable': '0', 'RunNumber': 1, 'TimeSeriesName': 'Inflow: Fish Creek: Forecast Volume: Current time step + 1'}, {'RecordingElement': 'Forecast Volume', 'TimeSeriesUrl': '/runs/1/location/Shell Creek/element/Forecast Volume/variable/0', 'NetworkElement': 'Shell Creek', 'RecordingVariable': '0', 'RunNumber': 1, 'TimeSeriesName': 'Inflow: Shell Creek: Forecast Volume: Current time step + 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Upstream Flow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Downstream Flow'}, {'RecordingElement': 'Total Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Total Inflow Volume/variable/Total Inflow Volume', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Total Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Total Inflow Volume'}, {'RecordingElement': 'Total Outflow Volume', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Total Outflow Volume/variable/Total Outflow Volume', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Total Outflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Total Outflow Volume'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Storage Volume'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Downstream Flow Volume'}, {'RecordingElement': 'Recorded Gauging Station Flow', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Recorded Gauging Station Flow/variable/Recorded Gauging Station Flow', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Recorded Gauging Station Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Recorded Gauging Station Flow'}, {'RecordingElement': 'Unaccounted Difference', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Unaccounted Difference/variable/Unaccounted Difference', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Unaccounted Difference', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Unaccounted Difference'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Middle Gauge: Water Surface Elevation'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Middle Gauge: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Middle Gauge > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Middle Gauge > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Middle Gauge > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Middle Gauge > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Middle Gauge > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Middle Gauge > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Middle Gauge > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Middle Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Middle Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Middle Gauge > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Upstream Flow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Downstream Flow'}, {'RecordingElement': 'Total Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Total Inflow Volume/variable/Total Inflow Volume', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Total Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Total Inflow Volume'}, {'RecordingElement': 'Total Outflow Volume', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Total Outflow Volume/variable/Total Outflow Volume', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Total Outflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Total Outflow Volume'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Storage Volume'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Downstream Flow Volume'}, {'RecordingElement': 'Recorded Gauging Station Flow', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Recorded Gauging Station Flow/variable/Recorded Gauging Station Flow', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Recorded Gauging Station Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Recorded Gauging Station Flow'}, {'RecordingElement': 'Unaccounted Difference', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Unaccounted Difference/variable/Unaccounted Difference', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Unaccounted Difference', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Unaccounted Difference'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Lower Gauge: Water Surface Elevation'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Lower Gauge: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Lower Gauge > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Lower Gauge > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Lower Gauge > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Lower Gauge > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Lower Gauge > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Lower Gauge > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Lower Gauge > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lower Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Lower Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Lower Gauge > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Upstream Flow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Downstream Flow'}, {'RecordingElement': 'Total Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Total Inflow Volume/variable/Total Inflow Volume', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Total Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Total Inflow Volume'}, {'RecordingElement': 'Total Outflow Volume', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Total Outflow Volume/variable/Total Outflow Volume', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Total Outflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Total Outflow Volume'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Storage Volume'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Downstream Flow Volume'}, {'RecordingElement': 'Recorded Gauging Station Flow', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Recorded Gauging Station Flow/variable/Recorded Gauging Station Flow', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Recorded Gauging Station Flow', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Recorded Gauging Station Flow'}, {'RecordingElement': 'Unaccounted Difference', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Unaccounted Difference/variable/Unaccounted Difference', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Unaccounted Difference', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Unaccounted Difference'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Gauge: Evaluation Gauge: Water Surface Elevation'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Evaluation Gauge: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Evaluation Gauge > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Evaluation Gauge > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Evaluation Gauge > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Evaluation Gauge > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Evaluation Gauge > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Evaluation Gauge > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Evaluation Gauge > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Evaluation Gauge/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Evaluation Gauge', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Gauge > Evaluation Gauge > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Upstream Flow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Downstream Flow'}, {'RecordingElement': 'Total Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Total Inflow Volume/variable/Total Inflow Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Total Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Total Inflow Volume'}, {'RecordingElement': 'Total Outflow Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Total Outflow Volume/variable/Total Outflow Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Total Outflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Total Outflow Volume'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Storage Volume'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Downstream Flow Volume'}, {'RecordingElement': 'Hydropower', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Hydropower/variable/Hydropower', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Hydropower', 'RunNumber': 1, 'TimeSeriesName': 'Recreational Lake: Total'}, {'RecordingElement': 'Spill Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Spill Volume/variable/Lake Outflow', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Lake Outflow', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Spill Volume Lake Outflow'}, {'RecordingElement': 'Spill Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Spill Volume/variable/Spill Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Spill Volume', 'RunNumber': 1, 'TimeSeriesName': 'Recreational Lake: Spill Volume Total'}, {'RecordingElement': 'Unallocated Release Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Unallocated Release Volume/variable/Lake Outflow', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Lake Outflow', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Unallocated Release Volume Lake Outflow'}, {'RecordingElement': 'Unallocated Release Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Unallocated Release Volume/variable/Unallocated Release Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Unallocated Release Volume', 'RunNumber': 1, 'TimeSeriesName': 'Recreational Lake: Unallocated Release Volume Total'}, {'RecordingElement': 'Allocated Release Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Allocated Release Volume/variable/Lake Outflow', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Lake Outflow', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Allocated Release Volume Lake Outflow'}, {'RecordingElement': 'Allocated Release Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Allocated Release Volume/variable/Allocated Release Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Allocated Release Volume', 'RunNumber': 1, 'TimeSeriesName': 'Recreational Lake: Allocated Release Volume Total'}, {'RecordingElement': 'Outlet Release Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Outlet Release Volume/variable/Lake Outflow', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Lake Outflow', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Outlet Release Volume Lake Outflow'}, {'RecordingElement': 'Outlet Release Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Outlet Release Volume/variable/Outlet Release Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Outlet Release Volume', 'RunNumber': 1, 'TimeSeriesName': 'Recreational Lake: Outlet Release Volume Total'}, {'RecordingElement': 'Water Surface Elevation', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Water Surface Elevation/variable/Water Surface Elevation', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Water Surface Elevation', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Water Surface Elevation'}, {'RecordingElement': 'Water Surface Area', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Water Surface Area/variable/Water Surface Area', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Water Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Water Surface Area'}, {'RecordingElement': 'Gauged Level', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Gauged Level/variable/Gauged Level', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Gauged Level', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Gauged Level'}, {'RecordingElement': 'Rainfall', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rainfall/variable/Rainfall', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rainfall', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Rainfall'}, {'RecordingElement': 'Actual ET', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Actual ET/variable/Actual ET', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Actual ET', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Actual ET'}, {'RecordingElement': 'Full Supply Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Full Supply Volume/variable/Full Supply Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Full Supply Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Full Supply Volume'}, {'RecordingElement': 'Predicted Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Predicted Inflow Volume/variable/Predicted Inflow Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Predicted Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Predicted Inflow Volume'}, {'RecordingElement': 'Dead Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Dead Storage Volume/variable/Dead Storage Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Dead Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Dead Storage Volume'}, {'RecordingElement': 'Storage Level', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Storage Level/variable/Storage Level', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Storage Level', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Storage Level'}, {'RecordingElement': 'Minimum Operating Level', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Minimum Operating Level/variable/Minimum Operating Level', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Minimum Operating Level', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Minimum Operating Level'}, {'RecordingElement': 'Operating Target', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Operating Target/variable/Operating Target', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Operating Target', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Operating Target'}, {'RecordingElement': 'Maximum Operating Level', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Maximum Operating Level/variable/Maximum Operating Level', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Maximum Operating Level', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Maximum Operating Level'}, {'RecordingElement': 'Maximum Unregulated Operating Target Level', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Maximum Unregulated Operating Target Level/variable/Maximum Unregulated Operating Target Level', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Maximum Unregulated Operating Target Level', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Maximum Unregulated Operating Target Level'}, {'RecordingElement': 'Storage Surface Area', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Storage Surface Area/variable/Storage Surface Area', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Storage Surface Area', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Storage Surface Area'}, {'RecordingElement': 'Maximum Release Rate', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Maximum Release Rate/variable/Maximum Release Rate', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Maximum Release Rate', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Maximum Release Rate'}, {'RecordingElement': 'Minimum Release Rate', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Minimum Release Rate/variable/Minimum Release Rate', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Minimum Release Rate', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Minimum Release Rate'}, {'RecordingElement': 'Rainfall Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rainfall Volume/variable/Rainfall Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rainfall Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Rainfall Volume'}, {'RecordingElement': 'Evaporation Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Evaporation Volume/variable/Evaporation Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Evaporation Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Evaporation Volume'}, {'RecordingElement': 'Infiltration Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Infiltration Volume/variable/Infiltration Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Infiltration Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Infiltration Volume'}, {'RecordingElement': 'Requested Flow Rate', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Requested Flow Rate/variable/Requested Flow Rate', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Requested Flow Rate', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Requested Flow Rate'}, {'RecordingElement': 'Required Release Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Required Release Volume/variable/Required Release Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Required Release Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Required Release Volume'}, {'RecordingElement': 'Required Storage Level', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Required Storage Level/variable/Required Storage Level', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Required Storage Level', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Required Storage Level'}, {'RecordingElement': 'Unaccounted Difference', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Unaccounted Difference/variable/Unaccounted Difference', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Unaccounted Difference', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Unaccounted Difference'}, {'RecordingElement': 'Wetland Inflow', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Wetland Inflow/variable/Wetland Inflow', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Wetland Inflow', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Wetland Inflow'}, {'RecordingElement': 'Conveyance Flow Rate', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Conveyance Flow Rate/variable/Conveyance Flow Rate', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Conveyance Flow Rate', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Conveyance Flow Rate'}, {'RecordingElement': 'Conveyance Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Conveyance Flow Volume/variable/Conveyance Flow Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Conveyance Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Conveyance Flow Volume'}, {'RecordingElement': 'Cluster Solver: Reduced Level', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Cluster Solver Reduced Level/variable/Cluster Solver Reduced Level', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Cluster Solver: Reduced Level', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Cluster Solver: Reduced Level'}, {'RecordingElement': 'Ownership Overridden', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Ownership Overridden/variable/Ownership Overridden', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Ownership Overridden', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Ownership Overridden'}, {'RecordingElement': 'Ceded Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Ceded Volume/variable/Ceded Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Ceded Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Ceded Volume'}, {'RecordingElement': 'Internal Spill Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Internal Spill Volume/variable/Internal Spill Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Internal Spill Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Internal Spill Volume'}, {'RecordingElement': 'External Spill Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/External Spill Volume/variable/External Spill Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'External Spill Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: External Spill Volume'}, {'RecordingElement': 'Regulated Release Volume', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Regulated Release Volume/variable/Regulated Release Volume', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Regulated Release Volume', 'RunNumber': 1, 'TimeSeriesName': 'Storage: Recreational Lake: Regulated Release Volume'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Recreational Lake: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Storage > Recreational Lake > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Storage > Recreational Lake > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Storage > Recreational Lake > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Storage > Recreational Lake > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Storage > Recreational Lake > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Storage > Recreational Lake > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Storage > Recreational Lake > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Recreational Lake/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Recreational Lake', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Storage > Recreational Lake > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Upstream Flow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Downstream Flow'}, {'RecordingElement': 'Total Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Total Inflow Volume/variable/Total Inflow Volume', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Total Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Total Inflow Volume'}, {'RecordingElement': 'Total Outflow Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Total Outflow Volume/variable/Total Outflow Volume', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Total Outflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Total Outflow Volume'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Storage Volume'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Downstream Flow Volume'}, {'RecordingElement': 'Offset Required Water', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Offset Required Water/variable/Offset Required Water', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Offset Required Water', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Offset Required Water'}, {'RecordingElement': 'Required Water', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Required Water/variable/Required Water', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Required Water', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Required Water'}, {'RecordingElement': 'Order Time', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Order Time/variable/Order Time', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Order Time', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement: Lake Release: Order Time'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Lake Release: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement > Lake Release > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement > Lake Release > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement > Lake Release > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement > Lake Release > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement > Lake Release > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement > Lake Release > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement > Lake Release > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Lake Release/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Lake Release', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Minimum Flow Requirement > Lake Release > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Upstream Flow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Downstream Flow'}, {'RecordingElement': 'Total Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Total Inflow Volume/variable/Total Inflow Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Total Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Total Inflow Volume'}, {'RecordingElement': 'Total Outflow Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Total Outflow Volume/variable/Total Outflow Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Total Outflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Total Outflow Volume'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Storage Volume'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Downstream Flow Volume'}, {'RecordingElement': 'Overbank Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Overbank Flow Volume/variable/Overbank Flow Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Overbank Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Overbank Flow Volume'}, {'RecordingElement': 'Travel Time', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Travel Time/variable/Travel Time', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Travel Time', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Travel Time'}, {'RecordingElement': 'Volume Ordered', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Volume Ordered/variable/Volume Ordered', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Volume Ordered', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Volume Ordered'}, {'RecordingElement': 'Cumulated Extracted Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Cumulated Extracted Volume/variable/Cumulated Extracted Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Cumulated Extracted Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Cumulated Extracted Volume'}, {'RecordingElement': 'Extracted Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Extracted Volume/variable/Extracted Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Extracted Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Extracted Volume'}, {'RecordingElement': 'Overbank Extracted Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Overbank Extracted Volume/variable/Overbank Extracted Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Overbank Extracted Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Overbank Extracted Volume'}, {'RecordingElement': 'OverOrderFactor', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/OverOrderFactor/variable/OverOrderFactor', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'OverOrderFactor', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: OverOrderFactor'}, {'RecordingElement': 'Overbank Flow Rate', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Overbank Flow Rate/variable/Overbank Flow Rate', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Overbank Flow Rate', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Overbank Flow Rate'}, {'RecordingElement': 'Maximum Extraction Rate', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Maximum Extraction Rate/variable/Maximum Extraction Rate', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Maximum Extraction Rate', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Maximum Extraction Rate'}, {'RecordingElement': 'Diversion Threshold', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Diversion Threshold/variable/Diversion Threshold', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Diversion Threshold', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Diversion Threshold'}, {'RecordingElement': 'Planned Extractions', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Planned Extractions/variable/Planned Extractions', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Planned Extractions', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Planned Extractions'}, {'RecordingElement': 'Unregulated Volume', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Unregulated Volume/variable/Unregulated Volume', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Unregulated Volume', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Unregulated Volume'}, {'RecordingElement': 'Unregulated Volume Extracted', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Unregulated Volume Extracted/variable/Unregulated Volume Extracted', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Unregulated Volume Extracted', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Unregulated Volume Extracted'}, {'RecordingElement': 'Maximum Account Deduction', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Maximum Account Deduction/variable/Maximum Account Deduction', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Maximum Account Deduction', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point: Supply Point 13: Maximum Account Deduction'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point 13: Mass Balance'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Rules Based Orders/variable/Rules Based Orders@Orders', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Rules Based Orders@Orders', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point > Supply Point 13 > Orders'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Minimum', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Rules Based Orders@Constraints@Minimum', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point > Supply Point 13 > Constraints > Minimum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Rules Based Orders/variable/Rules Based Orders@Constraints@Maximum', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Rules Based Orders@Constraints@Maximum', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point > Supply Point 13 > Constraints > Maximum'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Rules Based Orders/variable/Rules Based Orders@Off Allocation Requests', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Rules Based Orders@Off Allocation Requests', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point > Supply Point 13 > Off Allocation Requests'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Rules Based Orders/variable/Rules Based Orders@Priorities@1', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Rules Based Orders@Priorities@1', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point > Supply Point 13 > Priorities > 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Orders@Owner 1', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Rules Based Orders@Ownership@Orders@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point > Supply Point 13 > Ownership > Orders > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point > Supply Point 13 > Ownership > Constraints > Minimum > Owner 1'}, {'RecordingElement': 'Rules Based Orders', 'TimeSeriesUrl': '/runs/1/location/Supply Point 13/element/Rules Based Orders/variable/Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'NetworkElement': 'Supply Point 13', 'RecordingVariable': 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1', 'RunNumber': 1, 'TimeSeriesName': 'Supply Point > Supply Point 13 > Ownership > Constraints > Maximum > Owner 1'}, {'RecordingElement': 'Id', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Id/variable/Id', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Id', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Id'}, {'RecordingElement': 'Upstream Flow', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Upstream Flow/variable/Flow', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Upstream Flow'}, {'RecordingElement': 'Downstream Flow', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Downstream Flow/variable/Flow', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Flow', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Downstream Flow'}, {'RecordingElement': 'Total Inflow Volume', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Total Inflow Volume/variable/Total Inflow Volume', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Total Inflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Total Inflow Volume'}, {'RecordingElement': 'Total Outflow Volume', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Total Outflow Volume/variable/Total Outflow Volume', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Total Outflow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Total Outflow Volume'}, {'RecordingElement': 'Storage Volume', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Storage Volume/variable/Storage Volume', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Storage Volume', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Storage Volume'}, {'RecordingElement': 'Upstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Upstream Flow Volume/variable/Upstream Flow Volume', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Upstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Upstream Flow Volume'}, {'RecordingElement': 'Downstream Flow Volume', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Downstream Flow Volume/variable/Downstream Flow Volume', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Downstream Flow Volume', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Downstream Flow Volume'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Demand Model@Opportunistic Requiremements', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Demand Model@Opportunistic Requiremements', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Demand Model > Opportunistic Requiremements: 0'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Demand Model@Opportunistic Water Supplied', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Demand Model@Opportunistic Water Supplied', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Demand Model > Opportunistic Water Supplied'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Demand Model@Regulated Requirements', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Demand Model@Regulated Requirements', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Demand Model > Regulated Requirements: 0'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Demand Model@Regulated Water Supplied', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Demand Model@Regulated Water Supplied', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Demand Model > Regulated Water Supplied'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Demand Model@Total Water Supplied', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Demand Model@Total Water Supplied', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Demand Model > Total Water Supplied'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Storage@Opportunistic Water Supplied', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Storage@Opportunistic Water Supplied', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Storage > Opportunistic Water Supplied'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Storage@Regulated Water Supplied', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Storage@Regulated Water Supplied', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Storage > Regulated Water Supplied'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Storage@Return Flow Supplied', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Storage@Return Flow Supplied', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Storage > Return Flow Supplied'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Storage@Total Water Supplied', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Storage@Total Water Supplied', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Storage > Total Water Supplied'}, {'RecordingElement': 'Demand & Storage Interface', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand & Storage Interface/variable/Demand & Storage Interface@Storage@Water Extracted', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand & Storage Interface@Storage@Water Extracted', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Storage > Water Extracted'}, {'RecordingElement': 'Downstream Return Flow', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Downstream Return Flow/variable/Downstream Return Flow', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Downstream Return Flow', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Downstream Return Flow'}, {'RecordingElement': 'Planned Extraction', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Planned Extraction/variable/Planned Extraction', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Planned Extraction', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Planned Extraction'}, {'RecordingElement': 'Demand Model', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand Model/variable/Demand Model@Ordered Water Supplied', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand Model@Ordered Water Supplied', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Ordered Water Supplied'}, {'RecordingElement': 'Demand Model', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand Model/variable/Demand Model@Predicted Order', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand Model@Predicted Order', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Predicted Order'}, {'RecordingElement': 'Demand Model', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Demand Model/variable/Demand Model@Volume Ordered', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Demand Model@Volume Ordered', 'RunNumber': 1, 'TimeSeriesName': 'Water User > Crop Fields > Volume Ordered'}, {'RecordingElement': 'Volume Ordered', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Volume Ordered/variable/Volume Ordered', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Volume Ordered', 'RunNumber': 1, 'TimeSeriesName': 'Water User: Crop Fields: Volume Ordered'}, {'RecordingElement': 'Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Crop Fields/element/Mass Balance/variable/Mass Balance', 'NetworkElement': 'Crop Fields', 'RecordingVariable': 'Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Crop Fields: Mass Balance'}, {'RecordingElement': 'Scenario Mass Balance', 'TimeSeriesUrl': '/runs/1/location/Scenario Mass Balance/element/Scenario Mass Balance/variable/Scenario Mass Balance', 'NetworkElement': 'Scenario Mass Balance', 'RecordingVariable': 'Scenario Mass Balance', 'RunNumber': 1, 'TimeSeriesName': 'Scenario Mass Balance Total'}, {'RecordingElement': 'Data Sources', 'TimeSeriesUrl': '/runs/1/location/Data Sources/element/Data Sources/variable/Data Sources@CrabInflow_csv@Crab_G (ML%2Fday)', 'NetworkElement': 'Data Sources', 'RecordingVariable': 'Data Sources@CrabInflow_csv@Crab_G (ML/day)', 'RunNumber': 1, 'TimeSeriesName': 'Crab_G (ML/day)'}, {'RecordingElement': 'Data Sources', 'TimeSeriesUrl': '/runs/1/location/Data Sources/element/Data Sources/variable/Data Sources@FishInflow_csv@Fish Creek Flow (ML%2Fday)', 'NetworkElement': 'Data Sources', 'RecordingVariable': 'Data Sources@FishInflow_csv@Fish Creek Flow (ML/day)', 'RunNumber': 1, 'TimeSeriesName': 'Fish Creek Flow (ML/day)'}, {'RecordingElement': 'Data Sources', 'TimeSeriesUrl': '/runs/1/location/Data Sources/element/Data Sources/variable/Data Sources@ShellInflow_csv@Shell Creek Flow (ML%2FDay)', 'NetworkElement': 'Data Sources', 'RecordingVariable': 'Data Sources@ShellInflow_csv@Shell Creek Flow (ML/Day)', 'RunNumber': 1, 'TimeSeriesName': 'Shell Creek Flow (ML/Day)'}, {'RecordingElement': 'Data Sources', 'TimeSeriesUrl': '/runs/1/location/Data Sources/element/Data Sources/variable/Data Sources@LowerGaugeObservedFlow_csv@Lower Gauge Observed (ML%2Fday)', 'NetworkElement': 'Data Sources', 'RecordingVariable': 'Data Sources@LowerGaugeObservedFlow_csv@Lower Gauge Observed (ML/day)', 'RunNumber': 1, 'TimeSeriesName': 'Lower Gauge Observed (ML/day)'}, {'RecordingElement': 'Data Sources', 'TimeSeriesUrl': '/runs/1/location/Data Sources/element/Data Sources/variable/Data Sources@MiddleGaugeObservedFlow_csv@Middle Gauge Observed (ML%2Fday)', 'NetworkElement': 'Data Sources', 'RecordingVariable': 'Data Sources@MiddleGaugeObservedFlow_csv@Middle Gauge Observed (ML/day)', 'RunNumber': 1, 'TimeSeriesName': 'Middle Gauge Observed (ML/day)'}, {'RecordingElement': 'Data Sources', 'TimeSeriesUrl': '/runs/1/location/Data Sources/element/Data Sources/variable/Data Sources@Crop Demand_csv@CropDemand (ML)', 'NetworkElement': 'Data Sources', 'RecordingVariable': 'Data Sources@Crop Demand_csv@CropDemand (ML)', 'RunNumber': 1, 'TimeSeriesName': 'CropDemand (ML)'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Now@$Day', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Now@$Day', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Now > $Day'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Now@$Month', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Now@$Month', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Now > $Month'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Now@$Year', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Now@$Year', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Now > $Year'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Now@$Hour', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Now@$Hour', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Now > $Hour'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Now@$DayOfYear', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Now@$DayOfYear', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Now > $DayOfYear'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Now@$DaysInMonth', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Now@$DaysInMonth', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Now > $DaysInMonth'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Start@$Day', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Start@$Day', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Start > $Day'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Start@$Month', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Start@$Month', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Start > $Month'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Start@$Year', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Start@$Year', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Start > $Year'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Start@$Hour', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Start@$Hour', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Start > $Hour'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Start@$DayOfYear', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Start@$DayOfYear', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Start > $DayOfYear'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@Start@$DaysInMonth', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@Start@$DaysInMonth', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > Start > $DaysInMonth'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@End@$Day', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@End@$Day', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > End > $Day'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@End@$Month', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@End@$Month', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > End > $Month'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@End@$Year', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@End@$Year', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > End > $Year'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@End@$Hour', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@End@$Hour', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > End > $Hour'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@End@$DayOfYear', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@End@$DayOfYear', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > End > $DayOfYear'}, {'RecordingElement': 'Functions', 'TimeSeriesUrl': '/runs/1/location/Functions/element/Functions/variable/Functions@End@$DaysInMonth', 'NetworkElement': 'Functions', 'RecordingVariable': 'Functions@End@$DaysInMonth', 'RunNumber': 1, 'TimeSeriesName': 'Functions > Functions > End > $DaysInMonth'}, {'RecordingElement': 'Scenario System Storage', 'TimeSeriesUrl': '/runs/1/location/Scenario System Storage/element/Scenario System Storage/variable/Scenario System Storage', 'NetworkElement': 'Scenario System Storage', 'RecordingVariable': 'Scenario System Storage', 'RunNumber': 1, 'TimeSeriesName': 'Scenario System Storage'}],
 'Scenario': 'WaterBalance',
 'Status': 'LogWarning'}

One way to get more insight from the results_index is to look at the 'Results' key as a pandas Data Frame


In [11]:
results_index['Results'].as_dataframe()


Out[11]:
NetworkElement RecordingElement RecordingVariable RunNumber TimeSeriesName TimeSeriesUrl
0 Default Link #1 Upstream Flow Flow 1 Straight-Through Routing: Default Link #1: Ups... /runs/1/location/Default Link 1/element/Upstre...
1 Default Link #1 Catchment Inflow Flow 1 Straight-Through Routing: Default Link #1: Cat... /runs/1/location/Default Link 1/element/Catchm...
2 Default Link #1 Downstream Flow Flow 1 Straight-Through Routing: Default Link #1: Dow... /runs/1/location/Default Link 1/element/Downst...
3 Default Link #1 Storage Volume Storage Volume 1 Straight-Through Routing: Default Link #1: Sto... /runs/1/location/Default Link 1/element/Storag...
4 Default Link #1 Link Travel Time Link Travel Time 1 Straight-Through Routing: Default Link #1: Lin... /runs/1/location/Default Link 1/element/Link T...
5 Default Link #1 Groundwater Flux Groundwater Flux 1 Straight-Through Routing: Default Link #1: Gro... /runs/1/location/Default Link 1/element/Ground...
6 Default Link #1 Water Surface Elevation Water Surface Elevation 1 Straight-Through Routing: Default Link #1: Wat... /runs/1/location/Default Link 1/element/Water ...
7 Default Link #1 Water Surface Area Water Surface Area 1 Straight-Through Routing: Default Link #1: Wat... /runs/1/location/Default Link 1/element/Water ...
8 Default Link #1 Lateral Inflow Volume Lateral Inflow Volume 1 Straight-Through Routing: Default Link #1: Lat... /runs/1/location/Default Link 1/element/Latera...
9 Default Link #1 Divisions Upstream Flow 1 TotalInflow /runs/1/location/Default Link 1/element/Divisi...
10 Default Link #1 Divisions Downstream Flow 1 Outflow /runs/1/location/Default Link 1/element/Divisi...
11 Default Link #1 Divisions Upstream Flow Volume 1 InflowVolume /runs/1/location/Default Link 1/element/Divisi...
12 Default Link #1 Divisions Downstream Flow Volume 1 OutflowVolume /runs/1/location/Default Link 1/element/Divisi...
13 Default Link #1 Divisions Storage Volume 1 Storage /runs/1/location/Default Link 1/element/Divisi...
14 Default Link #1 Divisions Loss/Gain Flux 1 HighFlowLoss /runs/1/location/Default Link 1/element/Divisi...
15 Default Link #1 Divisions Lateral Flow 1 LateralFlow /runs/1/location/Default Link 1/element/Divisi...
16 Default Link #1 Divisions Lateral Flow Volume 1 LateralFlowVolume /runs/1/location/Default Link 1/element/Divisi...
17 Default Link #1 Divisions Mass Balance 1 MassBalance /runs/1/location/Default Link 1/element/Divisi...
18 Default Link #1 Divisions Live Storage Volume 1 LiveStorage /runs/1/location/Default Link 1/element/Divisi...
19 Default Link #1 Divisions Dead Storage Volume 1 CurrentDeadStorage /runs/1/location/Default Link 1/element/Divisi...
20 Default Link #1 Divisions Groundwater Flux 1 GroundWaterFlux /runs/1/location/Default Link 1/element/Divisi...
21 Default Link #1 Divisions Catchment Flux 1 CatchmentFlux /runs/1/location/Default Link 1/element/Divisi...
22 Default Link #1 Divisions Net Evaporation Flux 1 NetEvaporationFlux /runs/1/location/Default Link 1/element/Divisi...
23 Default Link #1 Divisions Timeseries Flux 1 TimeseriesFlux /runs/1/location/Default Link 1/element/Divisi...
24 Default Link #1 Divisions Flow Based Flux 1 FlowFlux /runs/1/location/Default Link 1/element/Divisi...
25 Default Link #1 Lateral Flow Flow 1 Straight-Through Routing: Default Link #1: Lat... /runs/1/location/Default Link 1/element/Latera...
26 Default Link #1 Upstream Flow Volume Upstream Flow Volume 1 Straight-Through Routing: Default Link #1: Ups... /runs/1/location/Default Link 1/element/Upstre...
27 Default Link #1 Downstream Flow Volume Downstream Flow Volume 1 Straight-Through Routing: Default Link #1: Dow... /runs/1/location/Default Link 1/element/Downst...
28 Default Link #1 Mass Balance Mass Balance 1 Default Link #1: Mass Balance /runs/1/location/Default Link 1/element/Mass B...
29 Default Link #1 Rules Based Orders Rules Based Orders@Orders 1 Straight-Through Routing > Default Link #1 > O... /runs/1/location/Default Link 1/element/Rules ...
... ... ... ... ... ... ...
519 Crop Fields Demand Model Demand Model@Predicted Order 1 Water User > Crop Fields > Predicted Order /runs/1/location/Crop Fields/element/Demand Mo...
520 Crop Fields Demand Model Demand Model@Volume Ordered 1 Water User > Crop Fields > Volume Ordered /runs/1/location/Crop Fields/element/Demand Mo...
521 Crop Fields Volume Ordered Volume Ordered 1 Water User: Crop Fields: Volume Ordered /runs/1/location/Crop Fields/element/Volume Or...
522 Crop Fields Mass Balance Mass Balance 1 Crop Fields: Mass Balance /runs/1/location/Crop Fields/element/Mass Bala...
523 Scenario Mass Balance Scenario Mass Balance Scenario Mass Balance 1 Scenario Mass Balance Total /runs/1/location/Scenario Mass Balance/element...
524 Data Sources Data Sources Data Sources@CrabInflow_csv@Crab_G (ML/day) 1 Crab_G (ML/day) /runs/1/location/Data Sources/element/Data Sou...
525 Data Sources Data Sources Data Sources@FishInflow_csv@Fish Creek Flow (M... 1 Fish Creek Flow (ML/day) /runs/1/location/Data Sources/element/Data Sou...
526 Data Sources Data Sources Data Sources@ShellInflow_csv@Shell Creek Flow ... 1 Shell Creek Flow (ML/Day) /runs/1/location/Data Sources/element/Data Sou...
527 Data Sources Data Sources Data Sources@LowerGaugeObservedFlow_csv@Lower ... 1 Lower Gauge Observed (ML/day) /runs/1/location/Data Sources/element/Data Sou...
528 Data Sources Data Sources Data Sources@MiddleGaugeObservedFlow_csv@Middl... 1 Middle Gauge Observed (ML/day) /runs/1/location/Data Sources/element/Data Sou...
529 Data Sources Data Sources Data Sources@Crop Demand_csv@CropDemand (ML) 1 CropDemand (ML) /runs/1/location/Data Sources/element/Data Sou...
530 Functions Functions Functions@Now@$Day 1 Functions > Functions > Now > $Day /runs/1/location/Functions/element/Functions/v...
531 Functions Functions Functions@Now@$Month 1 Functions > Functions > Now > $Month /runs/1/location/Functions/element/Functions/v...
532 Functions Functions Functions@Now@$Year 1 Functions > Functions > Now > $Year /runs/1/location/Functions/element/Functions/v...
533 Functions Functions Functions@Now@$Hour 1 Functions > Functions > Now > $Hour /runs/1/location/Functions/element/Functions/v...
534 Functions Functions Functions@Now@$DayOfYear 1 Functions > Functions > Now > $DayOfYear /runs/1/location/Functions/element/Functions/v...
535 Functions Functions Functions@Now@$DaysInMonth 1 Functions > Functions > Now > $DaysInMonth /runs/1/location/Functions/element/Functions/v...
536 Functions Functions Functions@Start@$Day 1 Functions > Functions > Start > $Day /runs/1/location/Functions/element/Functions/v...
537 Functions Functions Functions@Start@$Month 1 Functions > Functions > Start > $Month /runs/1/location/Functions/element/Functions/v...
538 Functions Functions Functions@Start@$Year 1 Functions > Functions > Start > $Year /runs/1/location/Functions/element/Functions/v...
539 Functions Functions Functions@Start@$Hour 1 Functions > Functions > Start > $Hour /runs/1/location/Functions/element/Functions/v...
540 Functions Functions Functions@Start@$DayOfYear 1 Functions > Functions > Start > $DayOfYear /runs/1/location/Functions/element/Functions/v...
541 Functions Functions Functions@Start@$DaysInMonth 1 Functions > Functions > Start > $DaysInMonth /runs/1/location/Functions/element/Functions/v...
542 Functions Functions Functions@End@$Day 1 Functions > Functions > End > $Day /runs/1/location/Functions/element/Functions/v...
543 Functions Functions Functions@End@$Month 1 Functions > Functions > End > $Month /runs/1/location/Functions/element/Functions/v...
544 Functions Functions Functions@End@$Year 1 Functions > Functions > End > $Year /runs/1/location/Functions/element/Functions/v...
545 Functions Functions Functions@End@$Hour 1 Functions > Functions > End > $Hour /runs/1/location/Functions/element/Functions/v...
546 Functions Functions Functions@End@$DayOfYear 1 Functions > Functions > End > $DayOfYear /runs/1/location/Functions/element/Functions/v...
547 Functions Functions Functions@End@$DaysInMonth 1 Functions > Functions > End > $DaysInMonth /runs/1/location/Functions/element/Functions/v...
548 Scenario System Storage Scenario System Storage Scenario System Storage 1 Scenario System Storage /runs/1/location/Scenario System Storage/eleme...

549 rows × 6 columns

We can now use results_index as the basis for retrieving time series.

v.retrieve_multiple_time_series, is the main function for retrieving time series results.

The retrieved time series are returned as columns of a pandas Data Frame.

You provide up to four pieces of information to v.retrieve_multiple_time_series:

  1. The run of interest - either by passing in a run number (which defaults to 'latest') or by passing a run index using run_data=
  2. Criteria for matching time series - which work in much the same way as the criteria for v.configure_recording
  3. The timestep that you're interested in - defaults to 'daily', but if you need 'monthly' or 'annual', then your scripts can be a bit simpler by getting the conversion done in Source, rather than Python
  4. A function for naming the columns of the data frame based on the nature of the time series - useful for having simple, but unique column names when retrieving multiple time series.

These options are further described in the help text for the function:


In [12]:
help(v.retrieve_multiple_time_series)


Help on method retrieve_multiple_time_series in module veneer.general:

retrieve_multiple_time_series(run='latest', run_data=None, criteria={}, timestep='daily', name_fn=<function name_element_variable at 0x00000000095B6A60>) method of veneer.general.Veneer instance
    Retrieve multiple time series from a run according to some criteria.
    
    Return all time series in a single Pandas DataFrame with date time index.
    
    you can an index of run results via run_data. If you don't the method will first retrieve an
    index based on the value of the run parameter (default='latest')
    
    criteria should be regexps for the fields in a Veneer time series record:
      * NetworkElement
      * RecordingElement
      * RecordingVariable
      * TimeSeriesName
      * TimeSeriesUrl
    
    These criteria are used to identify which time series to retrieve.
    
    timestep should be one of 'daily' (default), 'monthly', 'annual'
    
    All retrieved time series are returned in a single Data Frame.
    
    You can specify a function for naming the columns of the Data Frame using name_fn. This function should take
    the results summary (from the index) and return a string. Example functions include:
      * veneer.name_time_series (uses the full name of the time series, as provided by Source)
      * veneer.name_element_variable (DEFAULT: users the name of the network element and the name of the variable)
      * veneer.name_for_location (just use the name of the network element)
      * veneer.name_for_variable (just use the name of the variable)

Lets start by retrieving all the time series associated with the water user ('Crop Fields')


In [13]:
crop_node_ts = v.retrieve_multiple_time_series(run_data=results_index,
                                               criteria={'NetworkElement':'Crop Fields'})

The data is now stored in crop_node_ts as a pandas Data Frame.

It is useful to eyeball the data - to make sure you know what you've got. The Jupyter notebook has good support for looking at data frames.

Here, we will 'slice' the rows of the table to look at an adhoc subset of the data - in this case, every 100 rows


In [14]:
crop_node_ts[::100]


Out[14]:
Crop Fields:Demand & Storage Interface@Demand Model@Opportunistic Requiremements Crop Fields:Demand & Storage Interface@Demand Model@Opportunistic Water Supplied Crop Fields:Demand & Storage Interface@Demand Model@Regulated Requirements Crop Fields:Demand & Storage Interface@Demand Model@Regulated Water Supplied Crop Fields:Demand & Storage Interface@Demand Model@Total Water Supplied Crop Fields:Demand & Storage Interface@Storage@Opportunistic Water Supplied Crop Fields:Demand & Storage Interface@Storage@Regulated Water Supplied Crop Fields:Demand & Storage Interface@Storage@Return Flow Supplied Crop Fields:Demand & Storage Interface@Storage@Total Water Supplied Crop Fields:Demand & Storage Interface@Storage@Water Extracted ... Crop Fields:Downstream Return Flow Crop Fields:Id Crop Fields:Mass Balance Crop Fields:Planned Extraction Crop Fields:Storage Volume Crop Fields:Total Inflow Volume Crop Fields:Total Outflow Volume Crop Fields:Upstream Flow Crop Fields:Upstream Flow Volume Crop Fields:Volume Ordered
1998-01-11 0 0 44275.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 44275.0 0 0 0 0 0 44275.0
1998-04-21 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
1998-07-30 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
1998-11-07 0 0 9300.0 9300.0 9300.0 0 0 0 0 0 ... 0 94 0 9300.0 0 0 0 0 0 9300.0
1999-02-15 0 0 47520.0 47520.0 47520.0 0 0 0 0 0 ... 0 94 0 47520.0 0 0 0 0 0 47520.0
1999-05-26 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
1999-09-03 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
1999-12-12 0 0 31625.0 31625.0 31625.0 0 0 0 0 0 ... 0 94 0 31625.0 0 0 0 0 0 31625.0
2000-03-21 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2000-06-29 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2000-10-07 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2001-01-15 0 0 42550.0 42550.0 42550.0 0 0 0 0 0 ... 0 94 0 42550.0 0 0 0 0 0 42550.0
2001-04-25 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2001-08-03 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2001-11-11 0 0 8400.0 8400.0 8400.0 0 0 0 0 0 ... 0 94 0 8400.0 0 0 0 0 0 8400.0
2002-02-19 0 0 19110.0 19110.0 19110.0 0 0 0 0 0 ... 0 94 0 19110.0 0 0 0 0 0 19110.0
2002-05-30 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2002-09-07 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2002-12-16 0 0 76475.0 50000.0 50000.0 0 0 0 0 0 ... 0 94 0 50000.0 0 0 0 0 0 50000.0
2003-03-26 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2003-07-04 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2003-10-12 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2004-01-20 0 0 38525.0 38525.0 38525.0 0 0 0 0 0 ... 0 94 0 38525.0 0 0 0 0 0 38525.0
2004-04-29 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2004-08-07 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2004-11-15 0 0 10020.0 10020.0 10020.0 0 0 0 0 0 ... 0 94 0 10020.0 0 0 0 0 0 10020.0
2005-02-23 0 0 18260.0 18260.0 18260.0 0 0 0 0 0 ... 0 94 0 18260.0 0 0 0 0 0 18260.0
2005-06-03 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2005-09-11 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2005-12-20 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2006-03-30 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2006-07-08 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2006-10-16 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2007-01-24 0 0 61525.0 50000.0 50000.0 0 0 0 0 0 ... 0 94 0 50000.0 0 0 0 0 0 50000.0
2007-05-04 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2007-08-12 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2007-11-20 0 0 7560.0 7560.0 7560.0 0 0 0 0 0 ... 0 94 0 7560.0 0 0 0 0 0 7560.0
2008-02-28 0 0 20805.0 20805.0 20805.0 0 0 0 0 0 ... 0 94 0 20805.0 0 0 0 0 0 20805.0
2008-06-07 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2008-09-15 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2008-12-24 0 0 43700.0 43700.0 43700.0 0 0 0 0 0 ... 0 94 0 43700.0 0 0 0 0 0 43700.0
2009-04-03 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2009-07-12 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2009-10-20 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2010-01-28 0 0 49450.0 49450.0 49450.0 0 0 0 0 0 ... 0 94 0 49450.0 0 0 0 0 0 49450.0
2010-05-08 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2010-08-16 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2010-11-24 0 0 17280.0 17280.0 17280.0 0 0 0 0 0 ... 0 94 0 17280.0 0 0 0 0 0 17280.0
2011-03-04 0 0 20475.0 20475.0 20475.0 0 0 0 0 0 ... 0 94 0 20475.0 0 0 0 0 0 20475.0
2011-06-12 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2011-09-20 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2011-12-29 0 0 9775.0 9775.0 9775.0 0 0 0 0 0 ... 0 94 0 9775.0 0 0 0 0 0 9775.0
2012-04-07 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2012-07-16 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2012-10-24 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2013-02-01 0 0 39675.0 39675.0 39675.0 0 0 0 0 0 ... 0 94 0 39675.0 0 0 0 0 0 39675.0
2013-05-12 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2013-08-20 0 0 0.0 0.0 0.0 0 0 0 0 0 ... 0 94 0 0.0 0 0 0 0 0 0.0
2013-11-28 0 0 28712.0 28712.0 28712.0 0 0 0 0 0 ... 0 94 0 28712.0 0 0 0 0 0 28712.0

59 rows × 25 columns

The slice operator [::] is standard Python and works with normal Python lists as well as numpy arrays and pandas DataFrames and Series'.

The general form is:

[from:to:step]

Where:

  • from is the index of the first element to take
  • to is the index of the element to stop at (non-inclusive)
  • step allows you to take every n-th element

All are optional, so

crop_node_ts is equivalent to crop_node_ts[:] and crop_node_ts[::]

crop_node_ts[::100] is saying, 'from the start, to the end, take every 100th element'

from and to can be either 0 based indexes, from the start of the list/DataFrame/etc (ie where 0 is the first element), OR they can be -1 based, from the end, where -1 is the last element, -2 is the second last element, etc.

Negative values can also be used for the step, indicating that the slice works from the end of the list/dataframe/etc. So

crop_node_ts[::-2] takes every second element, working from the end back to the start!

Manipulating the data

Lets say we want to compute a daily shortfall time series from these results. Essentially we want

Water Required - Water Supplied

We can do this directly with the columns of the Data Frame


In [15]:
shortfall = crop_node_ts['Crop Fields:Demand & Storage Interface@Demand Model@Regulated Requirements'] - \
            crop_node_ts['Crop Fields:Demand & Storage Interface@Demand Model@Regulated Water Supplied']

Notes:

  1. That's could have been a LONG line. Because whitespace is significant in Python, you sometimes need the line continuation character (\) to tell the language that you want an expression to continue onto the next line
  2. Here, we index the DataFrame by the column names - which are rather long. Thankfully, in the notebook you can use <tab> completion to fill in long strings like this. Try the following in an empty code cell:
    crop_node_ts['Cr<press-tab>
    
    The notebook should pop up a menu of available columns
  3. Those long column names used the default naming convention for v.retrieve_multiple_time_series. We can (and should) override this. We'll look at the options later in this session.

At any rate, we should now have a shortfall time series. Lets plot it.

In order to enable plotting in the notebook, we need to specify where we want the plots to appear. For now, we'll plot them inline (see 3_Python_Data_Analysis.ipynb for more options).


In [16]:
%matplotlib inline

In [17]:
shortfall.plot()


Out[17]:
<matplotlib.axes._subplots.AxesSubplot at 0xd755be0>

pandas DataFrames have good support for many analyses that you're likely to want to perform.

Lets look at how many days the demand is shortfalled, and by how much...

First, we'll subset out the data where shortfall>0


In [18]:
shortfall_days = shortfall[shortfall>0]

Now, we can compute the % of days where a shortfall occurs, and the average of these shortfalls:


In [19]:
pc_shortfall_days = (100.0 * len(shortfall_days) / len(shortfall))
pc_shortfall_days


Out[19]:
6.633527596846075

In [20]:
avg_shortfall = shortfall_days.mean()
avg_shortfall


Out[20]:
14616.976744186046

What about units?

The last answer isn't that helpful. We know its a unit of flow, but specifically what? Has it listened to our unit preferences in Source? Is it in SI? Is it an average daily value or an average rate (eg m^3/s)?

In short:

  • Veneer returns the units with the time series
  • Veneer always returns the units used internally by Source - which isn't always the units you have chosen in unit preferences. These are the units that Source works in and so this approach is consistent across models and users. Given we are in a scripting tool, you can always automate the unit conversion to your preferred units.
  • However, pandas DataFrames don't have a great way to represent units. We could include the units in the column name (we'll look at that later).
  • The units are available as attributes on the dataframe columns, eg with
crop_node_ts['Crop Fields:Demand & Storage Interface@Demand Model@Regulated Requirements'].units

but these units aren't maintained or propagated when copying or operating on the data


In [21]:
crop_node_ts['Crop Fields:Demand & Storage Interface@Demand Model@Regulated Requirements'].units


Out[21]:
'm³'

Exporting Data

The pandas DataFrame and Series objects have numerous built in methods for exporting data.

.to_csv is likely to be a favourite :)


In [22]:
crop_node_ts.to_csv('crop_results.csv')

In [23]:
!type crop_results.csv


,Crop Fields:Demand & Storage Interface@Demand Model@Opportunistic Requiremements,Crop Fields:Demand & Storage Interface@Demand Model@Opportunistic Water Supplied,Crop Fields:Demand & Storage Interface@Demand Model@Regulated Requirements,Crop Fields:Demand & Storage Interface@Demand Model@Regulated Water Supplied,Crop Fields:Demand & Storage Interface@Demand Model@Total Water Supplied,Crop Fields:Demand & Storage Interface@Storage@Opportunistic Water Supplied,Crop Fields:Demand & Storage Interface@Storage@Regulated Water Supplied,Crop Fields:Demand & Storage Interface@Storage@Return Flow Supplied,Crop Fields:Demand & Storage Interface@Storage@Total Water Supplied,Crop Fields:Demand & Storage Interface@Storage@Water Extracted,Crop Fields:Demand Model@Ordered Water Supplied,Crop Fields:Demand Model@Predicted Order,Crop Fields:Demand Model@Volume Ordered,Crop Fields:Downstream Flow,Crop Fields:Downstream Flow Volume,Crop Fields:Downstream Return Flow,Crop Fields:Id,Crop Fields:Mass Balance,Crop Fields:Planned Extraction,Crop Fields:Storage Volume,Crop Fields:Total Inflow Volume,Crop Fields:Total Outflow Volume,Crop Fields:Upstream Flow,Crop Fields:Upstream Flow Volume,Crop Fields:Volume Ordered
1998-01-11,0,0,44274.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
1998-01-12,0,0,48875.0,0.0,0.0,0,0,0,0,0,0.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
1998-01-13,0,0,58650.0,0.0,0.0,0,0,0,0,0,0.0,0.6788194444444444,0.6788194444444444,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-01-14,0,0,96599.99999999999,0.0,0.0,0,0,0,0,0,0.0,1.1180555555555554,1.1180555555555554,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-01-15,0,0,44850.0,0.0,0.0,0,0,0,0,0,0.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
1998-01-16,0,0,36799.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
1998-01-17,0,0,55199.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-01-18,0,0,13799.999999999998,0.0,0.0,0,0,0,0,0,0.0,0.1597222222222222,0.1597222222222222,0,0,0,94,0,13799.999999999998,0,0,0,0,0,13799.999999999998
1998-01-19,0,0,24724.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
1998-01-20,0,0,21850.000000000004,0.0,0.0,0,0,0,0,0,0.0,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
1998-01-21,0,0,24149.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
1998-01-22,0,0,42549.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
1998-01-23,0,0,58075.0,0.0,0.0,0,0,0,0,0,0.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-01-24,0,0,52325.0,0.0,0.0,0,0,0,0,0,0.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-01-25,0,0,36799.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
1998-01-26,0,0,56350.0,0.0,0.0,0,0,0,0,0,0.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-01-27,0,0,32200.0,0.0,0.0,0,0,0,0,0,0.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
1998-01-28,0,0,44850.0,0.0,0.0,0,0,0,0,0,0.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
1998-01-29,0,0,43125.0,0.0,0.0,0,0,0,0,0,0.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
1998-01-30,0,0,44850.0,0.0,0.0,0,0,0,0,0,0.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
1998-01-31,0,0,51749.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-02-01,0,0,40250.0,0.0,0.0,0,0,0,0,0,0.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
1998-02-02,0,0,39674.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
1998-02-03,0,0,70150.0,0.0,0.0,0,0,0,0,0,0.0,0.8119212962962963,0.8119212962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-02-04,0,0,73599.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.8518518518518516,0.8518518518518517,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-02-05,0,0,43125.0,0.0,0.0,0,0,0,0,0,0.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
1998-02-06,0,0,52325.0,0.0,0.0,0,0,0,0,0,0.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-02-07,0,0,49449.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
1998-02-08,0,0,44070.0,0.0,0.0,0,0,0,0,0,0.0,0.5100694444444445,0.5100694444444445,0,0,0,94,0,44070.0,0,0,0,0,0,44070.0
1998-02-09,0,0,38295.0,0.0,0.0,0,0,0,0,0,0.0,0.4432291666666667,0.4432291666666667,0,0,0,94,0,38295.0,0,0,0,0,0,38295.0
1998-02-10,0,0,61039.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.7064814814814814,0.7064814814814814,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-02-11,0,0,50289.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.5820601851851851,0.5820601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-02-12,0,0,35700.0,0.0,0.0,0,0,0,0,0,0.0,0.4131944444444444,0.4131944444444445,0,0,0,94,0,35700.0,0,0,0,0,0,35700.0
1998-02-13,0,0,28839.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.33379629629629626,0.33379629629629626,0,0,0,94,0,28839.999999999996,0,0,0,0,0,28839.999999999996
1998-02-14,0,0,35350.0,0.0,0.0,0,0,0,0,0,0.0,0.40914351851851855,0.4091435185185185,0,0,0,94,0,35350.0,0,0,0,0,0,35350.0
1998-02-15,0,0,41579.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.4812499999999999,0.48124999999999996,0,0,0,94,0,41579.99999999999,0,0,0,0,0,41579.99999999999
1998-02-16,0,0,27645.0,0.0,0.0,0,0,0,0,0,0.0,0.3199652777777778,0.3199652777777778,0,0,0,94,0,27645.0,0,0,0,0,0,27645.0
1998-02-17,0,0,39900.0,0.0,0.0,0,0,0,0,0,0.0,0.4618055555555556,0.4618055555555555,0,0,0,94,0,39900.0,0,0,0,0,0,39900.0
1998-02-18,0,0,32549.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.37673611111111105,0.37673611111111105,0,0,0,94,0,32549.999999999996,0,0,0,0,0,32549.999999999996
1998-02-19,0,0,34124.99999999999,0.0,0.0,0,0,0,0,0,0.0,0.3949652777777777,0.39496527777777773,0,0,0,94,0,34124.99999999999,0,0,0,0,0,34124.99999999999
1998-02-20,0,0,20914.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.24207175925925922,0.24207175925925922,0,0,0,94,0,20914.999999999996,0,0,0,0,0,20914.999999999996
1998-02-21,0,0,24795.0,0.0,0.0,0,0,0,0,0,0.0,0.2869791666666667,0.2869791666666667,0,0,0,94,0,24795.0,0,0,0,0,0,24795.0
1998-02-22,0,0,30175.0,0.0,0.0,0,0,0,0,0,0.0,0.3492476851851852,0.3492476851851852,0,0,0,94,0,30175.0,0,0,0,0,0,30175.0
1998-02-23,0,0,21579.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.24976851851851847,0.24976851851851847,0,0,0,94,0,21579.999999999996,0,0,0,0,0,21579.999999999996
1998-02-24,0,0,28350.0,0.0,0.0,0,0,0,0,0,0.0,0.328125,0.328125,0,0,0,94,0,28350.0,0,0,0,0,0,28350.0
1998-02-25,0,0,23305.0,0.0,0.0,0,0,0,0,0,0.0,0.2697337962962963,0.2697337962962963,0,0,0,94,0,23305.0,0,0,0,0,0,23305.0
1998-02-26,0,0,36960.0,0.0,0.0,0,0,0,0,0,0.0,0.42777777777777776,0.42777777777777776,0,0,0,94,0,36960.0,0,0,0,0,0,36960.0
1998-02-27,0,0,28125.0,0.0,0.0,0,0,0,0,0,0.0,0.3255208333333333,0.3255208333333333,0,0,0,94,0,28125.0,0,0,0,0,0,28125.0
1998-02-28,0,0,26645.0,0.0,0.0,0,0,0,0,0,0.0,0.3083912037037037,0.3083912037037037,0,0,0,94,0,26645.0,0,0,0,0,0,26645.0
1998-03-01,0,0,19879.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.23009259259259254,0.23009259259259257,0,0,0,94,0,19879.999999999996,0,0,0,0,0,19879.999999999996
1998-03-02,0,0,24149.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
1998-03-03,0,0,29815.0,0.0,0.0,0,0,0,0,0,0.0,0.3450810185185185,0.3450810185185185,0,0,0,94,0,29815.0,0,0,0,0,0,29815.0
1998-03-04,0,0,27625.0,0.0,0.0,0,0,0,0,0,0.0,0.3197337962962963,0.3197337962962963,0,0,0,94,0,27625.0,0,0,0,0,0,27625.0
1998-03-05,0,0,28979.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.33541666666666664,0.33541666666666664,0,0,0,94,0,28979.999999999996,0,0,0,0,0,28979.999999999996
1998-03-06,0,0,24399.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.2824074074074074,0.2824074074074074,0,0,0,94,0,24399.999999999996,0,0,0,0,0,24399.999999999996
1998-03-07,0,0,26550.0,0.0,0.0,0,0,0,0,0,0.0,0.3072916666666667,0.3072916666666667,0,0,0,94,0,26550.0,0,0,0,0,0,26550.0
1998-03-08,0,0,20804.999999999996,0.0,0.0,0,0,0,0,0,0.0,0.24079861111111106,0.2407986111111111,0,0,0,94,0,20804.999999999996,0,0,0,0,0,20804.999999999996
1998-03-09,0,0,27225.0,0.0,0.0,0,0,0,0,0,0.0,0.3151041666666667,0.3151041666666667,0,0,0,94,0,27225.0,0,0,0,0,0,27225.0
1998-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1998-10-25,0,0,9749.999999999998,9749.999999999998,9749.999999999998,0,0,0,0,0,9749.999999999998,0.1128472222222222,0.11284722222222221,0,0,0,94,0,9749.999999999998,0,0,0,0,0,9749.999999999998
1998-10-26,0,0,10199.999999999998,10199.999999999998,10199.999999999998,0,0,0,0,0,10199.999999999998,0.11805555555555554,0.11805555555555554,0,0,0,94,0,10199.999999999998,0,0,0,0,0,10199.999999999998
1998-10-27,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
1998-10-28,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
1998-10-29,0,0,10800.0,10800.0,10800.0,0,0,0,0,0,10800.0,0.125,0.125,0,0,0,94,0,10800.0,0,0,0,0,0,10800.0
1998-10-30,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
1998-10-31,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
1998-11-01,0,0,7800.0,7800.0,7800.0,0,0,0,0,0,7800.0,0.09027777777777778,0.09027777777777778,0,0,0,94,0,7800.0,0,0,0,0,0,7800.0
1998-11-02,0,0,4349.999999999999,4349.999999999999,4349.999999999999,0,0,0,0,0,4349.999999999999,0.05034722222222221,0.05034722222222222,0,0,0,94,0,4349.999999999999,0,0,0,0,0,4349.999999999999
1998-11-03,0,0,9900.0,9900.0,9900.0,0,0,0,0,0,9900.0,0.11458333333333333,0.11458333333333333,0,0,0,94,0,9900.0,0,0,0,0,0,9900.0
1998-11-04,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
1998-11-05,0,0,9449.999999999998,9449.999999999998,9449.999999999998,0,0,0,0,0,9449.999999999998,0.10937499999999997,0.10937499999999999,0,0,0,94,0,9449.999999999998,0,0,0,0,0,9449.999999999998
1998-11-06,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
1998-11-07,0,0,9300.0,9300.0,9300.0,0,0,0,0,0,9300.0,0.1076388888888889,0.1076388888888889,0,0,0,94,0,9300.0,0,0,0,0,0,9300.0
1998-11-08,0,0,14099.999999999998,14099.999999999998,14099.999999999998,0,0,0,0,0,14099.999999999998,0.16319444444444442,0.16319444444444442,0,0,0,94,0,14099.999999999998,0,0,0,0,0,14099.999999999998
1998-11-09,0,0,15149.999999999998,15149.999999999998,15149.999999999998,0,0,0,0,0,15149.999999999998,0.1753472222222222,0.1753472222222222,0,0,0,94,0,15149.999999999998,0,0,0,0,0,15149.999999999998
1998-11-10,0,0,13799.999999999998,13799.999999999998,13799.999999999998,0,0,0,0,0,13799.999999999998,0.1597222222222222,0.1597222222222222,0,0,0,94,0,13799.999999999998,0,0,0,0,0,13799.999999999998
1998-11-11,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
1998-11-12,0,0,10199.999999999998,10199.999999999998,10199.999999999998,0,0,0,0,0,10199.999999999998,0.11805555555555554,0.11805555555555554,0,0,0,94,0,10199.999999999998,0,0,0,0,0,10199.999999999998
1998-11-13,0,0,6150.0,6150.0,6150.0,0,0,0,0,0,6150.0,0.07118055555555555,0.07118055555555555,0,0,0,94,0,6150.0,0,0,0,0,0,6150.0
1998-11-14,0,0,7650.0,7650.0,7650.0,0,0,0,0,0,7650.0,0.08854166666666667,0.08854166666666667,0,0,0,94,0,7650.0,0,0,0,0,0,7650.0
1998-11-15,0,0,11021.999999999998,11021.999999999998,11021.999999999998,0,0,0,0,0,11021.999999999998,0.12756944444444443,0.12756944444444443,0,0,0,94,0,11021.999999999998,0,0,0,0,0,11021.999999999998
1998-11-16,0,0,22080.0,22080.0,22080.0,0,0,0,0,0,22080.0,0.25555555555555554,0.25555555555555554,0,0,0,94,0,22080.0,0,0,0,0,0,22080.0
1998-11-17,0,0,14471.999999999998,14471.999999999998,14471.999999999998,0,0,0,0,0,14471.999999999998,0.16749999999999998,0.16749999999999998,0,0,0,94,0,14471.999999999998,0,0,0,0,0,14471.999999999998
1998-11-18,0,0,19620.0,19620.0,19620.0,0,0,0,0,0,19620.0,0.22708333333333333,0.22708333333333333,0,0,0,94,0,19620.0,0,0,0,0,0,19620.0
1998-11-19,0,0,13160.0,13160.0,13160.0,0,0,0,0,0,13160.0,0.15231481481481482,0.15231481481481482,0,0,0,94,0,13160.0,0,0,0,0,0,13160.0
1998-11-20,0,0,11088.0,11088.0,11088.0,0,0,0,0,0,11088.0,0.12833333333333333,0.12833333333333333,0,0,0,94,0,11088.0,0,0,0,0,0,11088.0
1998-11-21,0,0,18292.0,18292.0,18292.0,0,0,0,0,0,18292.0,0.21171296296296296,0.21171296296296296,0,0,0,94,0,18292.0,0,0,0,0,0,18292.0
1998-11-22,0,0,17160.0,17160.0,17160.0,0,0,0,0,0,17160.0,0.1986111111111111,0.1986111111111111,0,0,0,94,0,17160.0,0,0,0,0,0,17160.0
1998-11-23,0,0,13937.999999999998,13937.999999999998,13937.999999999998,0,0,0,0,0,13937.999999999998,0.16131944444444443,0.16131944444444443,0,0,0,94,0,13937.999999999998,0,0,0,0,0,13937.999999999998
1998-11-24,0,0,26559.999999999996,26559.999999999996,26559.999999999996,0,0,0,0,0,26559.999999999996,0.30740740740740735,0.30740740740740735,0,0,0,94,0,26559.999999999996,0,0,0,0,0,26559.999999999996
1998-11-25,0,0,27970.999999999996,27970.999999999996,27970.999999999996,0,0,0,0,0,27970.999999999996,0.3237384259259259,0.3237384259259259,0,0,0,94,0,27970.999999999996,0,0,0,0,0,27970.999999999996
1998-11-26,0,0,24071.999999999996,24071.999999999996,24071.999999999996,0,0,0,0,0,24071.999999999996,0.2786111111111111,0.2786111111111111,0,0,0,94,0,24071.999999999996,0,0,0,0,0,24071.999999999996
1998-11-27,0,0,29680.0,29680.0,29680.0,0,0,0,0,0,29680.0,0.3435185185185185,0.3435185185185185,0,0,0,94,0,29680.0,0,0,0,0,0,29680.0
1998-11-28,0,0,21728.0,21728.0,21728.0,0,0,0,0,0,21728.0,0.2514814814814815,0.2514814814814815,0,0,0,94,0,21728.0,0,0,0,0,0,21728.0
1998-11-29,0,0,18225.0,18225.0,18225.0,0,0,0,0,0,18225.0,0.2109375,0.2109375,0,0,0,94,0,18225.0,0,0,0,0,0,18225.0
1998-11-30,0,0,16457.999999999996,16457.999999999996,16457.999999999996,0,0,0,0,0,16457.999999999996,0.19048611111111108,0.19048611111111108,0,0,0,94,0,16457.999999999996,0,0,0,0,0,16457.999999999996
1998-12-01,0,0,46534.0,46534.0,46534.0,0,0,0,0,0,46534.0,0.538587962962963,0.538587962962963,0,0,0,94,0,46534.0,0,0,0,0,0,46534.0
1998-12-02,0,0,37848.0,37848.0,37848.0,0,0,0,0,0,37848.0,0.43805555555555553,0.43805555555555553,0,0,0,94,0,37848.0,0,0,0,0,0,37848.0
1998-12-03,0,0,39259.0,39259.0,39259.0,0,0,0,0,0,39259.0,0.45438657407407407,0.45438657407407407,0,0,0,94,0,39259.0,0,0,0,0,0,39259.0
1998-12-04,0,0,34300.0,34300.0,34300.0,0,0,0,0,0,34300.0,0.39699074074074076,0.3969907407407407,0,0,0,94,0,34300.0,0,0,0,0,0,34300.0
1998-12-05,0,0,30927.0,30927.0,30927.0,0,0,0,0,0,30927.0,0.3579513888888889,0.3579513888888889,0,0,0,94,0,30927.0,0,0,0,0,0,30927.0
1998-12-06,0,0,31440.0,31440.0,31440.0,0,0,0,0,0,31440.0,0.3638888888888889,0.3638888888888889,0,0,0,94,0,31440.0,0,0,0,0,0,31440.0
1998-12-07,0,0,37869.99999999999,37869.99999999999,37869.99999999999,0,0,0,0,0,37869.99999999999,0.4383101851851851,0.4383101851851851,0,0,0,94,0,37869.99999999999,0,0,0,0,0,37869.99999999999
1998-12-08,0,0,38502.0,38502.0,38502.0,0,0,0,0,0,38502.0,0.445625,0.445625,0,0,0,94,0,38502.0,0,0,0,0,0,38502.0
1998-12-09,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
1998-12-10,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-11,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
1998-12-12,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
1998-12-13,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
1998-12-14,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-15,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
1998-12-16,0,0,93725.0,50000.0,50000.0,0,0,0,0,0,50000.0,1.0847800925925926,1.0847800925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-17,0,0,63249.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7320601851851851,0.7320601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-18,0,0,60375.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6987847222222222,0.6987847222222222,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-19,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
1998-12-20,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-21,0,0,20125.0,20125.0,20125.0,0,0,0,0,0,20125.0,0.23292824074074073,0.23292824074074073,0,0,0,94,0,20125.0,0,0,0,0,0,20125.0
1998-12-22,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
1998-12-23,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
1998-12-24,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
1998-12-25,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
1998-12-26,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
1998-12-27,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-28,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-29,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1998-12-30,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
1998-12-31,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
1999-01-01,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-02,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-03,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
1999-01-04,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
1999-01-05,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-06,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
1999-01-07,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-08,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
1999-01-09,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-10,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-11,0,0,67849.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7853009259259257,0.7853009259259258,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-12,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
1999-01-13,0,0,81075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9383680555555556,0.9383680555555556,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-14,0,0,61524.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7120949074074073,0.7120949074074073,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-15,0,0,35650.0,35650.0,35650.0,0,0,0,0,0,35650.0,0.41261574074074076,0.4126157407407407,0,0,0,94,0,35650.0,0,0,0,0,0,35650.0
1999-01-16,0,0,18399.999999999996,18399.999999999996,18399.999999999996,0,0,0,0,0,18399.999999999996,0.2129629629629629,0.21296296296296294,0,0,0,94,0,18399.999999999996,0,0,0,0,0,18399.999999999996
1999-01-17,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
1999-01-18,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
1999-01-19,0,0,38525.0,38525.0,38525.0,0,0,0,0,0,38525.0,0.4458912037037037,0.44589120370370366,0,0,0,94,0,38525.0,0,0,0,0,0,38525.0
1999-01-20,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
1999-01-21,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-22,0,0,70150.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8119212962962963,0.8119212962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-23,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
1999-01-24,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
1999-01-25,0,0,64400.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7453703703703703,0.7453703703703703,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-26,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-27,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
1999-01-28,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
1999-01-29,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
1999-01-30,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-01-31,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
1999-02-01,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
1999-02-02,0,0,10925.000000000002,10925.000000000002,10925.000000000002,0,0,0,0,0,10925.000000000002,0.12644675925925927,0.12644675925925927,0,0,0,94,0,10925.000000000002,0,0,0,0,0,10925.000000000002
1999-02-03,0,0,12650.0,12650.0,12650.0,0,0,0,0,0,12650.0,0.14641203703703703,0.14641203703703703,0,0,0,94,0,12650.0,0,0,0,0,0,12650.0
1999-02-04,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
1999-02-05,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
1999-02-06,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
1999-02-07,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
1999-02-08,0,0,44070.0,44070.0,44070.0,0,0,0,0,0,44070.0,0.5100694444444445,0.5100694444444445,0,0,0,94,0,44070.0,0,0,0,0,0,44070.0
1999-02-09,0,0,42735.0,42735.0,42735.0,0,0,0,0,0,42735.0,0.49461805555555555,0.49461805555555555,0,0,0,94,0,42735.0,0,0,0,0,0,42735.0
1999-02-10,0,0,51229.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5929398148148147,0.5929398148148147,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-02-11,0,0,29960.0,29960.0,29960.0,0,0,0,0,0,29960.0,0.34675925925925927,0.34675925925925927,0,0,0,94,0,29960.0,0,0,0,0,0,29960.0
1999-02-12,0,0,40950.0,40950.0,40950.0,0,0,0,0,0,40950.0,0.4739583333333333,0.4739583333333333,0,0,0,94,0,40950.0,0,0,0,0,0,40950.0
1999-02-13,0,0,41200.0,41200.0,41200.0,0,0,0,0,0,41200.0,0.47685185185185186,0.47685185185185186,0,0,0,94,0,41200.0,0,0,0,0,0,41200.0
1999-02-14,0,0,55549.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6429398148148148,0.6429398148148148,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-02-15,0,0,47520.00000000001,47520.00000000001,47520.00000000001,0,0,0,0,0,47520.00000000001,0.55,0.55,0,0,0,94,0,47520.00000000001,0,0,0,0,0,47520.00000000001
1999-02-16,0,0,56745.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6567708333333333,0.6567708333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-02-17,0,0,37999.99999999999,37999.99999999999,37999.99999999999,0,0,0,0,0,37999.99999999999,0.4398148148148147,0.43981481481481477,0,0,0,94,0,37999.99999999999,0,0,0,0,0,37999.99999999999
1999-02-18,0,0,55799.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6458333333333333,0.6458333333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-02-19,0,0,30030.0,30030.0,30030.0,0,0,0,0,0,30030.0,0.34756944444444443,0.34756944444444443,0,0,0,94,0,30030.0,0,0,0,0,0,30030.0
1999-02-20,0,0,46279.99999999999,46279.99999999999,46279.99999999999,0,0,0,0,0,46279.99999999999,0.5356481481481481,0.5356481481481481,0,0,0,94,0,46279.99999999999,0,0,0,0,0,46279.99999999999
1999-02-21,0,0,30449.999999999996,30449.999999999996,30449.999999999996,0,0,0,0,0,30449.999999999996,0.3524305555555555,0.3524305555555555,0,0,0,94,0,30449.999999999996,0,0,0,0,0,30449.999999999996
1999-02-22,0,0,28050.0,28050.0,28050.0,0,0,0,0,0,28050.0,0.3246527777777778,0.3246527777777778,0,0,0,94,0,28050.0,0,0,0,0,0,28050.0
1999-02-23,0,0,36935.0,36935.0,36935.0,0,0,0,0,0,36935.0,0.42748842592592595,0.42748842592592595,0,0,0,94,0,36935.0,0,0,0,0,0,36935.0
1999-02-24,0,0,38070.0,38070.0,38070.0,0,0,0,0,0,38070.0,0.440625,0.440625,0,0,0,94,0,38070.0,0,0,0,0,0,38070.0
1999-02-25,0,0,39895.0,39895.0,39895.0,0,0,0,0,0,39895.0,0.46174768518518516,0.4617476851851852,0,0,0,94,0,39895.0,0,0,0,0,0,39895.0
1999-02-26,0,0,24254.999999999996,24254.999999999996,24254.999999999996,0,0,0,0,0,24254.999999999996,0.28072916666666664,0.28072916666666664,0,0,0,94,0,24254.999999999996,0,0,0,0,0,24254.999999999996
1999-02-27,0,0,26249.999999999996,26249.999999999996,26249.999999999996,0,0,0,0,0,26249.999999999996,0.3038194444444444,0.3038194444444444,0,0,0,94,0,26249.999999999996,0,0,0,0,0,26249.999999999996
1999-02-28,0,0,23360.0,23360.0,23360.0,0,0,0,0,0,23360.0,0.27037037037037037,0.27037037037037037,0,0,0,94,0,23360.0,0,0,0,0,0,23360.0
1999-03-01,0,0,35855.0,35855.0,35855.0,0,0,0,0,0,35855.0,0.41498842592592594,0.4149884259259259,0,0,0,94,0,35855.0,0,0,0,0,0,35855.0
1999-03-02,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
1999-03-03,0,0,21440.0,21440.0,21440.0,0,0,0,0,0,21440.0,0.24814814814814815,0.24814814814814815,0,0,0,94,0,21440.0,0,0,0,0,0,21440.0
1999-03-04,0,0,22750.0,22750.0,22750.0,0,0,0,0,0,22750.0,0.2633101851851852,0.2633101851851852,0,0,0,94,0,22750.0,0,0,0,0,0,22750.0
1999-03-05,0,0,23625.0,23625.0,23625.0,0,0,0,0,0,23625.0,0.2734375,0.2734375,0,0,0,94,0,23625.0,0,0,0,0,0,23625.0
1999-03-06,0,0,23789.999999999996,23789.999999999996,23789.999999999996,0,0,0,0,0,23789.999999999996,0.2753472222222222,0.2753472222222222,0,0,0,94,0,23789.999999999996,0,0,0,0,0,23789.999999999996
1999-03-07,0,0,21535.0,21535.0,21535.0,0,0,0,0,0,21535.0,0.2492476851851852,0.24924768518518517,0,0,0,94,0,21535.0,0,0,0,0,0,21535.0
1999-03-08,0,0,30210.0,30210.0,30210.0,0,0,0,0,0,30210.0,0.34965277777777776,0.34965277777777776,0,0,0,94,0,30210.0,0,0,0,0,0,30210.0
1999-03-09,0,0,36025.0,36025.0,36025.0,0,0,0,0,0,36025.0,0.41695601851851855,0.4169560185185185,0,0,0,94,0,36025.0,0,0,0,0,0,36025.0
1999-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
1999-10-25,0,0,9300.0,9300.0,9300.0,0,0,0,0,0,9300.0,0.1076388888888889,0.1076388888888889,0,0,0,94,0,9300.0,0,0,0,0,0,9300.0
1999-10-26,0,0,17250.0,17250.0,17250.0,0,0,0,0,0,17250.0,0.1996527777777778,0.19965277777777776,0,0,0,94,0,17250.0,0,0,0,0,0,17250.0
1999-10-27,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
1999-10-28,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
1999-10-29,0,0,5400.0,5400.0,5400.0,0,0,0,0,0,5400.0,0.0625,0.0625,0,0,0,94,0,5400.0,0,0,0,0,0,5400.0
1999-10-30,0,0,8850.0,8850.0,8850.0,0,0,0,0,0,8850.0,0.10243055555555555,0.10243055555555555,0,0,0,94,0,8850.0,0,0,0,0,0,8850.0
1999-10-31,0,0,9900.0,9900.0,9900.0,0,0,0,0,0,9900.0,0.11458333333333333,0.11458333333333333,0,0,0,94,0,9900.0,0,0,0,0,0,9900.0
1999-11-01,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
1999-11-02,0,0,4049.9999999999995,4049.9999999999995,4049.9999999999995,0,0,0,0,0,4049.9999999999995,0.04687499999999999,0.04687499999999999,0,0,0,94,0,4049.9999999999995,0,0,0,0,0,4049.9999999999995
1999-11-03,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
1999-11-04,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
1999-11-05,0,0,7949.999999999999,7949.999999999999,7949.999999999999,0,0,0,0,0,7949.999999999999,0.09201388888888888,0.09201388888888888,0,0,0,94,0,7949.999999999999,0,0,0,0,0,7949.999999999999
1999-11-06,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
1999-11-07,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
1999-11-08,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
1999-11-09,0,0,8850.0,8850.0,8850.0,0,0,0,0,0,8850.0,0.10243055555555555,0.10243055555555555,0,0,0,94,0,8850.0,0,0,0,0,0,8850.0
1999-11-10,0,0,11400.0,11400.0,11400.0,0,0,0,0,0,11400.0,0.13194444444444445,0.13194444444444445,0,0,0,94,0,11400.0,0,0,0,0,0,11400.0
1999-11-11,0,0,11099.999999999998,11099.999999999998,11099.999999999998,0,0,0,0,0,11099.999999999998,0.1284722222222222,0.1284722222222222,0,0,0,94,0,11099.999999999998,0,0,0,0,0,11099.999999999998
1999-11-12,0,0,8099.999999999999,8099.999999999999,8099.999999999999,0,0,0,0,0,8099.999999999999,0.09374999999999999,0.09374999999999999,0,0,0,94,0,8099.999999999999,0,0,0,0,0,8099.999999999999
1999-11-13,0,0,5700.0,5700.0,5700.0,0,0,0,0,0,5700.0,0.06597222222222222,0.06597222222222222,0,0,0,94,0,5700.0,0,0,0,0,0,5700.0
1999-11-14,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
1999-11-15,0,0,7347.999999999999,7347.999999999999,7347.999999999999,0,0,0,0,0,7347.999999999999,0.08504629629629629,0.08504629629629629,0,0,0,94,0,7347.999999999999,0,0,0,0,0,7347.999999999999
1999-11-16,0,0,9752.0,9752.0,9752.0,0,0,0,0,0,9752.0,0.11287037037037037,0.11287037037037037,0,0,0,94,0,9752.0,0,0,0,0,0,9752.0
1999-11-17,0,0,9246.0,9246.0,9246.0,0,0,0,0,0,9246.0,0.1070138888888889,0.1070138888888889,0,0,0,94,0,9246.0,0,0,0,0,0,9246.0
1999-11-18,0,0,14169.999999999998,14169.999999999998,14169.999999999998,0,0,0,0,0,14169.999999999998,0.1640046296296296,0.1640046296296296,0,0,0,94,0,14169.999999999998,0,0,0,0,0,14169.999999999998
1999-11-19,0,0,11279.999999999998,11279.999999999998,11279.999999999998,0,0,0,0,0,11279.999999999998,0.13055555555555554,0.13055555555555554,0,0,0,94,0,11279.999999999998,0,0,0,0,0,11279.999999999998
1999-11-20,0,0,13608.0,13608.0,13608.0,0,0,0,0,0,13608.0,0.1575,0.1575,0,0,0,94,0,13608.0,0,0,0,0,0,13608.0
1999-11-21,0,0,12105.0,12105.0,12105.0,0,0,0,0,0,12105.0,0.14010416666666667,0.14010416666666667,0,0,0,94,0,12105.0,0,0,0,0,0,12105.0
1999-11-22,0,0,14013.999999999998,14013.999999999998,14013.999999999998,0,0,0,0,0,14013.999999999998,0.16219907407407405,0.16219907407407405,0,0,0,94,0,14013.999999999998,0,0,0,0,0,14013.999999999998
1999-11-23,0,0,11817.0,11817.0,11817.0,0,0,0,0,0,11817.0,0.13677083333333334,0.13677083333333334,0,0,0,94,0,11817.0,0,0,0,0,0,11817.0
1999-11-24,0,0,17280.0,17280.0,17280.0,0,0,0,0,0,17280.0,0.2,0.2,0,0,0,94,0,17280.0,0,0,0,0,0,17280.0
1999-11-25,0,0,20556.999999999996,20556.999999999996,20556.999999999996,0,0,0,0,0,20556.999999999996,0.2379282407407407,0.2379282407407407,0,0,0,94,0,20556.999999999996,0,0,0,0,0,20556.999999999996
1999-11-26,0,0,24780.0,24780.0,24780.0,0,0,0,0,0,24780.0,0.28680555555555554,0.28680555555555554,0,0,0,94,0,24780.0,0,0,0,0,0,24780.0
1999-11-27,0,0,23373.0,23373.0,23373.0,0,0,0,0,0,23373.0,0.2705208333333333,0.2705208333333333,0,0,0,94,0,23373.0,0,0,0,0,0,23373.0
1999-11-28,0,0,22116.0,22116.0,22116.0,0,0,0,0,0,22116.0,0.2559722222222222,0.2559722222222222,0,0,0,94,0,22116.0,0,0,0,0,0,22116.0
1999-11-29,0,0,42119.99999999999,42119.99999999999,42119.99999999999,0,0,0,0,0,42119.99999999999,0.48749999999999993,0.48749999999999993,0,0,0,94,0,42119.99999999999,0,0,0,0,0,42119.99999999999
1999-11-30,0,0,40512.0,40512.0,40512.0,0,0,0,0,0,40512.0,0.4688888888888889,0.46888888888888886,0,0,0,94,0,40512.0,0,0,0,0,0,40512.0
1999-12-01,0,0,31608.0,31608.0,31608.0,0,0,0,0,0,31608.0,0.36583333333333334,0.36583333333333334,0,0,0,94,0,31608.0,0,0,0,0,0,31608.0
1999-12-02,0,0,21888.000000000004,21888.000000000004,21888.000000000004,0,0,0,0,0,21888.000000000004,0.25333333333333335,0.25333333333333335,0,0,0,94,0,21888.000000000004,0,0,0,0,0,21888.000000000004
1999-12-03,0,0,26961.0,26961.0,26961.0,0,0,0,0,0,26961.0,0.3120486111111111,0.3120486111111111,0,0,0,94,0,26961.0,0,0,0,0,0,26961.0
1999-12-04,0,0,20579.999999999996,20579.999999999996,20579.999999999996,0,0,0,0,0,20579.999999999996,0.2381944444444444,0.2381944444444444,0,0,0,94,0,20579.999999999996,0,0,0,0,0,20579.999999999996
1999-12-05,0,0,47151.00000000001,47151.00000000001,47151.00000000001,0,0,0,0,0,47151.00000000001,0.5457291666666667,0.5457291666666667,0,0,0,94,0,47151.00000000001,0,0,0,0,0,47151.00000000001
1999-12-06,0,0,59211.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.685324074074074,0.685324074074074,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-12-07,0,0,40575.0,40575.0,40575.0,0,0,0,0,0,40575.0,0.4696180555555556,0.4696180555555556,0,0,0,94,0,40575.0,0,0,0,0,0,40575.0
1999-12-08,0,0,36270.0,36270.0,36270.0,0,0,0,0,0,36270.0,0.4197916666666667,0.4197916666666667,0,0,0,94,0,36270.0,0,0,0,0,0,36270.0
1999-12-09,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
1999-12-10,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
1999-12-11,0,0,26450.0,26450.0,26450.0,0,0,0,0,0,26450.0,0.30613425925925924,0.30613425925925924,0,0,0,94,0,26450.0,0,0,0,0,0,26450.0
1999-12-12,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
1999-12-13,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
1999-12-14,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-12-15,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
1999-12-16,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
1999-12-17,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
1999-12-18,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
1999-12-19,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
1999-12-20,0,0,75325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8718171296296297,0.8718171296296297,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
1999-12-21,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
1999-12-22,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
1999-12-23,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
1999-12-24,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
1999-12-25,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
1999-12-26,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
1999-12-27,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
1999-12-28,0,0,25874.999999999996,25874.999999999996,25874.999999999996,0,0,0,0,0,25874.999999999996,0.29947916666666663,0.29947916666666663,0,0,0,94,0,25874.999999999996,0,0,0,0,0,25874.999999999996
1999-12-29,0,0,26450.0,26450.0,26450.0,0,0,0,0,0,26450.0,0.30613425925925924,0.30613425925925924,0,0,0,94,0,26450.0,0,0,0,0,0,26450.0
1999-12-30,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
1999-12-31,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2000-01-01,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2000-01-02,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2000-01-03,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2000-01-04,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2000-01-05,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2000-01-06,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2000-01-07,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2000-01-08,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2000-01-09,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2000-01-10,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2000-01-11,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2000-01-12,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2000-01-13,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2000-01-14,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2000-01-15,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2000-01-16,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2000-01-17,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2000-01-18,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2000-01-19,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2000-01-20,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
2000-01-21,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2000-01-22,0,0,35650.0,35650.0,35650.0,0,0,0,0,0,35650.0,0.41261574074074076,0.4126157407407407,0,0,0,94,0,35650.0,0,0,0,0,0,35650.0
2000-01-23,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2000-01-24,0,0,56925.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6588541666666666,0.6588541666666666,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2000-01-25,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2000-01-26,0,0,54049.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6255787037037036,0.6255787037037036,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2000-01-27,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2000-01-28,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2000-01-29,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2000-01-30,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2000-01-31,0,0,69000.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7986111111111112,0.798611111111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2000-02-01,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2000-02-02,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2000-02-03,0,0,22999.999999999996,22999.999999999996,22999.999999999996,0,0,0,0,0,22999.999999999996,0.26620370370370366,0.26620370370370366,0,0,0,94,0,22999.999999999996,0,0,0,0,0,22999.999999999996
2000-02-04,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2000-02-05,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2000-02-06,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2000-02-07,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2000-02-08,0,0,42374.99999999999,42374.99999999999,42374.99999999999,0,0,0,0,0,42374.99999999999,0.4904513888888888,0.49045138888888884,0,0,0,94,0,42374.99999999999,0,0,0,0,0,42374.99999999999
2000-02-09,0,0,35520.0,35520.0,35520.0,0,0,0,0,0,35520.0,0.4111111111111111,0.41111111111111115,0,0,0,94,0,35520.0,0,0,0,0,0,35520.0
2000-02-10,0,0,35970.0,35970.0,35970.0,0,0,0,0,0,35970.0,0.41631944444444446,0.4163194444444444,0,0,0,94,0,35970.0,0,0,0,0,0,35970.0
2000-02-11,0,0,47615.0,47615.0,47615.0,0,0,0,0,0,47615.0,0.5510995370370371,0.5510995370370371,0,0,0,94,0,47615.0,0,0,0,0,0,47615.0
2000-02-12,0,0,40950.0,40950.0,40950.0,0,0,0,0,0,40950.0,0.4739583333333333,0.4739583333333333,0,0,0,94,0,40950.0,0,0,0,0,0,40950.0
2000-02-13,0,0,36049.99999999999,36049.99999999999,36049.99999999999,0,0,0,0,0,36049.99999999999,0.4172453703703703,0.4172453703703703,0,0,0,94,0,36049.99999999999,0,0,0,0,0,36049.99999999999
2000-02-14,0,0,41409.99999999999,41409.99999999999,41409.99999999999,0,0,0,0,0,41409.99999999999,0.4792824074074073,0.47928240740740735,0,0,0,94,0,41409.99999999999,0,0,0,0,0,41409.99999999999
2000-02-15,0,0,22274.999999999996,22274.999999999996,22274.999999999996,0,0,0,0,0,22274.999999999996,0.25781249999999994,0.25781249999999994,0,0,0,94,0,22274.999999999996,0,0,0,0,0,22274.999999999996
2000-02-16,0,0,12610.0,12610.0,12610.0,0,0,0,0,0,12610.0,0.14594907407407406,0.14594907407407406,0,0,0,94,0,12610.0,0,0,0,0,0,12610.0
2000-02-17,0,0,37049.99999999999,37049.99999999999,37049.99999999999,0,0,0,0,0,37049.99999999999,0.42881944444444436,0.42881944444444436,0,0,0,94,0,37049.99999999999,0,0,0,0,0,37049.99999999999
2000-02-18,0,0,33945.0,33945.0,33945.0,0,0,0,0,0,33945.0,0.39288194444444446,0.3928819444444444,0,0,0,94,0,33945.0,0,0,0,0,0,33945.0
2000-02-19,0,0,31850.0,31850.0,31850.0,0,0,0,0,0,31850.0,0.36863425925925924,0.36863425925925924,0,0,0,94,0,31850.0,0,0,0,0,0,31850.0
2000-02-20,0,0,37825.0,37825.0,37825.0,0,0,0,0,0,37825.0,0.43778935185185186,0.43778935185185186,0,0,0,94,0,37825.0,0,0,0,0,0,37825.0
2000-02-21,0,0,34799.99999999999,34799.99999999999,34799.99999999999,0,0,0,0,0,34799.99999999999,0.4027777777777777,0.40277777777777773,0,0,0,94,0,34799.99999999999,0,0,0,0,0,34799.99999999999
2000-02-22,0,0,27199.999999999996,27199.999999999996,27199.999999999996,0,0,0,0,0,27199.999999999996,0.31481481481481477,0.31481481481481477,0,0,0,94,0,27199.999999999996,0,0,0,0,0,27199.999999999996
2000-02-23,0,0,32369.999999999996,32369.999999999996,32369.999999999996,0,0,0,0,0,32369.999999999996,0.3746527777777777,0.3746527777777777,0,0,0,94,0,32369.999999999996,0,0,0,0,0,32369.999999999996
2000-02-24,0,0,31184.999999999996,31184.999999999996,31184.999999999996,0,0,0,0,0,31184.999999999996,0.36093749999999997,0.36093749999999997,0,0,0,94,0,31184.999999999996,0,0,0,0,0,31184.999999999996
2000-02-25,0,0,23305.0,23305.0,23305.0,0,0,0,0,0,23305.0,0.2697337962962963,0.2697337962962963,0,0,0,94,0,23305.0,0,0,0,0,0,23305.0
2000-02-26,0,0,25410.0,25410.0,25410.0,0,0,0,0,0,25410.0,0.29409722222222223,0.29409722222222223,0,0,0,94,0,25410.0,0,0,0,0,0,25410.0
2000-02-27,0,0,33750.0,33750.0,33750.0,0,0,0,0,0,33750.0,0.390625,0.390625,0,0,0,94,0,33750.0,0,0,0,0,0,33750.0
2000-02-28,0,0,47815.0,47815.0,47815.0,0,0,0,0,0,47815.0,0.5534143518518518,0.5534143518518518,0,0,0,94,0,47815.0,0,0,0,0,0,47815.0
2000-02-29,0,0,31949.999999999996,31949.999999999996,31949.999999999996,0,0,0,0,0,31949.999999999996,0.36979166666666663,0.36979166666666663,0,0,0,94,0,31949.999999999996,0,0,0,0,0,31949.999999999996
2000-03-01,0,0,31739.999999999996,31739.999999999996,31739.999999999996,0,0,0,0,0,31739.999999999996,0.3673611111111111,0.3673611111111111,0,0,0,94,0,31739.999999999996,0,0,0,0,0,31739.999999999996
2000-03-02,0,0,23450.0,23450.0,23450.0,0,0,0,0,0,23450.0,0.27141203703703703,0.27141203703703703,0,0,0,94,0,23450.0,0,0,0,0,0,23450.0
2000-03-03,0,0,20475.0,20475.0,20475.0,0,0,0,0,0,20475.0,0.23697916666666666,0.23697916666666666,0,0,0,94,0,20475.0,0,0,0,0,0,20475.0
2000-03-04,0,0,32759.999999999993,32759.999999999993,32759.999999999993,0,0,0,0,0,32759.999999999993,0.3791666666666666,0.3791666666666666,0,0,0,94,0,32759.999999999993,0,0,0,0,0,32759.999999999993
2000-03-05,0,0,17995.0,17995.0,17995.0,0,0,0,0,0,17995.0,0.20827546296296295,0.20827546296296295,0,0,0,94,0,17995.0,0,0,0,0,0,17995.0
2000-03-06,0,0,23600.0,23600.0,23600.0,0,0,0,0,0,23600.0,0.27314814814814814,0.27314814814814814,0,0,0,94,0,23600.0,0,0,0,0,0,23600.0
2000-03-07,0,0,26219.999999999996,26219.999999999996,26219.999999999996,0,0,0,0,0,26219.999999999996,0.3034722222222222,0.3034722222222222,0,0,0,94,0,26219.999999999996,0,0,0,0,0,26219.999999999996
2000-03-08,0,0,19249.999999999996,19249.999999999996,19249.999999999996,0,0,0,0,0,19249.999999999996,0.22280092592592587,0.2228009259259259,0,0,0,94,0,19249.999999999996,0,0,0,0,0,19249.999999999996
2000-03-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2000-10-25,0,0,7800.0,7800.0,7800.0,0,0,0,0,0,7800.0,0.09027777777777778,0.09027777777777778,0,0,0,94,0,7800.0,0,0,0,0,0,7800.0
2000-10-26,0,0,4950.0,4950.0,4950.0,0,0,0,0,0,4950.0,0.057291666666666664,0.057291666666666664,0,0,0,94,0,4950.0,0,0,0,0,0,4950.0
2000-10-27,0,0,2400.0,2400.0,2400.0,0,0,0,0,0,2400.0,0.027777777777777776,0.027777777777777776,0,0,0,94,0,2400.0,0,0,0,0,0,2400.0
2000-10-28,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2000-10-29,0,0,3600.0,3600.0,3600.0,0,0,0,0,0,3600.0,0.041666666666666664,0.041666666666666664,0,0,0,94,0,3600.0,0,0,0,0,0,3600.0
2000-10-30,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2000-10-31,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2000-11-01,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2000-11-02,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2000-11-03,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2000-11-04,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2000-11-05,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2000-11-06,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2000-11-07,0,0,9900.0,9900.0,9900.0,0,0,0,0,0,9900.0,0.11458333333333333,0.11458333333333333,0,0,0,94,0,9900.0,0,0,0,0,0,9900.0
2000-11-08,0,0,11400.0,11400.0,11400.0,0,0,0,0,0,11400.0,0.13194444444444445,0.13194444444444445,0,0,0,94,0,11400.0,0,0,0,0,0,11400.0
2000-11-09,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2000-11-10,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2000-11-11,0,0,7949.999999999999,7949.999999999999,7949.999999999999,0,0,0,0,0,7949.999999999999,0.09201388888888888,0.09201388888888888,0,0,0,94,0,7949.999999999999,0,0,0,0,0,7949.999999999999
2000-11-12,0,0,5400.0,5400.0,5400.0,0,0,0,0,0,5400.0,0.0625,0.0625,0,0,0,94,0,5400.0,0,0,0,0,0,5400.0
2000-11-13,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2000-11-14,0,0,7650.0,7650.0,7650.0,0,0,0,0,0,7650.0,0.08854166666666667,0.08854166666666667,0,0,0,94,0,7650.0,0,0,0,0,0,7650.0
2000-11-15,0,0,9352.0,9352.0,9352.0,0,0,0,0,0,9352.0,0.10824074074074073,0.10824074074074073,0,0,0,94,0,9352.0,0,0,0,0,0,9352.0
2000-11-16,0,0,7175.999999999999,7175.999999999999,7175.999999999999,0,0,0,0,0,7175.999999999999,0.08305555555555555,0.08305555555555555,0,0,0,94,0,7175.999999999999,0,0,0,0,0,7175.999999999999
2000-11-17,0,0,8843.999999999998,8843.999999999998,8843.999999999998,0,0,0,0,0,8843.999999999998,0.10236111111111108,0.1023611111111111,0,0,0,94,0,8843.999999999998,0,0,0,0,0,8843.999999999998
2000-11-18,0,0,10464.0,10464.0,10464.0,0,0,0,0,0,10464.0,0.12111111111111111,0.12111111111111111,0,0,0,94,0,10464.0,0,0,0,0,0,10464.0
2000-11-19,0,0,19975.0,19975.0,19975.0,0,0,0,0,0,19975.0,0.23119212962962962,0.23119212962962962,0,0,0,94,0,19975.0,0,0,0,0,0,19975.0
2000-11-20,0,0,11592.0,11592.0,11592.0,0,0,0,0,0,11592.0,0.13416666666666666,0.13416666666666666,0,0,0,94,0,11592.0,0,0,0,0,0,11592.0
2000-11-21,0,0,6456.0,6456.0,6456.0,0,0,0,0,0,6456.0,0.07472222222222222,0.07472222222222222,0,0,0,94,0,6456.0,0,0,0,0,0,6456.0
2000-11-22,0,0,10868.0,10868.0,10868.0,0,0,0,0,0,10868.0,0.12578703703703703,0.12578703703703703,0,0,0,94,0,10868.0,0,0,0,0,0,10868.0
2000-11-23,0,0,17877.0,17877.0,17877.0,0,0,0,0,0,17877.0,0.20690972222222223,0.2069097222222222,0,0,0,94,0,17877.0,0,0,0,0,0,17877.0
2000-11-24,0,0,14400.0,14400.0,14400.0,0,0,0,0,0,14400.0,0.16666666666666666,0.16666666666666666,0,0,0,94,0,14400.0,0,0,0,0,0,14400.0
2000-11-25,0,0,22242.0,22242.0,22242.0,0,0,0,0,0,22242.0,0.25743055555555555,0.25743055555555555,0,0,0,94,0,22242.0,0,0,0,0,0,22242.0
2000-11-26,0,0,20178.0,20178.0,20178.0,0,0,0,0,0,20178.0,0.23354166666666668,0.23354166666666668,0,0,0,94,0,20178.0,0,0,0,0,0,20178.0
2000-11-27,0,0,24114.999999999996,24114.999999999996,24114.999999999996,0,0,0,0,0,24114.999999999996,0.27910879629629626,0.27910879629629626,0,0,0,94,0,24114.999999999996,0,0,0,0,0,24114.999999999996
2000-11-28,0,0,17071.999999999996,17071.999999999996,17071.999999999996,0,0,0,0,0,17071.999999999996,0.19759259259259254,0.19759259259259257,0,0,0,94,0,17071.999999999996,0,0,0,0,0,17071.999999999996
2000-11-29,0,0,23085.000000000004,23085.000000000004,23085.000000000004,0,0,0,0,0,23085.000000000004,0.2671875,0.2671875,0,0,0,94,0,23085.000000000004,0,0,0,0,0,23085.000000000004
2000-11-30,0,0,10128.0,10128.0,10128.0,0,0,0,0,0,10128.0,0.11722222222222223,0.11722222222222221,0,0,0,94,0,10128.0,0,0,0,0,0,10128.0
2000-12-01,0,0,22389.0,22389.0,22389.0,0,0,0,0,0,22389.0,0.25913194444444443,0.25913194444444443,0,0,0,94,0,22389.0,0,0,0,0,0,22389.0
2000-12-02,0,0,23256.0,23256.0,23256.0,0,0,0,0,0,23256.0,0.26916666666666667,0.26916666666666667,0,0,0,94,0,23256.0,0,0,0,0,0,23256.0
2000-12-03,0,0,23177.0,23177.0,23177.0,0,0,0,0,0,23177.0,0.2682523148148148,0.2682523148148148,0,0,0,94,0,23177.0,0,0,0,0,0,23177.0
2000-12-04,0,0,32340.0,32340.0,32340.0,0,0,0,0,0,32340.0,0.37430555555555556,0.37430555555555556,0,0,0,94,0,32340.0,0,0,0,0,0,32340.0
2000-12-05,0,0,27377.999999999996,27377.999999999996,27377.999999999996,0,0,0,0,0,27377.999999999996,0.31687499999999996,0.31687499999999996,0,0,0,94,0,27377.999999999996,0,0,0,0,0,27377.999999999996
2000-12-06,0,0,25152.0,25152.0,25152.0,0,0,0,0,0,25152.0,0.2911111111111111,0.2911111111111111,0,0,0,94,0,25152.0,0,0,0,0,0,25152.0
2000-12-07,0,0,22721.999999999996,22721.999999999996,22721.999999999996,0,0,0,0,0,22721.999999999996,0.2629861111111111,0.2629861111111111,0,0,0,94,0,22721.999999999996,0,0,0,0,0,22721.999999999996
2000-12-08,0,0,24551.999999999996,24551.999999999996,24551.999999999996,0,0,0,0,0,24551.999999999996,0.2841666666666666,0.2841666666666666,0,0,0,94,0,24551.999999999996,0,0,0,0,0,24551.999999999996
2000-12-09,0,0,32774.99999999999,32774.99999999999,32774.99999999999,0,0,0,0,0,32774.99999999999,0.3793402777777777,0.37934027777777773,0,0,0,94,0,32774.99999999999,0,0,0,0,0,32774.99999999999
2000-12-10,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2000-12-11,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2000-12-12,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2000-12-13,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2000-12-14,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2000-12-15,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2000-12-16,0,0,14374.999999999998,14374.999999999998,14374.999999999998,0,0,0,0,0,14374.999999999998,0.1663773148148148,0.1663773148148148,0,0,0,94,0,14374.999999999998,0,0,0,0,0,14374.999999999998
2000-12-17,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2000-12-18,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2000-12-19,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2000-12-20,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
2000-12-21,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2000-12-22,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2000-12-23,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2000-12-24,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2000-12-25,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2000-12-26,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2000-12-27,0,0,15525.0,15525.0,15525.0,0,0,0,0,0,15525.0,0.1796875,0.1796875,0,0,0,94,0,15525.0,0,0,0,0,0,15525.0
2000-12-28,0,0,9775.0,9775.0,9775.0,0,0,0,0,0,9775.0,0.11313657407407407,0.11313657407407407,0,0,0,94,0,9775.0,0,0,0,0,0,9775.0
2000-12-29,0,0,12650.0,12650.0,12650.0,0,0,0,0,0,12650.0,0.14641203703703703,0.14641203703703703,0,0,0,94,0,12650.0,0,0,0,0,0,12650.0
2000-12-30,0,0,21274.999999999996,21274.999999999996,21274.999999999996,0,0,0,0,0,21274.999999999996,0.24623842592592587,0.2462384259259259,0,0,0,94,0,21274.999999999996,0,0,0,0,0,21274.999999999996
2000-12-31,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2001-01-01,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2001-01-02,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2001-01-03,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2001-01-04,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2001-01-05,0,0,18975.0,18975.0,18975.0,0,0,0,0,0,18975.0,0.21961805555555555,0.21961805555555555,0,0,0,94,0,18975.0,0,0,0,0,0,18975.0
2001-01-06,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2001-01-07,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2001-01-08,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2001-01-09,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2001-01-10,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2001-01-11,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2001-01-12,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2001-01-13,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2001-01-14,0,0,47150.0,47150.0,47150.0,0,0,0,0,0,47150.0,0.5457175925925926,0.5457175925925926,0,0,0,94,0,47150.0,0,0,0,0,0,47150.0
2001-01-15,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2001-01-16,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2001-01-17,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2001-01-18,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2001-01-19,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2001-01-20,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2001-01-21,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2001-01-22,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-01-23,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2001-01-24,0,0,38525.0,38525.0,38525.0,0,0,0,0,0,38525.0,0.4458912037037037,0.44589120370370366,0,0,0,94,0,38525.0,0,0,0,0,0,38525.0
2001-01-25,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2001-01-26,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2001-01-27,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2001-01-28,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2001-01-29,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2001-01-30,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
2001-01-31,0,0,54049.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6255787037037036,0.6255787037037036,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-02-01,0,0,6325.0,6325.0,6325.0,0,0,0,0,0,6325.0,0.07320601851851852,0.07320601851851852,0,0,0,94,0,6325.0,0,0,0,0,0,6325.0
2001-02-02,0,0,10350.0,10350.0,10350.0,0,0,0,0,0,10350.0,0.11979166666666667,0.11979166666666666,0,0,0,94,0,10350.0,0,0,0,0,0,10350.0
2001-02-03,0,0,9199.999999999998,9199.999999999998,9199.999999999998,0,0,0,0,0,9199.999999999998,0.10648148148148145,0.10648148148148147,0,0,0,94,0,9199.999999999998,0,0,0,0,0,9199.999999999998
2001-02-04,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2001-02-05,0,0,18399.999999999996,18399.999999999996,18399.999999999996,0,0,0,0,0,18399.999999999996,0.2129629629629629,0.21296296296296294,0,0,0,94,0,18399.999999999996,0,0,0,0,0,18399.999999999996
2001-02-06,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2001-02-07,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2001-02-08,0,0,18079.999999999996,18079.999999999996,18079.999999999996,0,0,0,0,0,18079.999999999996,0.20925925925925923,0.20925925925925923,0,0,0,94,0,18079.999999999996,0,0,0,0,0,18079.999999999996
2001-02-09,0,0,36630.0,36630.0,36630.0,0,0,0,0,0,36630.0,0.4239583333333333,0.4239583333333333,0,0,0,94,0,36630.0,0,0,0,0,0,36630.0
2001-02-10,0,0,40329.99999999999,40329.99999999999,40329.99999999999,0,0,0,0,0,40329.99999999999,0.46678240740740734,0.46678240740740734,0,0,0,94,0,40329.99999999999,0,0,0,0,0,40329.99999999999
2001-02-11,0,0,37985.0,37985.0,37985.0,0,0,0,0,0,37985.0,0.4396412037037037,0.4396412037037037,0,0,0,94,0,37985.0,0,0,0,0,0,37985.0
2001-02-12,0,0,51975.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6015625,0.6015625,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-02-13,0,0,61799.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7152777777777777,0.7152777777777777,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-02-14,0,0,52014.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6020254629629629,0.6020254629629629,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-02-15,0,0,68805.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7963541666666667,0.7963541666666667,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-02-16,0,0,47045.0,47045.0,47045.0,0,0,0,0,0,47045.0,0.5445023148148148,0.5445023148148148,0,0,0,94,0,47045.0,0,0,0,0,0,47045.0
2001-02-17,0,0,28024.999999999996,28024.999999999996,28024.999999999996,0,0,0,0,0,28024.999999999996,0.3243634259259259,0.3243634259259259,0,0,0,94,0,28024.999999999996,0,0,0,0,0,28024.999999999996
2001-02-18,0,0,45104.99999999999,45104.99999999999,45104.99999999999,0,0,0,0,0,45104.99999999999,0.522048611111111,0.522048611111111,0,0,0,94,0,45104.99999999999,0,0,0,0,0,45104.99999999999
2001-02-19,0,0,38220.0,38220.0,38220.0,0,0,0,0,0,38220.0,0.4423611111111111,0.4423611111111111,0,0,0,94,0,38220.0,0,0,0,0,0,38220.0
2001-02-20,0,0,28035.0,28035.0,28035.0,0,0,0,0,0,28035.0,0.32447916666666665,0.32447916666666665,0,0,0,94,0,28035.0,0,0,0,0,0,28035.0
2001-02-21,0,0,26535.0,26535.0,26535.0,0,0,0,0,0,26535.0,0.30711805555555555,0.30711805555555555,0,0,0,94,0,26535.0,0,0,0,0,0,26535.0
2001-02-22,0,0,34000.0,34000.0,34000.0,0,0,0,0,0,34000.0,0.39351851851851855,0.3935185185185185,0,0,0,94,0,34000.0,0,0,0,0,0,34000.0
2001-02-23,0,0,27390.0,27390.0,27390.0,0,0,0,0,0,27390.0,0.3170138888888889,0.3170138888888889,0,0,0,94,0,27390.0,0,0,0,0,0,27390.0
2001-02-24,0,0,24704.999999999996,24704.999999999996,24704.999999999996,0,0,0,0,0,24704.999999999996,0.28593749999999996,0.28593749999999996,0,0,0,94,0,24704.999999999996,0,0,0,0,0,24704.999999999996
2001-02-25,0,0,41870.0,41870.0,41870.0,0,0,0,0,0,41870.0,0.4846064814814815,0.48460648148148144,0,0,0,94,0,41870.0,0,0,0,0,0,41870.0
2001-02-26,0,0,34265.0,34265.0,34265.0,0,0,0,0,0,34265.0,0.3965856481481482,0.3965856481481481,0,0,0,94,0,34265.0,0,0,0,0,0,34265.0
2001-02-27,0,0,20250.0,20250.0,20250.0,0,0,0,0,0,20250.0,0.234375,0.234375,0,0,0,94,0,20250.0,0,0,0,0,0,20250.0
2001-02-28,0,0,24800.0,24800.0,24800.0,0,0,0,0,0,24800.0,0.28703703703703703,0.28703703703703703,0,0,0,94,0,24800.0,0,0,0,0,0,24800.0
2001-03-01,0,0,34435.0,34435.0,34435.0,0,0,0,0,0,34435.0,0.3985532407407407,0.3985532407407407,0,0,0,94,0,34435.0,0,0,0,0,0,34435.0
2001-03-02,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2001-03-03,0,0,18760.0,18760.0,18760.0,0,0,0,0,0,18760.0,0.21712962962962962,0.21712962962962964,0,0,0,94,0,18760.0,0,0,0,0,0,18760.0
2001-03-04,0,0,12024.999999999998,12024.999999999998,12024.999999999998,0,0,0,0,0,12024.999999999998,0.13917824074074073,0.13917824074074073,0,0,0,94,0,12024.999999999998,0,0,0,0,0,12024.999999999998
2001-03-05,0,0,17010.0,17010.0,17010.0,0,0,0,0,0,17010.0,0.196875,0.196875,0,0,0,94,0,17010.0,0,0,0,0,0,17010.0
2001-03-06,0,0,15250.0,15250.0,15250.0,0,0,0,0,0,15250.0,0.17650462962962962,0.17650462962962962,0,0,0,94,0,15250.0,0,0,0,0,0,15250.0
2001-03-07,0,0,17405.0,17405.0,17405.0,0,0,0,0,0,17405.0,0.20144675925925926,0.20144675925925926,0,0,0,94,0,17405.0,0,0,0,0,0,17405.0
2001-03-08,0,0,22229.999999999996,22229.999999999996,22229.999999999996,0,0,0,0,0,22229.999999999996,0.25729166666666664,0.25729166666666664,0,0,0,94,0,22229.999999999996,0,0,0,0,0,22229.999999999996
2001-03-09,0,0,19525.0,19525.0,19525.0,0,0,0,0,0,19525.0,0.2259837962962963,0.22598379629629628,0,0,0,94,0,19525.0,0,0,0,0,0,19525.0
2001-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2001-10-25,0,0,4349.999999999999,4349.999999999999,4349.999999999999,0,0,0,0,0,4349.999999999999,0.05034722222222221,0.05034722222222222,0,0,0,94,0,4349.999999999999,0,0,0,0,0,4349.999999999999
2001-10-26,0,0,3299.9999999999995,3299.9999999999995,3299.9999999999995,0,0,0,0,0,3299.9999999999995,0.03819444444444444,0.03819444444444444,0,0,0,94,0,3299.9999999999995,0,0,0,0,0,3299.9999999999995
2001-10-27,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2001-10-28,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2001-10-29,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2001-10-30,0,0,4800.0,4800.0,4800.0,0,0,0,0,0,4800.0,0.05555555555555555,0.05555555555555555,0,0,0,94,0,4800.0,0,0,0,0,0,4800.0
2001-10-31,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2001-11-01,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2001-11-02,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
2001-11-03,0,0,8850.0,8850.0,8850.0,0,0,0,0,0,8850.0,0.10243055555555555,0.10243055555555555,0,0,0,94,0,8850.0,0,0,0,0,0,8850.0
2001-11-04,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2001-11-05,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2001-11-06,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
2001-11-07,0,0,10350.0,10350.0,10350.0,0,0,0,0,0,10350.0,0.11979166666666667,0.11979166666666666,0,0,0,94,0,10350.0,0,0,0,0,0,10350.0
2001-11-08,0,0,3000.0,3000.0,3000.0,0,0,0,0,0,3000.0,0.034722222222222224,0.034722222222222224,0,0,0,94,0,3000.0,0,0,0,0,0,3000.0
2001-11-09,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2001-11-10,0,0,3900.0,3900.0,3900.0,0,0,0,0,0,3900.0,0.04513888888888889,0.04513888888888889,0,0,0,94,0,3900.0,0,0,0,0,0,3900.0
2001-11-11,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2001-11-12,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2001-11-13,0,0,5700.0,5700.0,5700.0,0,0,0,0,0,5700.0,0.06597222222222222,0.06597222222222222,0,0,0,94,0,5700.0,0,0,0,0,0,5700.0
2001-11-14,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2001-11-15,0,0,7013.999999999999,7013.999999999999,7013.999999999999,0,0,0,0,0,7013.999999999999,0.08118055555555555,0.08118055555555555,0,0,0,94,0,7013.999999999999,0,0,0,0,0,7013.999999999999
2001-11-16,0,0,5520.0,5520.0,5520.0,0,0,0,0,0,5520.0,0.06388888888888888,0.06388888888888888,0,0,0,94,0,5520.0,0,0,0,0,0,5520.0
2001-11-17,0,0,11859.0,11859.0,11859.0,0,0,0,0,0,11859.0,0.13725694444444445,0.13725694444444445,0,0,0,94,0,11859.0,0,0,0,0,0,11859.0
2001-11-18,0,0,8284.0,8284.0,8284.0,0,0,0,0,0,8284.0,0.09587962962962963,0.09587962962962963,0,0,0,94,0,8284.0,0,0,0,0,0,8284.0
2001-11-19,0,0,11984.999999999998,11984.999999999998,11984.999999999998,0,0,0,0,0,11984.999999999998,0.13871527777777776,0.13871527777777776,0,0,0,94,0,11984.999999999998,0,0,0,0,0,11984.999999999998
2001-11-20,0,0,8567.999999999998,8567.999999999998,8567.999999999998,0,0,0,0,0,8567.999999999998,0.09916666666666664,0.09916666666666665,0,0,0,94,0,8567.999999999998,0,0,0,0,0,8567.999999999998
2001-11-21,0,0,18292.0,18292.0,18292.0,0,0,0,0,0,18292.0,0.21171296296296296,0.21171296296296296,0,0,0,94,0,18292.0,0,0,0,0,0,18292.0
2001-11-22,0,0,28599.999999999996,28599.999999999996,28599.999999999996,0,0,0,0,0,28599.999999999996,0.3310185185185185,0.3310185185185185,0,0,0,94,0,28599.999999999996,0,0,0,0,0,28599.999999999996
2001-11-23,0,0,13332.0,13332.0,13332.0,0,0,0,0,0,13332.0,0.15430555555555556,0.15430555555555556,0,0,0,94,0,13332.0,0,0,0,0,0,13332.0
2001-11-24,0,0,15359.999999999998,15359.999999999998,15359.999999999998,0,0,0,0,0,15359.999999999998,0.17777777777777776,0.17777777777777776,0,0,0,94,0,15359.999999999998,0,0,0,0,0,15359.999999999998
2001-11-25,0,0,21904.999999999996,21904.999999999996,21904.999999999996,0,0,0,0,0,21904.999999999996,0.25353009259259257,0.25353009259259257,0,0,0,94,0,21904.999999999996,0,0,0,0,0,21904.999999999996
2001-11-26,0,0,15929.999999999998,15929.999999999998,15929.999999999998,0,0,0,0,0,15929.999999999998,0.18437499999999998,0.18437499999999998,0,0,0,94,0,15929.999999999998,0,0,0,0,0,15929.999999999998
2001-11-27,0,0,21889.0,21889.0,21889.0,0,0,0,0,0,21889.0,0.2533449074074074,0.2533449074074074,0,0,0,94,0,21889.0,0,0,0,0,0,21889.0
2001-11-28,0,0,25220.0,25220.0,25220.0,0,0,0,0,0,25220.0,0.29189814814814813,0.29189814814814813,0,0,0,94,0,25220.0,0,0,0,0,0,25220.0
2001-11-29,0,0,30780.0,30780.0,30780.0,0,0,0,0,0,30780.0,0.35625,0.35625,0,0,0,94,0,30780.0,0,0,0,0,0,30780.0
2001-11-30,0,0,11394.0,11394.0,11394.0,0,0,0,0,0,11394.0,0.131875,0.131875,0,0,0,94,0,11394.0,0,0,0,0,0,11394.0
2001-12-01,0,0,14926.0,14926.0,14926.0,0,0,0,0,0,14926.0,0.17275462962962962,0.17275462962962962,0,0,0,94,0,14926.0,0,0,0,0,0,14926.0
2001-12-02,0,0,31008.0,31008.0,31008.0,0,0,0,0,0,31008.0,0.35888888888888887,0.35888888888888887,0,0,0,94,0,31008.0,0,0,0,0,0,31008.0
2001-12-03,0,0,25068.999999999996,25068.999999999996,25068.999999999996,0,0,0,0,0,25068.999999999996,0.29015046296296293,0.29015046296296293,0,0,0,94,0,25068.999999999996,0,0,0,0,0,25068.999999999996
2001-12-04,0,0,24989.999999999996,24989.999999999996,24989.999999999996,0,0,0,0,0,24989.999999999996,0.2892361111111111,0.2892361111111111,0,0,0,94,0,24989.999999999996,0,0,0,0,0,24989.999999999996
2001-12-05,0,0,29913.0,29913.0,29913.0,0,0,0,0,0,29913.0,0.3462152777777778,0.3462152777777778,0,0,0,94,0,29913.0,0,0,0,0,0,29913.0
2001-12-06,0,0,34060.0,34060.0,34060.0,0,0,0,0,0,34060.0,0.394212962962963,0.394212962962963,0,0,0,94,0,34060.0,0,0,0,0,0,34060.0
2001-12-07,0,0,45443.99999999999,45443.99999999999,45443.99999999999,0,0,0,0,0,45443.99999999999,0.5259722222222222,0.5259722222222222,0,0,0,94,0,45443.99999999999,0,0,0,0,0,45443.99999999999
2001-12-08,0,0,42408.0,42408.0,42408.0,0,0,0,0,0,42408.0,0.49083333333333334,0.49083333333333334,0,0,0,94,0,42408.0,0,0,0,0,0,42408.0
2001-12-09,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2001-12-10,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2001-12-11,0,0,78200.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9050925925925926,0.9050925925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-12-12,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-12-13,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2001-12-14,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2001-12-15,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
2001-12-16,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
2001-12-17,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2001-12-18,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2001-12-19,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-12-20,0,0,63825.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7387152777777778,0.7387152777777778,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-12-21,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-12-22,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2001-12-23,0,0,15525.0,15525.0,15525.0,0,0,0,0,0,15525.0,0.1796875,0.1796875,0,0,0,94,0,15525.0,0,0,0,0,0,15525.0
2001-12-24,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2001-12-25,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2001-12-26,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2001-12-27,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2001-12-28,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2001-12-29,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2001-12-30,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2001-12-31,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2002-01-01,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2002-01-02,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2002-01-03,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2002-01-04,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2002-01-05,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2002-01-06,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2002-01-07,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2002-01-08,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2002-01-09,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2002-01-10,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2002-01-11,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2002-01-12,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2002-01-13,0,0,62675.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7254050925925926,0.7254050925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-01-14,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2002-01-15,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2002-01-16,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-01-17,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2002-01-18,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2002-01-19,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2002-01-20,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2002-01-21,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2002-01-22,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-01-23,0,0,71875.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8318865740740741,0.8318865740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-01-24,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-01-25,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2002-01-26,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2002-01-27,0,0,22999.999999999996,22999.999999999996,22999.999999999996,0,0,0,0,0,22999.999999999996,0.26620370370370366,0.26620370370370366,0,0,0,94,0,22999.999999999996,0,0,0,0,0,22999.999999999996
2002-01-28,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
2002-01-29,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2002-01-30,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2002-01-31,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2002-02-01,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2002-02-02,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
2002-02-03,0,0,38525.0,38525.0,38525.0,0,0,0,0,0,38525.0,0.4458912037037037,0.44589120370370366,0,0,0,94,0,38525.0,0,0,0,0,0,38525.0
2002-02-04,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-02-05,0,0,67275.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7786458333333334,0.7786458333333334,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-02-06,0,0,79349.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.9184027777777776,0.9184027777777777,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-02-07,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2002-02-08,0,0,45200.0,45200.0,45200.0,0,0,0,0,0,45200.0,0.5231481481481481,0.5231481481481481,0,0,0,94,0,45200.0,0,0,0,0,0,45200.0
2002-02-09,0,0,50505.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5845486111111111,0.5845486111111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-02-10,0,0,35970.0,35970.0,35970.0,0,0,0,0,0,35970.0,0.41631944444444446,0.4163194444444444,0,0,0,94,0,35970.0,0,0,0,0,0,35970.0
2002-02-11,0,0,51360.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5944444444444444,0.5944444444444444,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-02-12,0,0,48299.99999999999,48299.99999999999,48299.99999999999,0,0,0,0,0,48299.99999999999,0.5590277777777777,0.5590277777777777,0,0,0,94,0,48299.99999999999,0,0,0,0,0,48299.99999999999
2002-02-13,0,0,42229.99999999999,42229.99999999999,42229.99999999999,0,0,0,0,0,42229.99999999999,0.48877314814814804,0.4887731481481481,0,0,0,94,0,42229.99999999999,0,0,0,0,0,42229.99999999999
2002-02-14,0,0,51004.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5903356481481481,0.5903356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-02-15,0,0,44055.0,44055.0,44055.0,0,0,0,0,0,44055.0,0.5098958333333333,0.5098958333333333,0,0,0,94,0,44055.0,0,0,0,0,0,44055.0
2002-02-16,0,0,43164.99999999999,43164.99999999999,43164.99999999999,0,0,0,0,0,43164.99999999999,0.4995949074074073,0.49959490740740736,0,0,0,94,0,43164.99999999999,0,0,0,0,0,43164.99999999999
2002-02-17,0,0,31350.0,31350.0,31350.0,0,0,0,0,0,31350.0,0.3628472222222222,0.3628472222222222,0,0,0,94,0,31350.0,0,0,0,0,0,31350.0
2002-02-18,0,0,44639.99999999999,44639.99999999999,44639.99999999999,0,0,0,0,0,44639.99999999999,0.5166666666666666,0.5166666666666666,0,0,0,94,0,44639.99999999999,0,0,0,0,0,44639.99999999999
2002-02-19,0,0,19110.0,19110.0,19110.0,0,0,0,0,0,19110.0,0.22118055555555555,0.22118055555555555,0,0,0,94,0,19110.0,0,0,0,0,0,19110.0
2002-02-20,0,0,32484.999999999996,32484.999999999996,32484.999999999996,0,0,0,0,0,32484.999999999996,0.37598379629629625,0.37598379629629625,0,0,0,94,0,32484.999999999996,0,0,0,0,0,32484.999999999996
2002-02-21,0,0,35670.0,35670.0,35670.0,0,0,0,0,0,35670.0,0.4128472222222222,0.4128472222222222,0,0,0,94,0,35670.0,0,0,0,0,0,35670.0
2002-02-22,0,0,14874.999999999998,14874.999999999998,14874.999999999998,0,0,0,0,0,14874.999999999998,0.17216435185185183,0.17216435185185183,0,0,0,94,0,14874.999999999998,0,0,0,0,0,14874.999999999998
2002-02-23,0,0,21579.999999999996,21579.999999999996,21579.999999999996,0,0,0,0,0,21579.999999999996,0.24976851851851847,0.24976851851851847,0,0,0,94,0,21579.999999999996,0,0,0,0,0,21579.999999999996
2002-02-24,0,0,22679.999999999996,22679.999999999996,22679.999999999996,0,0,0,0,0,22679.999999999996,0.26249999999999996,0.26249999999999996,0,0,0,94,0,22679.999999999996,0,0,0,0,0,22679.999999999996
2002-02-25,0,0,13035.0,13035.0,13035.0,0,0,0,0,0,13035.0,0.15086805555555555,0.15086805555555555,0,0,0,94,0,13035.0,0,0,0,0,0,13035.0
2002-02-26,0,0,22715.0,22715.0,22715.0,0,0,0,0,0,22715.0,0.2629050925925926,0.2629050925925926,0,0,0,94,0,22715.0,0,0,0,0,0,22715.0
2002-02-27,0,0,23625.0,23625.0,23625.0,0,0,0,0,0,23625.0,0.2734375,0.2734375,0,0,0,94,0,23625.0,0,0,0,0,0,23625.0
2002-02-28,0,0,25549.999999999996,25549.999999999996,25549.999999999996,0,0,0,0,0,25549.999999999996,0.29571759259259256,0.29571759259259256,0,0,0,94,0,25549.999999999996,0,0,0,0,0,25549.999999999996
2002-03-01,0,0,20945.0,20945.0,20945.0,0,0,0,0,0,20945.0,0.24241898148148147,0.24241898148148147,0,0,0,94,0,20945.0,0,0,0,0,0,20945.0
2002-03-02,0,0,16905.0,16905.0,16905.0,0,0,0,0,0,16905.0,0.19565972222222222,0.19565972222222222,0,0,0,94,0,16905.0,0,0,0,0,0,16905.0
2002-03-03,0,0,18760.0,18760.0,18760.0,0,0,0,0,0,18760.0,0.21712962962962962,0.21712962962962964,0,0,0,94,0,18760.0,0,0,0,0,0,18760.0
2002-03-04,0,0,24374.999999999996,24374.999999999996,24374.999999999996,0,0,0,0,0,24374.999999999996,0.2821180555555555,0.2821180555555555,0,0,0,94,0,24374.999999999996,0,0,0,0,0,24374.999999999996
2002-03-05,0,0,20789.999999999996,20789.999999999996,20789.999999999996,0,0,0,0,0,20789.999999999996,0.24062499999999995,0.24062499999999998,0,0,0,94,0,20789.999999999996,0,0,0,0,0,20789.999999999996
2002-03-06,0,0,19520.0,19520.0,19520.0,0,0,0,0,0,19520.0,0.22592592592592592,0.22592592592592592,0,0,0,94,0,19520.0,0,0,0,0,0,19520.0
2002-03-07,0,0,15929.999999999998,15929.999999999998,15929.999999999998,0,0,0,0,0,15929.999999999998,0.18437499999999998,0.18437499999999998,0,0,0,94,0,15929.999999999998,0,0,0,0,0,15929.999999999998
2002-03-08,0,0,16815.0,16815.0,16815.0,0,0,0,0,0,16815.0,0.19461805555555556,0.19461805555555556,0,0,0,94,0,16815.0,0,0,0,0,0,16815.0
2002-03-09,0,0,19249.999999999996,19249.999999999996,19249.999999999996,0,0,0,0,0,19249.999999999996,0.22280092592592587,0.2228009259259259,0,0,0,94,0,19249.999999999996,0,0,0,0,0,19249.999999999996
2002-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2002-10-25,0,0,7800.0,7800.0,7800.0,0,0,0,0,0,7800.0,0.09027777777777778,0.09027777777777778,0,0,0,94,0,7800.0,0,0,0,0,0,7800.0
2002-10-26,0,0,9000.0,9000.0,9000.0,0,0,0,0,0,9000.0,0.10416666666666667,0.10416666666666666,0,0,0,94,0,9000.0,0,0,0,0,0,9000.0
2002-10-27,0,0,13650.0,13650.0,13650.0,0,0,0,0,0,13650.0,0.1579861111111111,0.1579861111111111,0,0,0,94,0,13650.0,0,0,0,0,0,13650.0
2002-10-28,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2002-10-29,0,0,5400.0,5400.0,5400.0,0,0,0,0,0,5400.0,0.0625,0.0625,0,0,0,94,0,5400.0,0,0,0,0,0,5400.0
2002-10-30,0,0,9300.0,9300.0,9300.0,0,0,0,0,0,9300.0,0.1076388888888889,0.1076388888888889,0,0,0,94,0,9300.0,0,0,0,0,0,9300.0
2002-10-31,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2002-11-01,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2002-11-02,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2002-11-03,0,0,11249.999999999998,11249.999999999998,11249.999999999998,0,0,0,0,0,11249.999999999998,0.13020833333333331,0.13020833333333331,0,0,0,94,0,11249.999999999998,0,0,0,0,0,11249.999999999998
2002-11-04,0,0,11849.999999999998,11849.999999999998,11849.999999999998,0,0,0,0,0,11849.999999999998,0.13715277777777776,0.13715277777777776,0,0,0,94,0,11849.999999999998,0,0,0,0,0,11849.999999999998
2002-11-05,0,0,9000.0,9000.0,9000.0,0,0,0,0,0,9000.0,0.10416666666666667,0.10416666666666666,0,0,0,94,0,9000.0,0,0,0,0,0,9000.0
2002-11-06,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2002-11-07,0,0,9000.0,9000.0,9000.0,0,0,0,0,0,9000.0,0.10416666666666667,0.10416666666666666,0,0,0,94,0,9000.0,0,0,0,0,0,9000.0
2002-11-08,0,0,9300.0,9300.0,9300.0,0,0,0,0,0,9300.0,0.1076388888888889,0.1076388888888889,0,0,0,94,0,9300.0,0,0,0,0,0,9300.0
2002-11-09,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2002-11-10,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2002-11-11,0,0,15000.0,15000.0,15000.0,0,0,0,0,0,15000.0,0.1736111111111111,0.1736111111111111,0,0,0,94,0,15000.0,0,0,0,0,0,15000.0
2002-11-12,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2002-11-13,0,0,2700.0,2700.0,2700.0,0,0,0,0,0,2700.0,0.03125,0.03125,0,0,0,94,0,2700.0,0,0,0,0,0,2700.0
2002-11-14,0,0,2850.0,2850.0,2850.0,0,0,0,0,0,2850.0,0.03298611111111111,0.03298611111111111,0,0,0,94,0,2850.0,0,0,0,0,0,2850.0
2002-11-15,0,0,9519.0,9519.0,9519.0,0,0,0,0,0,9519.0,0.11017361111111111,0.11017361111111111,0,0,0,94,0,9519.0,0,0,0,0,0,9519.0
2002-11-16,0,0,11040.0,11040.0,11040.0,0,0,0,0,0,11040.0,0.12777777777777777,0.12777777777777777,0,0,0,94,0,11040.0,0,0,0,0,0,11040.0
2002-11-17,0,0,13065.0,13065.0,13065.0,0,0,0,0,0,13065.0,0.15121527777777777,0.15121527777777777,0,0,0,94,0,13065.0,0,0,0,0,0,13065.0
2002-11-18,0,0,14169.999999999998,14169.999999999998,14169.999999999998,0,0,0,0,0,14169.999999999998,0.1640046296296296,0.1640046296296296,0,0,0,94,0,14169.999999999998,0,0,0,0,0,14169.999999999998
2002-11-19,0,0,11984.999999999998,11984.999999999998,11984.999999999998,0,0,0,0,0,11984.999999999998,0.13871527777777776,0.13871527777777776,0,0,0,94,0,11984.999999999998,0,0,0,0,0,11984.999999999998
2002-11-20,0,0,12852.0,12852.0,12852.0,0,0,0,0,0,12852.0,0.14875,0.14875,0,0,0,94,0,12852.0,0,0,0,0,0,12852.0
2002-11-21,0,0,15871.0,15871.0,15871.0,0,0,0,0,0,15871.0,0.18369212962962964,0.18369212962962964,0,0,0,94,0,15871.0,0,0,0,0,0,15871.0
2002-11-22,0,0,30315.999999999996,30315.999999999996,30315.999999999996,0,0,0,0,0,30315.999999999996,0.3508796296296296,0.3508796296296296,0,0,0,94,0,30315.999999999996,0,0,0,0,0,30315.999999999996
2002-11-23,0,0,18179.999999999996,18179.999999999996,18179.999999999996,0,0,0,0,0,18179.999999999996,0.2104166666666666,0.21041666666666664,0,0,0,94,0,18179.999999999996,0,0,0,0,0,18179.999999999996
2002-11-24,0,0,14079.999999999998,14079.999999999998,14079.999999999998,0,0,0,0,0,14079.999999999998,0.16296296296296295,0.16296296296296295,0,0,0,94,0,14079.999999999998,0,0,0,0,0,14079.999999999998
2002-11-25,0,0,21904.999999999996,21904.999999999996,21904.999999999996,0,0,0,0,0,21904.999999999996,0.25353009259259257,0.25353009259259257,0,0,0,94,0,21904.999999999996,0,0,0,0,0,21904.999999999996
2002-11-26,0,0,21239.999999999996,21239.999999999996,21239.999999999996,0,0,0,0,0,21239.999999999996,0.2458333333333333,0.2458333333333333,0,0,0,94,0,21239.999999999996,0,0,0,0,0,21239.999999999996
2002-11-27,0,0,22631.0,22631.0,22631.0,0,0,0,0,0,22631.0,0.2619328703703704,0.2619328703703704,0,0,0,94,0,22631.0,0,0,0,0,0,22631.0
2002-11-28,0,0,28711.999999999996,28711.999999999996,28711.999999999996,0,0,0,0,0,28711.999999999996,0.3323148148148148,0.3323148148148148,0,0,0,94,0,28711.999999999996,0,0,0,0,0,28711.999999999996
2002-11-29,0,0,20655.0,20655.0,20655.0,0,0,0,0,0,20655.0,0.2390625,0.2390625,0,0,0,94,0,20655.0,0,0,0,0,0,20655.0
2002-11-30,0,0,39246.0,39246.0,39246.0,0,0,0,0,0,39246.0,0.4542361111111111,0.4542361111111111,0,0,0,94,0,39246.0,0,0,0,0,0,39246.0
2002-12-01,0,0,32924.99999999999,32924.99999999999,32924.99999999999,0,0,0,0,0,32924.99999999999,0.3810763888888888,0.38107638888888884,0,0,0,94,0,32924.99999999999,0,0,0,0,0,32924.99999999999
2002-12-02,0,0,27815.999999999996,27815.999999999996,27815.999999999996,0,0,0,0,0,27815.999999999996,0.3219444444444444,0.3219444444444444,0,0,0,94,0,27815.999999999996,0,0,0,0,0,27815.999999999996
2002-12-03,0,0,22704.0,22704.0,22704.0,0,0,0,0,0,22704.0,0.2627777777777778,0.2627777777777778,0,0,0,94,0,22704.0,0,0,0,0,0,22704.0
2002-12-04,0,0,36260.0,36260.0,36260.0,0,0,0,0,0,36260.0,0.41967592592592595,0.4196759259259259,0,0,0,94,0,36260.0,0,0,0,0,0,36260.0
2002-12-05,0,0,45122.99999999999,45122.99999999999,45122.99999999999,0,0,0,0,0,45122.99999999999,0.5222569444444444,0.5222569444444444,0,0,0,94,0,45122.99999999999,0,0,0,0,0,45122.99999999999
2002-12-06,0,0,46636.0,46636.0,46636.0,0,0,0,0,0,46636.0,0.5397685185185185,0.5397685185185185,0,0,0,94,0,46636.0,0,0,0,0,0,46636.0
2002-12-07,0,0,70330.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8140046296296296,0.8140046296296296,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-08,0,0,53010.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6135416666666667,0.6135416666666667,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-09,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2002-12-10,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2002-12-11,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2002-12-12,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2002-12-13,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-14,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-15,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-16,0,0,76474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8851273148148147,0.8851273148148147,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-17,0,0,79924.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.9250578703703702,0.9250578703703702,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-18,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2002-12-19,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2002-12-20,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2002-12-21,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2002-12-22,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-23,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-24,0,0,63249.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7320601851851851,0.7320601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-25,0,0,67849.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7853009259259257,0.7853009259259258,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-26,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2002-12-27,0,0,70724.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8185763888888887,0.8185763888888887,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-28,0,0,59224.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.685474537037037,0.685474537037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-29,0,0,62100.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.71875,0.71875,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-30,0,0,70724.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8185763888888887,0.8185763888888887,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2002-12-31,0,0,71875.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8318865740740741,0.8318865740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-01,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2003-01-02,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2003-01-03,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-04,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2003-01-05,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2003-01-06,0,0,59224.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.685474537037037,0.685474537037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-07,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2003-01-08,0,0,76474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8851273148148147,0.8851273148148147,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-09,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2003-01-10,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-11,0,0,47150.0,47150.0,47150.0,0,0,0,0,0,47150.0,0.5457175925925926,0.5457175925925926,0,0,0,94,0,47150.0,0,0,0,0,0,47150.0
2003-01-12,0,0,64400.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7453703703703703,0.7453703703703703,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-13,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2003-01-14,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-15,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2003-01-16,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2003-01-17,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2003-01-18,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2003-01-19,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2003-01-20,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2003-01-21,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2003-01-22,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-23,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2003-01-24,0,0,81650.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9450231481481481,0.9450231481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-25,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2003-01-26,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2003-01-27,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2003-01-28,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-29,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-30,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-01-31,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2003-02-01,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2003-02-02,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
2003-02-03,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2003-02-04,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-02-05,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2003-02-06,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2003-02-07,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2003-02-08,0,0,29945.0,29945.0,29945.0,0,0,0,0,0,29945.0,0.34658564814814813,0.34658564814814813,0,0,0,94,0,29945.0,0,0,0,0,0,29945.0
2003-02-09,0,0,36630.0,36630.0,36630.0,0,0,0,0,0,36630.0,0.4239583333333333,0.4239583333333333,0,0,0,94,0,36630.0,0,0,0,0,0,36630.0
2003-02-10,0,0,32155.0,32155.0,32155.0,0,0,0,0,0,32155.0,0.37216435185185187,0.37216435185185187,0,0,0,94,0,32155.0,0,0,0,0,0,32155.0
2003-02-11,0,0,34240.0,34240.0,34240.0,0,0,0,0,0,34240.0,0.3962962962962963,0.3962962962962963,0,0,0,94,0,34240.0,0,0,0,0,0,34240.0
2003-02-12,0,0,36750.0,36750.0,36750.0,0,0,0,0,0,36750.0,0.4253472222222222,0.4253472222222222,0,0,0,94,0,36750.0,0,0,0,0,0,36750.0
2003-02-13,0,0,47380.0,47380.0,47380.0,0,0,0,0,0,47380.0,0.5483796296296296,0.5483796296296296,0,0,0,94,0,47380.0,0,0,0,0,0,47380.0
2003-02-14,0,0,41409.99999999999,41409.99999999999,41409.99999999999,0,0,0,0,0,41409.99999999999,0.4792824074074073,0.47928240740740735,0,0,0,94,0,41409.99999999999,0,0,0,0,0,41409.99999999999
2003-02-15,0,0,49995.0,49995.0,49995.0,0,0,0,0,0,49995.0,0.5786458333333333,0.5786458333333333,0,0,0,94,0,49995.0,0,0,0,0,0,49995.0
2003-02-16,0,0,22795.0,22795.0,22795.0,0,0,0,0,0,22795.0,0.26383101851851853,0.26383101851851853,0,0,0,94,0,22795.0,0,0,0,0,0,22795.0
2003-02-17,0,0,23275.0,23275.0,23275.0,0,0,0,0,0,23275.0,0.26938657407407407,0.26938657407407407,0,0,0,94,0,23275.0,0,0,0,0,0,23275.0
2003-02-18,0,0,32549.999999999996,32549.999999999996,32549.999999999996,0,0,0,0,0,32549.999999999996,0.37673611111111105,0.37673611111111105,0,0,0,94,0,32549.999999999996,0,0,0,0,0,32549.999999999996
2003-02-19,0,0,35034.99999999999,35034.99999999999,35034.99999999999,0,0,0,0,0,35034.99999999999,0.4054976851851851,0.40549768518518514,0,0,0,94,0,35034.99999999999,0,0,0,0,0,35034.99999999999
2003-02-20,0,0,36490.0,36490.0,36490.0,0,0,0,0,0,36490.0,0.42233796296296294,0.42233796296296294,0,0,0,94,0,36490.0,0,0,0,0,0,36490.0
2003-02-21,0,0,24360.0,24360.0,24360.0,0,0,0,0,0,24360.0,0.28194444444444444,0.28194444444444444,0,0,0,94,0,24360.0,0,0,0,0,0,24360.0
2003-02-22,0,0,29749.999999999996,29749.999999999996,29749.999999999996,0,0,0,0,0,29749.999999999996,0.34432870370370366,0.34432870370370366,0,0,0,94,0,29749.999999999996,0,0,0,0,0,29749.999999999996
2003-02-23,0,0,37350.0,37350.0,37350.0,0,0,0,0,0,37350.0,0.4322916666666667,0.4322916666666667,0,0,0,94,0,37350.0,0,0,0,0,0,37350.0
2003-02-24,0,0,29564.999999999996,29564.999999999996,29564.999999999996,0,0,0,0,0,29564.999999999996,0.3421875,0.3421875,0,0,0,94,0,29564.999999999996,0,0,0,0,0,29564.999999999996
2003-02-25,0,0,50165.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5806134259259259,0.5806134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-02-26,0,0,32725.0,32725.0,32725.0,0,0,0,0,0,32725.0,0.37876157407407407,0.37876157407407407,0,0,0,94,0,32725.0,0,0,0,0,0,32725.0
2003-02-27,0,0,14250.0,14250.0,14250.0,0,0,0,0,0,14250.0,0.16493055555555555,0.16493055555555555,0,0,0,94,0,14250.0,0,0,0,0,0,14250.0
2003-02-28,0,0,28470.0,28470.0,28470.0,0,0,0,0,0,28470.0,0.3295138888888889,0.3295138888888889,0,0,0,94,0,28470.0,0,0,0,0,0,28470.0
2003-03-01,0,0,29109.999999999996,29109.999999999996,29109.999999999996,0,0,0,0,0,29109.999999999996,0.33692129629629625,0.33692129629629625,0,0,0,94,0,29109.999999999996,0,0,0,0,0,29109.999999999996
2003-03-02,0,0,28289.999999999996,28289.999999999996,28289.999999999996,0,0,0,0,0,28289.999999999996,0.3274305555555555,0.3274305555555555,0,0,0,94,0,28289.999999999996,0,0,0,0,0,28289.999999999996
2003-03-03,0,0,25795.0,25795.0,25795.0,0,0,0,0,0,25795.0,0.29855324074074074,0.29855324074074074,0,0,0,94,0,25795.0,0,0,0,0,0,25795.0
2003-03-04,0,0,26649.999999999996,26649.999999999996,26649.999999999996,0,0,0,0,0,26649.999999999996,0.308449074074074,0.308449074074074,0,0,0,94,0,26649.999999999996,0,0,0,0,0,26649.999999999996
2003-03-05,0,0,28035.0,28035.0,28035.0,0,0,0,0,0,28035.0,0.32447916666666665,0.32447916666666665,0,0,0,94,0,28035.0,0,0,0,0,0,28035.0
2003-03-06,0,0,23485.0,23485.0,23485.0,0,0,0,0,0,23485.0,0.2718171296296296,0.2718171296296296,0,0,0,94,0,23485.0,0,0,0,0,0,23485.0
2003-03-07,0,0,26254.999999999996,26254.999999999996,26254.999999999996,0,0,0,0,0,26254.999999999996,0.3038773148148148,0.3038773148148148,0,0,0,94,0,26254.999999999996,0,0,0,0,0,26254.999999999996
2003-03-08,0,0,28785.0,28785.0,28785.0,0,0,0,0,0,28785.0,0.33315972222222223,0.33315972222222223,0,0,0,94,0,28785.0,0,0,0,0,0,28785.0
2003-03-09,0,0,21175.0,21175.0,21175.0,0,0,0,0,0,21175.0,0.24508101851851852,0.24508101851851852,0,0,0,94,0,21175.0,0,0,0,0,0,21175.0
2003-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2003-10-25,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2003-10-26,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2003-10-27,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2003-10-28,0,0,9749.999999999998,9749.999999999998,9749.999999999998,0,0,0,0,0,9749.999999999998,0.1128472222222222,0.11284722222222221,0,0,0,94,0,9749.999999999998,0,0,0,0,0,9749.999999999998
2003-10-29,0,0,7800.0,7800.0,7800.0,0,0,0,0,0,7800.0,0.09027777777777778,0.09027777777777778,0,0,0,94,0,7800.0,0,0,0,0,0,7800.0
2003-10-30,0,0,14400.0,14400.0,14400.0,0,0,0,0,0,14400.0,0.16666666666666666,0.16666666666666666,0,0,0,94,0,14400.0,0,0,0,0,0,14400.0
2003-10-31,0,0,3299.9999999999995,3299.9999999999995,3299.9999999999995,0,0,0,0,0,3299.9999999999995,0.03819444444444444,0.03819444444444444,0,0,0,94,0,3299.9999999999995,0,0,0,0,0,3299.9999999999995
2003-11-01,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2003-11-02,0,0,150.0,150.0,150.0,0,0,0,0,0,150.0,0.001736111111111111,0.001736111111111111,0,0,0,94,0,150.0,0,0,0,0,0,150.0
2003-11-03,0,0,3000.0,3000.0,3000.0,0,0,0,0,0,3000.0,0.034722222222222224,0.034722222222222224,0,0,0,94,0,3000.0,0,0,0,0,0,3000.0
2003-11-04,0,0,4950.0,4950.0,4950.0,0,0,0,0,0,4950.0,0.057291666666666664,0.057291666666666664,0,0,0,94,0,4950.0,0,0,0,0,0,4950.0
2003-11-05,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2003-11-06,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2003-11-07,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2003-11-08,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2003-11-09,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2003-11-10,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
2003-11-11,0,0,8850.0,8850.0,8850.0,0,0,0,0,0,8850.0,0.10243055555555555,0.10243055555555555,0,0,0,94,0,8850.0,0,0,0,0,0,8850.0
2003-11-12,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2003-11-13,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2003-11-14,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2003-11-15,0,0,6012.0,6012.0,6012.0,0,0,0,0,0,6012.0,0.06958333333333333,0.06958333333333333,0,0,0,94,0,6012.0,0,0,0,0,0,6012.0
2003-11-16,0,0,5152.0,5152.0,5152.0,0,0,0,0,0,5152.0,0.05962962962962963,0.05962962962962963,0,0,0,94,0,5152.0,0,0,0,0,0,5152.0
2003-11-17,0,0,6030.0,6030.0,6030.0,0,0,0,0,0,6030.0,0.06979166666666667,0.06979166666666667,0,0,0,94,0,6030.0,0,0,0,0,0,6030.0
2003-11-18,0,0,10682.0,10682.0,10682.0,0,0,0,0,0,10682.0,0.12363425925925926,0.12363425925925926,0,0,0,94,0,10682.0,0,0,0,0,0,10682.0
2003-11-19,0,0,21855.0,21855.0,21855.0,0,0,0,0,0,21855.0,0.2529513888888889,0.2529513888888889,0,0,0,94,0,21855.0,0,0,0,0,0,21855.0
2003-11-20,0,0,13355.999999999998,13355.999999999998,13355.999999999998,0,0,0,0,0,13355.999999999998,0.15458333333333332,0.15458333333333332,0,0,0,94,0,13355.999999999998,0,0,0,0,0,13355.999999999998
2003-11-21,0,0,13718.999999999998,13718.999999999998,13718.999999999998,0,0,0,0,0,13718.999999999998,0.1587847222222222,0.1587847222222222,0,0,0,94,0,13718.999999999998,0,0,0,0,0,13718.999999999998
2003-11-22,0,0,11726.0,11726.0,11726.0,0,0,0,0,0,11726.0,0.13571759259259258,0.13571759259259258,0,0,0,94,0,11726.0,0,0,0,0,0,11726.0
2003-11-23,0,0,20603.999999999996,20603.999999999996,20603.999999999996,0,0,0,0,0,20603.999999999996,0.23847222222222217,0.2384722222222222,0,0,0,94,0,20603.999999999996,0,0,0,0,0,20603.999999999996
2003-11-24,0,0,15359.999999999998,15359.999999999998,15359.999999999998,0,0,0,0,0,15359.999999999998,0.17777777777777776,0.17777777777777776,0,0,0,94,0,15359.999999999998,0,0,0,0,0,15359.999999999998
2003-11-25,0,0,19883.0,19883.0,19883.0,0,0,0,0,0,19883.0,0.23012731481481483,0.2301273148148148,0,0,0,94,0,19883.0,0,0,0,0,0,19883.0
2003-11-26,0,0,19115.999999999996,19115.999999999996,19115.999999999996,0,0,0,0,0,19115.999999999996,0.22124999999999995,0.22124999999999997,0,0,0,94,0,19115.999999999996,0,0,0,0,0,19115.999999999996
2003-11-27,0,0,26711.999999999996,26711.999999999996,26711.999999999996,0,0,0,0,0,26711.999999999996,0.30916666666666665,0.30916666666666665,0,0,0,94,0,26711.999999999996,0,0,0,0,0,26711.999999999996
2003-11-28,0,0,27935.999999999996,27935.999999999996,27935.999999999996,0,0,0,0,0,27935.999999999996,0.3233333333333333,0.3233333333333333,0,0,0,94,0,27935.999999999996,0,0,0,0,0,27935.999999999996
2003-11-29,0,0,34020.0,34020.0,34020.0,0,0,0,0,0,34020.0,0.39375,0.39375,0,0,0,94,0,34020.0,0,0,0,0,0,34020.0
2003-11-30,0,0,20678.0,20678.0,20678.0,0,0,0,0,0,20678.0,0.2393287037037037,0.2393287037037037,0,0,0,94,0,20678.0,0,0,0,0,0,20678.0
2003-12-01,0,0,18437.999999999996,18437.999999999996,18437.999999999996,0,0,0,0,0,18437.999999999996,0.21340277777777775,0.21340277777777775,0,0,0,94,0,18437.999999999996,0,0,0,0,0,18437.999999999996
2003-12-02,0,0,38760.0,38760.0,38760.0,0,0,0,0,0,38760.0,0.4486111111111111,0.44861111111111107,0,0,0,94,0,38760.0,0,0,0,0,0,38760.0
2003-12-03,0,0,32164.0,32164.0,32164.0,0,0,0,0,0,32164.0,0.3722685185185185,0.3722685185185185,0,0,0,94,0,32164.0,0,0,0,0,0,32164.0
2003-12-04,0,0,29399.999999999996,29399.999999999996,29399.999999999996,0,0,0,0,0,29399.999999999996,0.34027777777777773,0.34027777777777773,0,0,0,94,0,29399.999999999996,0,0,0,0,0,29399.999999999996
2003-12-05,0,0,32954.99999999999,32954.99999999999,32954.99999999999,0,0,0,0,0,32954.99999999999,0.381423611111111,0.38142361111111106,0,0,0,94,0,32954.99999999999,0,0,0,0,0,32954.99999999999
2003-12-06,0,0,39824.0,39824.0,39824.0,0,0,0,0,0,39824.0,0.4609259259259259,0.4609259259259259,0,0,0,94,0,39824.0,0,0,0,0,0,39824.0
2003-12-07,0,0,53017.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6136342592592592,0.6136342592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-12-08,0,0,50219.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5812499999999999,0.5812499999999999,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-12-09,0,0,33924.99999999999,33924.99999999999,33924.99999999999,0,0,0,0,0,33924.99999999999,0.39265046296296285,0.3926504629629629,0,0,0,94,0,33924.99999999999,0,0,0,0,0,33924.99999999999
2003-12-10,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2003-12-11,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-12-12,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2003-12-13,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2003-12-14,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-12-15,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2003-12-16,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2003-12-17,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2003-12-18,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2003-12-19,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-12-20,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2003-12-21,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2003-12-22,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2003-12-23,0,0,22999.999999999996,22999.999999999996,22999.999999999996,0,0,0,0,0,22999.999999999996,0.26620370370370366,0.26620370370370366,0,0,0,94,0,22999.999999999996,0,0,0,0,0,22999.999999999996
2003-12-24,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2003-12-25,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2003-12-26,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-12-27,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2003-12-28,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2003-12-29,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2003-12-30,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2003-12-31,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2004-01-01,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2004-01-02,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2004-01-03,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2004-01-04,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-05,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2004-01-06,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-07,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-08,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2004-01-09,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2004-01-10,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-11,0,0,10350.0,10350.0,10350.0,0,0,0,0,0,10350.0,0.11979166666666667,0.11979166666666666,0,0,0,94,0,10350.0,0,0,0,0,0,10350.0
2004-01-12,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2004-01-13,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2004-01-14,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2004-01-15,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2004-01-16,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2004-01-17,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2004-01-18,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2004-01-19,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2004-01-20,0,0,38525.0,38525.0,38525.0,0,0,0,0,0,38525.0,0.4458912037037037,0.44589120370370366,0,0,0,94,0,38525.0,0,0,0,0,0,38525.0
2004-01-21,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-22,0,0,59799.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6921296296296295,0.6921296296296295,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-23,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-24,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2004-01-25,0,0,74750.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8651620370370371,0.865162037037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-26,0,0,47150.0,47150.0,47150.0,0,0,0,0,0,47150.0,0.5457175925925926,0.5457175925925926,0,0,0,94,0,47150.0,0,0,0,0,0,47150.0
2004-01-27,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2004-01-28,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2004-01-29,0,0,15525.0,15525.0,15525.0,0,0,0,0,0,15525.0,0.1796875,0.1796875,0,0,0,94,0,15525.0,0,0,0,0,0,15525.0
2004-01-30,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-01-31,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-02-01,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2004-02-02,0,0,35650.0,35650.0,35650.0,0,0,0,0,0,35650.0,0.41261574074074076,0.4126157407407407,0,0,0,94,0,35650.0,0,0,0,0,0,35650.0
2004-02-03,0,0,38525.0,38525.0,38525.0,0,0,0,0,0,38525.0,0.4458912037037037,0.44589120370370366,0,0,0,94,0,38525.0,0,0,0,0,0,38525.0
2004-02-04,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2004-02-05,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-02-06,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2004-02-07,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2004-02-08,0,0,44070.0,44070.0,44070.0,0,0,0,0,0,44070.0,0.5100694444444445,0.5100694444444445,0,0,0,94,0,44070.0,0,0,0,0,0,44070.0
2004-02-09,0,0,53280.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6166666666666667,0.6166666666666667,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-02-10,0,0,49049.99999999999,49049.99999999999,49049.99999999999,0,0,0,0,0,49049.99999999999,0.5677083333333333,0.5677083333333333,0,0,0,94,0,49049.99999999999,0,0,0,0,0,49049.99999999999
2004-02-11,0,0,56710.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6563657407407407,0.6563657407407407,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-02-12,0,0,39375.0,39375.0,39375.0,0,0,0,0,0,39375.0,0.4557291666666667,0.45572916666666663,0,0,0,94,0,39375.0,0,0,0,0,0,39375.0
2004-02-13,0,0,43260.0,43260.0,43260.0,0,0,0,0,0,43260.0,0.5006944444444444,0.5006944444444444,0,0,0,94,0,43260.0,0,0,0,0,0,43260.0
2004-02-14,0,0,36865.0,36865.0,36865.0,0,0,0,0,0,36865.0,0.42667824074074073,0.42667824074074073,0,0,0,94,0,36865.0,0,0,0,0,0,36865.0
2004-02-15,0,0,18809.999999999996,18809.999999999996,18809.999999999996,0,0,0,0,0,18809.999999999996,0.21770833333333328,0.2177083333333333,0,0,0,94,0,18809.999999999996,0,0,0,0,0,18809.999999999996
2004-02-16,0,0,44620.0,44620.0,44620.0,0,0,0,0,0,44620.0,0.5164351851851852,0.5164351851851852,0,0,0,94,0,44620.0,0,0,0,0,0,44620.0
2004-02-17,0,0,44649.99999999999,44649.99999999999,44649.99999999999,0,0,0,0,0,44649.99999999999,0.5167824074074073,0.5167824074074073,0,0,0,94,0,44649.99999999999,0,0,0,0,0,44649.99999999999
2004-02-18,0,0,61380.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7104166666666667,0.7104166666666667,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-02-19,0,0,20020.0,20020.0,20020.0,0,0,0,0,0,20020.0,0.23171296296296295,0.23171296296296295,0,0,0,94,0,20020.0,0,0,0,0,0,20020.0
2004-02-20,0,0,17800.0,17800.0,17800.0,0,0,0,0,0,17800.0,0.20601851851851852,0.20601851851851852,0,0,0,94,0,17800.0,0,0,0,0,0,17800.0
2004-02-21,0,0,26535.0,26535.0,26535.0,0,0,0,0,0,26535.0,0.30711805555555555,0.30711805555555555,0,0,0,94,0,26535.0,0,0,0,0,0,26535.0
2004-02-22,0,0,31875.0,31875.0,31875.0,0,0,0,0,0,31875.0,0.3689236111111111,0.3689236111111111,0,0,0,94,0,31875.0,0,0,0,0,0,31875.0
2004-02-23,0,0,29050.0,29050.0,29050.0,0,0,0,0,0,29050.0,0.33622685185185186,0.33622685185185186,0,0,0,94,0,29050.0,0,0,0,0,0,29050.0
2004-02-24,0,0,31184.999999999996,31184.999999999996,31184.999999999996,0,0,0,0,0,31184.999999999996,0.36093749999999997,0.36093749999999997,0,0,0,94,0,31184.999999999996,0,0,0,0,0,31184.999999999996
2004-02-25,0,0,30809.999999999996,30809.999999999996,30809.999999999996,0,0,0,0,0,30809.999999999996,0.3565972222222222,0.3565972222222222,0,0,0,94,0,30809.999999999996,0,0,0,0,0,30809.999999999996
2004-02-26,0,0,36189.99999999999,36189.99999999999,36189.99999999999,0,0,0,0,0,36189.99999999999,0.4188657407407407,0.4188657407407407,0,0,0,94,0,36189.99999999999,0,0,0,0,0,36189.99999999999
2004-02-27,0,0,30000.0,30000.0,30000.0,0,0,0,0,0,30000.0,0.3472222222222222,0.3472222222222222,0,0,0,94,0,30000.0,0,0,0,0,0,30000.0
2004-02-28,0,0,36134.99999999999,36134.99999999999,36134.99999999999,0,0,0,0,0,36134.99999999999,0.4182291666666666,0.4182291666666666,0,0,0,94,0,36134.99999999999,0,0,0,0,0,36134.99999999999
2004-02-29,0,0,30175.0,30175.0,30175.0,0,0,0,0,0,30175.0,0.3492476851851852,0.3492476851851852,0,0,0,94,0,30175.0,0,0,0,0,0,30175.0
2004-03-01,0,0,33465.0,33465.0,33465.0,0,0,0,0,0,33465.0,0.3873263888888889,0.38732638888888893,0,0,0,94,0,33465.0,0,0,0,0,0,33465.0
2004-03-02,0,0,29145.0,29145.0,29145.0,0,0,0,0,0,29145.0,0.3373263888888889,0.3373263888888889,0,0,0,94,0,29145.0,0,0,0,0,0,29145.0
2004-03-03,0,0,27300.0,27300.0,27300.0,0,0,0,0,0,27300.0,0.3159722222222222,0.3159722222222222,0,0,0,94,0,27300.0,0,0,0,0,0,27300.0
2004-03-04,0,0,23625.0,23625.0,23625.0,0,0,0,0,0,23625.0,0.2734375,0.2734375,0,0,0,94,0,23625.0,0,0,0,0,0,23625.0
2004-03-05,0,0,30804.999999999996,30804.999999999996,30804.999999999996,0,0,0,0,0,30804.999999999996,0.3565393518518518,0.3565393518518518,0,0,0,94,0,30804.999999999996,0,0,0,0,0,30804.999999999996
2004-03-06,0,0,24780.0,24780.0,24780.0,0,0,0,0,0,24780.0,0.28680555555555554,0.28680555555555554,0,0,0,94,0,24780.0,0,0,0,0,0,24780.0
2004-03-07,0,0,22800.0,22800.0,22800.0,0,0,0,0,0,22800.0,0.2638888888888889,0.2638888888888889,0,0,0,94,0,22800.0,0,0,0,0,0,22800.0
2004-03-08,0,0,20625.0,20625.0,20625.0,0,0,0,0,0,20625.0,0.2387152777777778,0.23871527777777776,0,0,0,94,0,20625.0,0,0,0,0,0,20625.0
2004-03-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2004-10-25,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2004-10-26,0,0,13199.999999999998,13199.999999999998,13199.999999999998,0,0,0,0,0,13199.999999999998,0.15277777777777776,0.15277777777777776,0,0,0,94,0,13199.999999999998,0,0,0,0,0,13199.999999999998
2004-10-27,0,0,4800.0,4800.0,4800.0,0,0,0,0,0,4800.0,0.05555555555555555,0.05555555555555555,0,0,0,94,0,4800.0,0,0,0,0,0,4800.0
2004-10-28,0,0,7200.0,7200.0,7200.0,0,0,0,0,0,7200.0,0.08333333333333333,0.08333333333333333,0,0,0,94,0,7200.0,0,0,0,0,0,7200.0
2004-10-29,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2004-10-30,0,0,5549.999999999999,5549.999999999999,5549.999999999999,0,0,0,0,0,5549.999999999999,0.0642361111111111,0.0642361111111111,0,0,0,94,0,5549.999999999999,0,0,0,0,0,5549.999999999999
2004-10-31,0,0,4049.9999999999995,4049.9999999999995,4049.9999999999995,0,0,0,0,0,4049.9999999999995,0.04687499999999999,0.04687499999999999,0,0,0,94,0,4049.9999999999995,0,0,0,0,0,4049.9999999999995
2004-11-01,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2004-11-02,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2004-11-03,0,0,9749.999999999998,9749.999999999998,9749.999999999998,0,0,0,0,0,9749.999999999998,0.1128472222222222,0.11284722222222221,0,0,0,94,0,9749.999999999998,0,0,0,0,0,9749.999999999998
2004-11-04,0,0,12900.0,12900.0,12900.0,0,0,0,0,0,12900.0,0.14930555555555555,0.14930555555555555,0,0,0,94,0,12900.0,0,0,0,0,0,12900.0
2004-11-05,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2004-11-06,0,0,7200.0,7200.0,7200.0,0,0,0,0,0,7200.0,0.08333333333333333,0.08333333333333333,0,0,0,94,0,7200.0,0,0,0,0,0,7200.0
2004-11-07,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2004-11-08,0,0,9449.999999999998,9449.999999999998,9449.999999999998,0,0,0,0,0,9449.999999999998,0.10937499999999997,0.10937499999999999,0,0,0,94,0,9449.999999999998,0,0,0,0,0,9449.999999999998
2004-11-09,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
2004-11-10,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2004-11-11,0,0,8099.999999999999,8099.999999999999,8099.999999999999,0,0,0,0,0,8099.999999999999,0.09374999999999999,0.09374999999999999,0,0,0,94,0,8099.999999999999,0,0,0,0,0,8099.999999999999
2004-11-12,0,0,8550.0,8550.0,8550.0,0,0,0,0,0,8550.0,0.09895833333333333,0.09895833333333334,0,0,0,94,0,8550.0,0,0,0,0,0,8550.0
2004-11-13,0,0,11700.0,11700.0,11700.0,0,0,0,0,0,11700.0,0.13541666666666666,0.13541666666666666,0,0,0,94,0,11700.0,0,0,0,0,0,11700.0
2004-11-14,0,0,3449.9999999999995,3449.9999999999995,3449.9999999999995,0,0,0,0,0,3449.9999999999995,0.03993055555555555,0.03993055555555555,0,0,0,94,0,3449.9999999999995,0,0,0,0,0,3449.9999999999995
2004-11-15,0,0,10020.0,10020.0,10020.0,0,0,0,0,0,10020.0,0.11597222222222223,0.11597222222222221,0,0,0,94,0,10020.0,0,0,0,0,0,10020.0
2004-11-16,0,0,12143.999999999998,12143.999999999998,12143.999999999998,0,0,0,0,0,12143.999999999998,0.14055555555555554,0.14055555555555554,0,0,0,94,0,12143.999999999998,0,0,0,0,0,12143.999999999998
2004-11-17,0,0,14471.999999999998,14471.999999999998,14471.999999999998,0,0,0,0,0,14471.999999999998,0.16749999999999998,0.16749999999999998,0,0,0,94,0,14471.999999999998,0,0,0,0,0,14471.999999999998
2004-11-18,0,0,6540.0,6540.0,6540.0,0,0,0,0,0,6540.0,0.07569444444444444,0.07569444444444444,0,0,0,94,0,6540.0,0,0,0,0,0,6540.0
2004-11-19,0,0,15275.0,15275.0,15275.0,0,0,0,0,0,15275.0,0.17679398148148148,0.17679398148148148,0,0,0,94,0,15275.0,0,0,0,0,0,15275.0
2004-11-20,0,0,20412.0,20412.0,20412.0,0,0,0,0,0,20412.0,0.23625,0.23625,0,0,0,94,0,20412.0,0,0,0,0,0,20412.0
2004-11-21,0,0,18829.999999999996,18829.999999999996,18829.999999999996,0,0,0,0,0,18829.999999999996,0.21793981481481478,0.21793981481481478,0,0,0,94,0,18829.999999999996,0,0,0,0,0,18829.999999999996
2004-11-22,0,0,18589.999999999996,18589.999999999996,18589.999999999996,0,0,0,0,0,18589.999999999996,0.21516203703703699,0.215162037037037,0,0,0,94,0,18589.999999999996,0,0,0,0,0,18589.999999999996
2004-11-23,0,0,20907.0,20907.0,20907.0,0,0,0,0,0,20907.0,0.24197916666666666,0.24197916666666666,0,0,0,94,0,20907.0,0,0,0,0,0,20907.0
2004-11-24,0,0,28800.0,28800.0,28800.0,0,0,0,0,0,28800.0,0.3333333333333333,0.3333333333333333,0,0,0,94,0,28800.0,0,0,0,0,0,28800.0
2004-11-25,0,0,23590.0,23590.0,23590.0,0,0,0,0,0,23590.0,0.2730324074074074,0.2730324074074074,0,0,0,94,0,23590.0,0,0,0,0,0,23590.0
2004-11-26,0,0,16283.999999999998,16283.999999999998,16283.999999999998,0,0,0,0,0,16283.999999999998,0.1884722222222222,0.1884722222222222,0,0,0,94,0,16283.999999999998,0,0,0,0,0,16283.999999999998
2004-11-27,0,0,22631.0,22631.0,22631.0,0,0,0,0,0,22631.0,0.2619328703703704,0.2619328703703704,0,0,0,94,0,22631.0,0,0,0,0,0,22631.0
2004-11-28,0,0,10864.0,10864.0,10864.0,0,0,0,0,0,10864.0,0.12574074074074074,0.12574074074074074,0,0,0,94,0,10864.0,0,0,0,0,0,10864.0
2004-11-29,0,0,19440.0,19440.0,19440.0,0,0,0,0,0,19440.0,0.225,0.225,0,0,0,94,0,19440.0,0,0,0,0,0,19440.0
2004-11-30,0,0,25320.0,25320.0,25320.0,0,0,0,0,0,25320.0,0.29305555555555557,0.29305555555555557,0,0,0,94,0,25320.0,0,0,0,0,0,25320.0
2004-12-01,0,0,25022.999999999996,25022.999999999996,25022.999999999996,0,0,0,0,0,25022.999999999996,0.28961805555555553,0.28961805555555553,0,0,0,94,0,25022.999999999996,0,0,0,0,0,25022.999999999996
2004-12-02,0,0,27360.0,27360.0,27360.0,0,0,0,0,0,27360.0,0.31666666666666665,0.31666666666666665,0,0,0,94,0,27360.0,0,0,0,0,0,27360.0
2004-12-03,0,0,35475.0,35475.0,35475.0,0,0,0,0,0,35475.0,0.4105902777777778,0.4105902777777778,0,0,0,94,0,35475.0,0,0,0,0,0,35475.0
2004-12-04,0,0,25969.999999999996,25969.999999999996,25969.999999999996,0,0,0,0,0,25969.999999999996,0.30057870370370365,0.30057870370370365,0,0,0,94,0,25969.999999999996,0,0,0,0,0,25969.999999999996
2004-12-05,0,0,38531.99999999999,38531.99999999999,38531.99999999999,0,0,0,0,0,38531.99999999999,0.44597222222222216,0.44597222222222216,0,0,0,94,0,38531.99999999999,0,0,0,0,0,38531.99999999999
2004-12-06,0,0,49780.0,49780.0,49780.0,0,0,0,0,0,49780.0,0.5761574074074074,0.5761574074074074,0,0,0,94,0,49780.0,0,0,0,0,0,49780.0
2004-12-07,0,0,35706.0,35706.0,35706.0,0,0,0,0,0,35706.0,0.4132638888888889,0.4132638888888889,0,0,0,94,0,35706.0,0,0,0,0,0,35706.0
2004-12-08,0,0,25667.999999999996,25667.999999999996,25667.999999999996,0,0,0,0,0,25667.999999999996,0.2970833333333333,0.2970833333333333,0,0,0,94,0,25667.999999999996,0,0,0,0,0,25667.999999999996
2004-12-09,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2004-12-10,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2004-12-11,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2004-12-12,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2004-12-13,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-12-14,0,0,22999.999999999996,22999.999999999996,22999.999999999996,0,0,0,0,0,22999.999999999996,0.26620370370370366,0.26620370370370366,0,0,0,94,0,22999.999999999996,0,0,0,0,0,22999.999999999996
2004-12-15,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2004-12-16,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2004-12-17,0,0,26450.0,26450.0,26450.0,0,0,0,0,0,26450.0,0.30613425925925924,0.30613425925925924,0,0,0,94,0,26450.0,0,0,0,0,0,26450.0
2004-12-18,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2004-12-19,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-12-20,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2004-12-21,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2004-12-22,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-12-23,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2004-12-24,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-12-25,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2004-12-26,0,0,73599.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8518518518518516,0.8518518518518517,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-12-27,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2004-12-28,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2004-12-29,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2004-12-30,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2004-12-31,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2005-01-01,0,0,69575.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8052662037037037,0.8052662037037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-02,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-03,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
2005-01-04,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2005-01-05,0,0,12650.0,12650.0,12650.0,0,0,0,0,0,12650.0,0.14641203703703703,0.14641203703703703,0,0,0,94,0,12650.0,0,0,0,0,0,12650.0
2005-01-06,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2005-01-07,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2005-01-08,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-09,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2005-01-10,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-11,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2005-01-12,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-13,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2005-01-14,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2005-01-15,0,0,47150.0,47150.0,47150.0,0,0,0,0,0,47150.0,0.5457175925925926,0.5457175925925926,0,0,0,94,0,47150.0,0,0,0,0,0,47150.0
2005-01-16,0,0,76474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8851273148148147,0.8851273148148147,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-17,0,0,67275.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7786458333333334,0.7786458333333334,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-18,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2005-01-19,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2005-01-20,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-21,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-22,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-23,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-24,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-25,0,0,62675.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7254050925925926,0.7254050925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-01-26,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2005-01-27,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2005-01-28,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2005-01-29,0,0,47150.0,47150.0,47150.0,0,0,0,0,0,47150.0,0.5457175925925926,0.5457175925925926,0,0,0,94,0,47150.0,0,0,0,0,0,47150.0
2005-01-30,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2005-01-31,0,0,98325.0,50000.0,50000.0,0,0,0,0,0,50000.0,1.1380208333333333,1.1380208333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-01,0,0,70150.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8119212962962963,0.8119212962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-02,0,0,12074.999999999998,12074.999999999998,12074.999999999998,0,0,0,0,0,12074.999999999998,0.13975694444444442,0.13975694444444442,0,0,0,94,0,12074.999999999998,0,0,0,0,0,12074.999999999998
2005-02-03,0,0,12650.0,12650.0,12650.0,0,0,0,0,0,12650.0,0.14641203703703703,0.14641203703703703,0,0,0,94,0,12650.0,0,0,0,0,0,12650.0
2005-02-04,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2005-02-05,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2005-02-06,0,0,60949.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7054398148148148,0.7054398148148148,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-07,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-08,0,0,41810.0,41810.0,41810.0,0,0,0,0,0,41810.0,0.48391203703703706,0.48391203703703706,0,0,0,94,0,41810.0,0,0,0,0,0,41810.0
2005-02-09,0,0,39960.0,39960.0,39960.0,0,0,0,0,0,39960.0,0.4625,0.46249999999999997,0,0,0,94,0,39960.0,0,0,0,0,0,39960.0
2005-02-10,0,0,34880.0,34880.0,34880.0,0,0,0,0,0,34880.0,0.40370370370370373,0.40370370370370373,0,0,0,94,0,34880.0,0,0,0,0,0,34880.0
2005-02-11,0,0,55640.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6439814814814815,0.6439814814814815,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-12,0,0,56700.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.65625,0.65625,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-13,0,0,54590.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6318287037037037,0.6318287037037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-14,0,0,44945.0,44945.0,44945.0,0,0,0,0,0,44945.0,0.5201967592592592,0.5201967592592592,0,0,0,94,0,44945.0,0,0,0,0,0,44945.0
2005-02-15,0,0,62864.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7276041666666666,0.7276041666666666,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-16,0,0,61594.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7129050925925925,0.7129050925925925,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-17,0,0,60325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6982060185185185,0.6982060185185185,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-02-18,0,0,18600.0,18600.0,18600.0,0,0,0,0,0,18600.0,0.2152777777777778,0.2152777777777778,0,0,0,94,0,18600.0,0,0,0,0,0,18600.0
2005-02-19,0,0,9555.0,9555.0,9555.0,0,0,0,0,0,9555.0,0.11059027777777777,0.11059027777777777,0,0,0,94,0,9555.0,0,0,0,0,0,9555.0
2005-02-20,0,0,25365.0,25365.0,25365.0,0,0,0,0,0,25365.0,0.2935763888888889,0.2935763888888889,0,0,0,94,0,25365.0,0,0,0,0,0,25365.0
2005-02-21,0,0,30449.999999999996,30449.999999999996,30449.999999999996,0,0,0,0,0,30449.999999999996,0.3524305555555555,0.3524305555555555,0,0,0,94,0,30449.999999999996,0,0,0,0,0,30449.999999999996
2005-02-22,0,0,29749.999999999996,29749.999999999996,29749.999999999996,0,0,0,0,0,29749.999999999996,0.34432870370370366,0.34432870370370366,0,0,0,94,0,29749.999999999996,0,0,0,0,0,29749.999999999996
2005-02-23,0,0,18260.0,18260.0,18260.0,0,0,0,0,0,18260.0,0.21134259259259258,0.2113425925925926,0,0,0,94,0,18260.0,0,0,0,0,0,18260.0
2005-02-24,0,0,28754.999999999996,28754.999999999996,28754.999999999996,0,0,0,0,0,28754.999999999996,0.33281249999999996,0.33281249999999996,0,0,0,94,0,28754.999999999996,0,0,0,0,0,28754.999999999996
2005-02-25,0,0,35155.0,35155.0,35155.0,0,0,0,0,0,35155.0,0.4068865740740741,0.4068865740740741,0,0,0,94,0,35155.0,0,0,0,0,0,35155.0
2005-02-26,0,0,35420.0,35420.0,35420.0,0,0,0,0,0,35420.0,0.4099537037037037,0.4099537037037037,0,0,0,94,0,35420.0,0,0,0,0,0,35420.0
2005-02-27,0,0,41625.0,41625.0,41625.0,0,0,0,0,0,41625.0,0.4817708333333333,0.4817708333333333,0,0,0,94,0,41625.0,0,0,0,0,0,41625.0
2005-02-28,0,0,36134.99999999999,36134.99999999999,36134.99999999999,0,0,0,0,0,36134.99999999999,0.4182291666666666,0.4182291666666666,0,0,0,94,0,36134.99999999999,0,0,0,0,0,36134.99999999999
2005-03-01,0,0,31594.999999999996,31594.999999999996,31594.999999999996,0,0,0,0,0,31594.999999999996,0.36568287037037034,0.36568287037037034,0,0,0,94,0,31594.999999999996,0,0,0,0,0,31594.999999999996
2005-03-02,0,0,33120.0,33120.0,33120.0,0,0,0,0,0,33120.0,0.38333333333333336,0.3833333333333333,0,0,0,94,0,33120.0,0,0,0,0,0,33120.0
2005-03-03,0,0,32494.999999999993,32494.999999999993,32494.999999999993,0,0,0,0,0,32494.999999999993,0.37609953703703697,0.37609953703703697,0,0,0,94,0,32494.999999999993,0,0,0,0,0,32494.999999999993
2005-03-04,0,0,33475.0,33475.0,33475.0,0,0,0,0,0,33475.0,0.38744212962962965,0.38744212962962965,0,0,0,94,0,33475.0,0,0,0,0,0,33475.0
2005-03-05,0,0,45045.0,45045.0,45045.0,0,0,0,0,0,45045.0,0.5213541666666667,0.5213541666666667,0,0,0,94,0,45045.0,0,0,0,0,0,45045.0
2005-03-06,0,0,21655.0,21655.0,21655.0,0,0,0,0,0,21655.0,0.2506365740740741,0.2506365740740741,0,0,0,94,0,21655.0,0,0,0,0,0,21655.0
2005-03-07,0,0,30385.0,30385.0,30385.0,0,0,0,0,0,30385.0,0.3516782407407407,0.3516782407407407,0,0,0,94,0,30385.0,0,0,0,0,0,30385.0
2005-03-08,0,0,22229.999999999996,22229.999999999996,22229.999999999996,0,0,0,0,0,22229.999999999996,0.25729166666666664,0.25729166666666664,0,0,0,94,0,22229.999999999996,0,0,0,0,0,22229.999999999996
2005-03-09,0,0,21449.999999999996,21449.999999999996,21449.999999999996,0,0,0,0,0,21449.999999999996,0.24826388888888884,0.24826388888888887,0,0,0,94,0,21449.999999999996,0,0,0,0,0,21449.999999999996
2005-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-10-25,0,0,8850.0,8850.0,8850.0,0,0,0,0,0,8850.0,0.10243055555555555,0.10243055555555555,0,0,0,94,0,8850.0,0,0,0,0,0,8850.0
2005-10-26,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2005-10-27,0,0,10350.0,10350.0,10350.0,0,0,0,0,0,10350.0,0.11979166666666667,0.11979166666666666,0,0,0,94,0,10350.0,0,0,0,0,0,10350.0
2005-10-28,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2005-10-29,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2005-10-30,0,0,5400.0,5400.0,5400.0,0,0,0,0,0,5400.0,0.0625,0.0625,0,0,0,94,0,5400.0,0,0,0,0,0,5400.0
2005-10-31,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2005-11-01,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2005-11-02,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2005-11-03,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
2005-11-04,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2005-11-05,0,0,10950.0,10950.0,10950.0,0,0,0,0,0,10950.0,0.1267361111111111,0.1267361111111111,0,0,0,94,0,10950.0,0,0,0,0,0,10950.0
2005-11-06,0,0,12150.0,12150.0,12150.0,0,0,0,0,0,12150.0,0.140625,0.140625,0,0,0,94,0,12150.0,0,0,0,0,0,12150.0
2005-11-07,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
2005-11-08,0,0,5549.999999999999,5549.999999999999,5549.999999999999,0,0,0,0,0,5549.999999999999,0.0642361111111111,0.0642361111111111,0,0,0,94,0,5549.999999999999,0,0,0,0,0,5549.999999999999
2005-11-09,0,0,10350.0,10350.0,10350.0,0,0,0,0,0,10350.0,0.11979166666666667,0.11979166666666666,0,0,0,94,0,10350.0,0,0,0,0,0,10350.0
2005-11-10,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2005-11-11,0,0,4049.9999999999995,4049.9999999999995,4049.9999999999995,0,0,0,0,0,4049.9999999999995,0.04687499999999999,0.04687499999999999,0,0,0,94,0,4049.9999999999995,0,0,0,0,0,4049.9999999999995
2005-11-12,0,0,4950.0,4950.0,4950.0,0,0,0,0,0,4950.0,0.057291666666666664,0.057291666666666664,0,0,0,94,0,4950.0,0,0,0,0,0,4950.0
2005-11-13,0,0,3600.0,3600.0,3600.0,0,0,0,0,0,3600.0,0.041666666666666664,0.041666666666666664,0,0,0,94,0,3600.0,0,0,0,0,0,3600.0
2005-11-14,0,0,7200.0,7200.0,7200.0,0,0,0,0,0,7200.0,0.08333333333333333,0.08333333333333333,0,0,0,94,0,7200.0,0,0,0,0,0,7200.0
2005-11-15,0,0,8182.999999999999,8182.999999999999,8182.999999999999,0,0,0,0,0,8182.999999999999,0.09471064814814814,0.09471064814814814,0,0,0,94,0,8182.999999999999,0,0,0,0,0,8182.999999999999
2005-11-16,0,0,11040.0,11040.0,11040.0,0,0,0,0,0,11040.0,0.12777777777777777,0.12777777777777777,0,0,0,94,0,11040.0,0,0,0,0,0,11040.0
2005-11-17,0,0,9849.0,9849.0,9849.0,0,0,0,0,0,9849.0,0.11399305555555556,0.11399305555555556,0,0,0,94,0,9849.0,0,0,0,0,0,9849.0
2005-11-18,0,0,16350.0,16350.0,16350.0,0,0,0,0,0,16350.0,0.1892361111111111,0.1892361111111111,0,0,0,94,0,16350.0,0,0,0,0,0,16350.0
2005-11-19,0,0,15275.0,15275.0,15275.0,0,0,0,0,0,15275.0,0.17679398148148148,0.17679398148148148,0,0,0,94,0,15275.0,0,0,0,0,0,15275.0
2005-11-20,0,0,16379.999999999996,16379.999999999996,16379.999999999996,0,0,0,0,0,16379.999999999996,0.1895833333333333,0.1895833333333333,0,0,0,94,0,16379.999999999996,0,0,0,0,0,16379.999999999996
2005-11-21,0,0,12374.0,12374.0,12374.0,0,0,0,0,0,12374.0,0.1432175925925926,0.1432175925925926,0,0,0,94,0,12374.0,0,0,0,0,0,12374.0
2005-11-22,0,0,15444.0,15444.0,15444.0,0,0,0,0,0,15444.0,0.17875,0.17875,0,0,0,94,0,15444.0,0,0,0,0,0,15444.0
2005-11-23,0,0,15452.999999999998,15452.999999999998,15452.999999999998,0,0,0,0,0,15452.999999999998,0.17885416666666665,0.17885416666666665,0,0,0,94,0,15452.999999999998,0,0,0,0,0,15452.999999999998
2005-11-24,0,0,13119.999999999998,13119.999999999998,13119.999999999998,0,0,0,0,0,13119.999999999998,0.15185185185185182,0.15185185185185182,0,0,0,94,0,13119.999999999998,0,0,0,0,0,13119.999999999998
2005-11-25,0,0,16513.0,16513.0,16513.0,0,0,0,0,0,16513.0,0.1911226851851852,0.1911226851851852,0,0,0,94,0,16513.0,0,0,0,0,0,16513.0
2005-11-26,0,0,15576.0,15576.0,15576.0,0,0,0,0,0,15576.0,0.1802777777777778,0.1802777777777778,0,0,0,94,0,15576.0,0,0,0,0,0,15576.0
2005-11-27,0,0,25598.999999999996,25598.999999999996,25598.999999999996,0,0,0,0,0,25598.999999999996,0.2962847222222222,0.2962847222222222,0,0,0,94,0,25598.999999999996,0,0,0,0,0,25598.999999999996
2005-11-28,0,0,14743.999999999998,14743.999999999998,14743.999999999998,0,0,0,0,0,14743.999999999998,0.17064814814814813,0.17064814814814813,0,0,0,94,0,14743.999999999998,0,0,0,0,0,14743.999999999998
2005-11-29,0,0,29159.999999999996,29159.999999999996,29159.999999999996,0,0,0,0,0,29159.999999999996,0.33749999999999997,0.33749999999999997,0,0,0,94,0,29159.999999999996,0,0,0,0,0,29159.999999999996
2005-11-30,0,0,28695.999999999996,28695.999999999996,28695.999999999996,0,0,0,0,0,28695.999999999996,0.3321296296296296,0.3321296296296296,0,0,0,94,0,28695.999999999996,0,0,0,0,0,28695.999999999996
2005-12-01,0,0,30290.999999999996,30290.999999999996,30290.999999999996,0,0,0,0,0,30290.999999999996,0.35059027777777774,0.35059027777777774,0,0,0,94,0,30290.999999999996,0,0,0,0,0,30290.999999999996
2005-12-02,0,0,31920.0,31920.0,31920.0,0,0,0,0,0,31920.0,0.36944444444444446,0.36944444444444446,0,0,0,94,0,31920.0,0,0,0,0,0,31920.0
2005-12-03,0,0,58179.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6733680555555556,0.6733680555555556,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-04,0,0,31850.0,31850.0,31850.0,0,0,0,0,0,31850.0,0.36863425925925924,0.36863425925925924,0,0,0,94,0,31850.0,0,0,0,0,0,31850.0
2005-12-05,0,0,34982.99999999999,34982.99999999999,34982.99999999999,0,0,0,0,0,34982.99999999999,0.40489583333333323,0.4048958333333333,0,0,0,94,0,34982.99999999999,0,0,0,0,0,34982.99999999999
2005-12-06,0,0,69691.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8066203703703702,0.8066203703703703,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-07,0,0,55182.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6386805555555556,0.6386805555555556,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-08,0,0,72540.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8395833333333333,0.8395833333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-09,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2005-12-10,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2005-12-11,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2005-12-12,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-13,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2005-12-14,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2005-12-15,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-16,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2005-12-17,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2005-12-18,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2005-12-19,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2005-12-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2005-12-21,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2005-12-22,0,0,63249.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7320601851851851,0.7320601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-23,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-24,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2005-12-25,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2005-12-26,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2005-12-27,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2005-12-28,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2005-12-29,0,0,18975.0,18975.0,18975.0,0,0,0,0,0,18975.0,0.21961805555555555,0.21961805555555555,0,0,0,94,0,18975.0,0,0,0,0,0,18975.0
2005-12-30,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2005-12-31,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2006-01-01,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-02,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-03,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-04,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2006-01-05,0,0,69575.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8052662037037037,0.8052662037037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-06,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-07,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-08,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2006-01-09,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-10,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-11,0,0,62675.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7254050925925926,0.7254050925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-12,0,0,58650.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6788194444444444,0.6788194444444444,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-13,0,0,61524.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7120949074074073,0.7120949074074073,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-14,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2006-01-15,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-16,0,0,54049.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6255787037037036,0.6255787037037036,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-17,0,0,20125.0,20125.0,20125.0,0,0,0,0,0,20125.0,0.23292824074074073,0.23292824074074073,0,0,0,94,0,20125.0,0,0,0,0,0,20125.0
2006-01-18,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2006-01-19,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2006-01-20,0,0,13799.999999999998,13799.999999999998,13799.999999999998,0,0,0,0,0,13799.999999999998,0.1597222222222222,0.1597222222222222,0,0,0,94,0,13799.999999999998,0,0,0,0,0,13799.999999999998
2006-01-21,0,0,21274.999999999996,21274.999999999996,21274.999999999996,0,0,0,0,0,21274.999999999996,0.24623842592592587,0.2462384259259259,0,0,0,94,0,21274.999999999996,0,0,0,0,0,21274.999999999996
2006-01-22,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2006-01-23,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2006-01-24,0,0,70150.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8119212962962963,0.8119212962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-25,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2006-01-26,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2006-01-27,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2006-01-28,0,0,83950.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9716435185185185,0.9716435185185185,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-29,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2006-01-30,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-01-31,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2006-02-01,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2006-02-02,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-02-03,0,0,35650.0,35650.0,35650.0,0,0,0,0,0,35650.0,0.41261574074074076,0.4126157407407407,0,0,0,94,0,35650.0,0,0,0,0,0,35650.0
2006-02-04,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2006-02-05,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2006-02-06,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2006-02-07,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2006-02-08,0,0,52545.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6081597222222223,0.6081597222222223,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-02-09,0,0,35520.0,35520.0,35520.0,0,0,0,0,0,35520.0,0.4111111111111111,0.41111111111111115,0,0,0,94,0,35520.0,0,0,0,0,0,35520.0
2006-02-10,0,0,33790.0,33790.0,33790.0,0,0,0,0,0,33790.0,0.39108796296296294,0.39108796296296294,0,0,0,94,0,33790.0,0,0,0,0,0,33790.0
2006-02-11,0,0,56710.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6563657407407407,0.6563657407407407,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-02-12,0,0,68775.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7960069444444444,0.7960069444444444,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-02-13,0,0,46350.0,46350.0,46350.0,0,0,0,0,0,46350.0,0.5364583333333334,0.5364583333333334,0,0,0,94,0,46350.0,0,0,0,0,0,46350.0
2006-02-14,0,0,41409.99999999999,41409.99999999999,41409.99999999999,0,0,0,0,0,41409.99999999999,0.4792824074074073,0.47928240740740735,0,0,0,94,0,41409.99999999999,0,0,0,0,0,41409.99999999999
2006-02-15,0,0,40590.0,40590.0,40590.0,0,0,0,0,0,40590.0,0.46979166666666666,0.46979166666666666,0,0,0,94,0,40590.0,0,0,0,0,0,40590.0
2006-02-16,0,0,43164.99999999999,43164.99999999999,43164.99999999999,0,0,0,0,0,43164.99999999999,0.4995949074074073,0.49959490740740736,0,0,0,94,0,43164.99999999999,0,0,0,0,0,43164.99999999999
2006-02-17,0,0,37049.99999999999,37049.99999999999,37049.99999999999,0,0,0,0,0,37049.99999999999,0.42881944444444436,0.42881944444444436,0,0,0,94,0,37049.99999999999,0,0,0,0,0,37049.99999999999
2006-02-18,0,0,13949.999999999998,13949.999999999998,13949.999999999998,0,0,0,0,0,13949.999999999998,0.16145833333333331,0.16145833333333331,0,0,0,94,0,13949.999999999998,0,0,0,0,0,13949.999999999998
2006-02-19,0,0,29120.0,29120.0,29120.0,0,0,0,0,0,29120.0,0.337037037037037,0.337037037037037,0,0,0,94,0,29120.0,0,0,0,0,0,29120.0
2006-02-20,0,0,18690.0,18690.0,18690.0,0,0,0,0,0,18690.0,0.21631944444444445,0.21631944444444445,0,0,0,94,0,18690.0,0,0,0,0,0,18690.0
2006-02-21,0,0,37845.0,37845.0,37845.0,0,0,0,0,0,37845.0,0.43802083333333336,0.4380208333333333,0,0,0,94,0,37845.0,0,0,0,0,0,37845.0
2006-02-22,0,0,29749.999999999996,29749.999999999996,29749.999999999996,0,0,0,0,0,29749.999999999996,0.34432870370370366,0.34432870370370366,0,0,0,94,0,29749.999999999996,0,0,0,0,0,29749.999999999996
2006-02-23,0,0,36935.0,36935.0,36935.0,0,0,0,0,0,36935.0,0.42748842592592595,0.42748842592592595,0,0,0,94,0,36935.0,0,0,0,0,0,36935.0
2006-02-24,0,0,25920.0,25920.0,25920.0,0,0,0,0,0,25920.0,0.3,0.3,0,0,0,94,0,25920.0,0,0,0,0,0,25920.0
2006-02-25,0,0,19749.999999999996,19749.999999999996,19749.999999999996,0,0,0,0,0,19749.999999999996,0.2285879629629629,0.22858796296296294,0,0,0,94,0,19749.999999999996,0,0,0,0,0,19749.999999999996
2006-02-26,0,0,26180.0,26180.0,26180.0,0,0,0,0,0,26180.0,0.30300925925925926,0.30300925925925926,0,0,0,94,0,26180.0,0,0,0,0,0,26180.0
2006-02-27,0,0,31500.0,31500.0,31500.0,0,0,0,0,0,31500.0,0.3645833333333333,0.3645833333333333,0,0,0,94,0,31500.0,0,0,0,0,0,31500.0
2006-02-28,0,0,25549.999999999996,25549.999999999996,25549.999999999996,0,0,0,0,0,25549.999999999996,0.29571759259259256,0.29571759259259256,0,0,0,94,0,25549.999999999996,0,0,0,0,0,25549.999999999996
2006-03-01,0,0,27689.999999999996,27689.999999999996,27689.999999999996,0,0,0,0,0,27689.999999999996,0.3204861111111111,0.3204861111111111,0,0,0,94,0,27689.999999999996,0,0,0,0,0,27689.999999999996
2006-03-02,0,0,43814.99999999999,43814.99999999999,43814.99999999999,0,0,0,0,0,43814.99999999999,0.5071180555555554,0.5071180555555554,0,0,0,94,0,43814.99999999999,0,0,0,0,0,43814.99999999999
2006-03-03,0,0,25795.0,25795.0,25795.0,0,0,0,0,0,25795.0,0.29855324074074074,0.29855324074074074,0,0,0,94,0,25795.0,0,0,0,0,0,25795.0
2006-03-04,0,0,24374.999999999996,24374.999999999996,24374.999999999996,0,0,0,0,0,24374.999999999996,0.2821180555555555,0.2821180555555555,0,0,0,94,0,24374.999999999996,0,0,0,0,0,24374.999999999996
2006-03-05,0,0,25199.999999999996,25199.999999999996,25199.999999999996,0,0,0,0,0,25199.999999999996,0.29166666666666663,0.29166666666666663,0,0,0,94,0,25199.999999999996,0,0,0,0,0,25199.999999999996
2006-03-06,0,0,21350.0,21350.0,21350.0,0,0,0,0,0,21350.0,0.24710648148148148,0.24710648148148148,0,0,0,94,0,21350.0,0,0,0,0,0,21350.0
2006-03-07,0,0,18585.0,18585.0,18585.0,0,0,0,0,0,18585.0,0.21510416666666668,0.21510416666666665,0,0,0,94,0,18585.0,0,0,0,0,0,18585.0
2006-03-08,0,0,31635.0,31635.0,31635.0,0,0,0,0,0,31635.0,0.36614583333333334,0.36614583333333334,0,0,0,94,0,31635.0,0,0,0,0,0,31635.0
2006-03-09,0,0,40700.0,40700.0,40700.0,0,0,0,0,0,40700.0,0.4710648148148148,0.4710648148148148,0,0,0,94,0,40700.0,0,0,0,0,0,40700.0
2006-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-10-25,0,0,10800.0,10800.0,10800.0,0,0,0,0,0,10800.0,0.125,0.125,0,0,0,94,0,10800.0,0,0,0,0,0,10800.0
2006-10-26,0,0,8250.0,8250.0,8250.0,0,0,0,0,0,8250.0,0.0954861111111111,0.0954861111111111,0,0,0,94,0,8250.0,0,0,0,0,0,8250.0
2006-10-27,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2006-10-28,0,0,13199.999999999998,13199.999999999998,13199.999999999998,0,0,0,0,0,13199.999999999998,0.15277777777777776,0.15277777777777776,0,0,0,94,0,13199.999999999998,0,0,0,0,0,13199.999999999998
2006-10-29,0,0,4049.9999999999995,4049.9999999999995,4049.9999999999995,0,0,0,0,0,4049.9999999999995,0.04687499999999999,0.04687499999999999,0,0,0,94,0,4049.9999999999995,0,0,0,0,0,4049.9999999999995
2006-10-30,0,0,2100.0,2100.0,2100.0,0,0,0,0,0,2100.0,0.024305555555555556,0.024305555555555556,0,0,0,94,0,2100.0,0,0,0,0,0,2100.0
2006-10-31,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
2006-11-01,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2006-11-02,0,0,4800.0,4800.0,4800.0,0,0,0,0,0,4800.0,0.05555555555555555,0.05555555555555555,0,0,0,94,0,4800.0,0,0,0,0,0,4800.0
2006-11-03,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2006-11-04,0,0,12150.0,12150.0,12150.0,0,0,0,0,0,12150.0,0.140625,0.140625,0,0,0,94,0,12150.0,0,0,0,0,0,12150.0
2006-11-05,0,0,14099.999999999998,14099.999999999998,14099.999999999998,0,0,0,0,0,14099.999999999998,0.16319444444444442,0.16319444444444442,0,0,0,94,0,14099.999999999998,0,0,0,0,0,14099.999999999998
2006-11-06,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
2006-11-07,0,0,7200.0,7200.0,7200.0,0,0,0,0,0,7200.0,0.08333333333333333,0.08333333333333333,0,0,0,94,0,7200.0,0,0,0,0,0,7200.0
2006-11-08,0,0,4349.999999999999,4349.999999999999,4349.999999999999,0,0,0,0,0,4349.999999999999,0.05034722222222221,0.05034722222222222,0,0,0,94,0,4349.999999999999,0,0,0,0,0,4349.999999999999
2006-11-09,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2006-11-10,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2006-11-11,0,0,11249.999999999998,11249.999999999998,11249.999999999998,0,0,0,0,0,11249.999999999998,0.13020833333333331,0.13020833333333331,0,0,0,94,0,11249.999999999998,0,0,0,0,0,11249.999999999998
2006-11-12,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2006-11-13,0,0,9749.999999999998,9749.999999999998,9749.999999999998,0,0,0,0,0,9749.999999999998,0.1128472222222222,0.11284722222222221,0,0,0,94,0,9749.999999999998,0,0,0,0,0,9749.999999999998
2006-11-14,0,0,14400.0,14400.0,14400.0,0,0,0,0,0,14400.0,0.16666666666666666,0.16666666666666666,0,0,0,94,0,14400.0,0,0,0,0,0,14400.0
2006-11-15,0,0,13861.0,13861.0,13861.0,0,0,0,0,0,13861.0,0.16042824074074075,0.16042824074074075,0,0,0,94,0,13861.0,0,0,0,0,0,13861.0
2006-11-16,0,0,3128.0,3128.0,3128.0,0,0,0,0,0,3128.0,0.0362037037037037,0.0362037037037037,0,0,0,94,0,3128.0,0,0,0,0,0,3128.0
2006-11-17,0,0,11457.0,11457.0,11457.0,0,0,0,0,0,11457.0,0.13260416666666666,0.13260416666666666,0,0,0,94,0,11457.0,0,0,0,0,0,11457.0
2006-11-18,0,0,14169.999999999998,14169.999999999998,14169.999999999998,0,0,0,0,0,14169.999999999998,0.1640046296296296,0.1640046296296296,0,0,0,94,0,14169.999999999998,0,0,0,0,0,14169.999999999998
2006-11-19,0,0,16449.999999999996,16449.999999999996,16449.999999999996,0,0,0,0,0,16449.999999999996,0.1903935185185185,0.1903935185185185,0,0,0,94,0,16449.999999999996,0,0,0,0,0,16449.999999999996
2006-11-20,0,0,17135.999999999996,17135.999999999996,17135.999999999996,0,0,0,0,0,17135.999999999996,0.19833333333333328,0.1983333333333333,0,0,0,94,0,17135.999999999996,0,0,0,0,0,17135.999999999996
2006-11-21,0,0,12912.0,12912.0,12912.0,0,0,0,0,0,12912.0,0.14944444444444444,0.14944444444444444,0,0,0,94,0,12912.0,0,0,0,0,0,12912.0
2006-11-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2006-11-23,0,0,7272.0,7272.0,7272.0,0,0,0,0,0,7272.0,0.08416666666666667,0.08416666666666667,0,0,0,94,0,7272.0,0,0,0,0,0,7272.0
2006-11-24,0,0,7360.0,7360.0,7360.0,0,0,0,0,0,7360.0,0.08518518518518518,0.08518518518518518,0,0,0,94,0,7360.0,0,0,0,0,0,7360.0
2006-11-25,0,0,14828.0,14828.0,14828.0,0,0,0,0,0,14828.0,0.17162037037037037,0.17162037037037037,0,0,0,94,0,14828.0,0,0,0,0,0,14828.0
2006-11-26,0,0,30090.0,30090.0,30090.0,0,0,0,0,0,30090.0,0.3482638888888889,0.3482638888888889,0,0,0,94,0,30090.0,0,0,0,0,0,30090.0
2006-11-27,0,0,14098.0,14098.0,14098.0,0,0,0,0,0,14098.0,0.1631712962962963,0.1631712962962963,0,0,0,94,0,14098.0,0,0,0,0,0,14098.0
2006-11-28,0,0,23280.0,23280.0,23280.0,0,0,0,0,0,23280.0,0.26944444444444443,0.26944444444444443,0,0,0,94,0,23280.0,0,0,0,0,0,23280.0
2006-11-29,0,0,38880.0,38880.0,38880.0,0,0,0,0,0,38880.0,0.45,0.45,0,0,0,94,0,38880.0,0,0,0,0,0,38880.0
2006-11-30,0,0,18989.999999999996,18989.999999999996,18989.999999999996,0,0,0,0,0,18989.999999999996,0.21979166666666664,0.21979166666666664,0,0,0,94,0,18989.999999999996,0,0,0,0,0,18989.999999999996
2006-12-01,0,0,29852.0,29852.0,29852.0,0,0,0,0,0,29852.0,0.34550925925925924,0.34550925925925924,0,0,0,94,0,29852.0,0,0,0,0,0,29852.0
2006-12-02,0,0,46512.0,46512.0,46512.0,0,0,0,0,0,46512.0,0.5383333333333333,0.5383333333333333,0,0,0,94,0,46512.0,0,0,0,0,0,46512.0
2006-12-03,0,0,26961.0,26961.0,26961.0,0,0,0,0,0,26961.0,0.3120486111111111,0.3120486111111111,0,0,0,94,0,26961.0,0,0,0,0,0,26961.0
2006-12-04,0,0,33810.0,33810.0,33810.0,0,0,0,0,0,33810.0,0.39131944444444444,0.39131944444444444,0,0,0,94,0,33810.0,0,0,0,0,0,33810.0
2006-12-05,0,0,31940.999999999996,31940.999999999996,31940.999999999996,0,0,0,0,0,31940.999999999996,0.36968749999999995,0.36968749999999995,0,0,0,94,0,31940.999999999996,0,0,0,0,0,31940.999999999996
2006-12-06,0,0,36156.0,36156.0,36156.0,0,0,0,0,0,36156.0,0.41847222222222225,0.4184722222222222,0,0,0,94,0,36156.0,0,0,0,0,0,36156.0
2006-12-07,0,0,71412.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8265277777777778,0.8265277777777778,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-08,0,0,28457.999999999996,28457.999999999996,28457.999999999996,0,0,0,0,0,28457.999999999996,0.329375,0.329375,0,0,0,94,0,28457.999999999996,0,0,0,0,0,28457.999999999996
2006-12-09,0,0,23575.0,23575.0,23575.0,0,0,0,0,0,23575.0,0.2728587962962963,0.2728587962962963,0,0,0,94,0,23575.0,0,0,0,0,0,23575.0
2006-12-10,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2006-12-11,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2006-12-12,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2006-12-13,0,0,78200.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9050925925925926,0.9050925925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-14,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-15,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2006-12-16,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2006-12-17,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-18,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2006-12-19,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2006-12-20,0,0,69575.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8052662037037037,0.8052662037037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-21,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-22,0,0,79349.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.9184027777777776,0.9184027777777777,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-23,0,0,92575.0,50000.0,50000.0,0,0,0,0,0,50000.0,1.0714699074074074,1.0714699074074074,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-24,0,0,18399.999999999996,18399.999999999996,18399.999999999996,0,0,0,0,0,18399.999999999996,0.2129629629629629,0.21296296296296294,0,0,0,94,0,18399.999999999996,0,0,0,0,0,18399.999999999996
2006-12-25,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
2006-12-26,0,0,56925.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6588541666666666,0.6588541666666666,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-27,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2006-12-28,0,0,59224.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.685474537037037,0.685474537037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-29,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-30,0,0,62100.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.71875,0.71875,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2006-12-31,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-01,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2007-01-02,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2007-01-03,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2007-01-04,0,0,59224.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.685474537037037,0.685474537037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-05,0,0,69000.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7986111111111112,0.798611111111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-06,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-07,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2007-01-08,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2007-01-09,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2007-01-10,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2007-01-11,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-12,0,0,59799.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6921296296296295,0.6921296296296295,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-13,0,0,59799.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6921296296296295,0.6921296296296295,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-14,0,0,65549.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7586805555555554,0.7586805555555555,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-15,0,0,63249.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7320601851851851,0.7320601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-16,0,0,67849.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7853009259259257,0.7853009259259258,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-17,0,0,71875.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8318865740740741,0.8318865740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-18,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2007-01-19,0,0,26450.0,26450.0,26450.0,0,0,0,0,0,26450.0,0.30613425925925924,0.30613425925925924,0,0,0,94,0,26450.0,0,0,0,0,0,26450.0
2007-01-20,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2007-01-21,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-22,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2007-01-23,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2007-01-24,0,0,61524.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7120949074074073,0.7120949074074073,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-25,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2007-01-26,0,0,67275.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7786458333333334,0.7786458333333334,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-27,0,0,56925.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6588541666666666,0.6588541666666666,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-28,0,0,73599.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8518518518518516,0.8518518518518517,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-29,0,0,65549.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7586805555555554,0.7586805555555555,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-01-30,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2007-01-31,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2007-02-01,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2007-02-02,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2007-02-03,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2007-02-04,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-02-05,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-02-06,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-02-07,0,0,60949.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7054398148148148,0.7054398148148148,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-02-08,0,0,41810.0,41810.0,41810.0,0,0,0,0,0,41810.0,0.48391203703703706,0.48391203703703706,0,0,0,94,0,41810.0,0,0,0,0,0,41810.0
2007-02-09,0,0,52170.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6038194444444445,0.6038194444444445,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-02-10,0,0,49594.99999999999,49594.99999999999,49594.99999999999,0,0,0,0,0,49594.99999999999,0.5740162037037037,0.5740162037037037,0,0,0,94,0,49594.99999999999,0,0,0,0,0,49594.99999999999
2007-02-11,0,0,28889.999999999996,28889.999999999996,28889.999999999996,0,0,0,0,0,28889.999999999996,0.334375,0.334375,0,0,0,94,0,28889.999999999996,0,0,0,0,0,28889.999999999996
2007-02-12,0,0,47250.0,47250.0,47250.0,0,0,0,0,0,47250.0,0.546875,0.546875,0,0,0,94,0,47250.0,0,0,0,0,0,47250.0
2007-02-13,0,0,36049.99999999999,36049.99999999999,36049.99999999999,0,0,0,0,0,36049.99999999999,0.4172453703703703,0.4172453703703703,0,0,0,94,0,36049.99999999999,0,0,0,0,0,36049.99999999999
2007-02-14,0,0,42420.0,42420.0,42420.0,0,0,0,0,0,42420.0,0.4909722222222222,0.4909722222222222,0,0,0,94,0,42420.0,0,0,0,0,0,42420.0
2007-02-15,0,0,32670.0,32670.0,32670.0,0,0,0,0,0,32670.0,0.378125,0.378125,0,0,0,94,0,32670.0,0,0,0,0,0,32670.0
2007-02-16,0,0,51409.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.595023148148148,0.595023148148148,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-02-17,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2007-02-18,0,0,40455.0,40455.0,40455.0,0,0,0,0,0,40455.0,0.46822916666666664,0.46822916666666664,0,0,0,94,0,40455.0,0,0,0,0,0,40455.0
2007-02-19,0,0,40494.99999999999,40494.99999999999,40494.99999999999,0,0,0,0,0,40494.99999999999,0.46869212962962953,0.4686921296296296,0,0,0,94,0,40494.99999999999,0,0,0,0,0,40494.99999999999
2007-02-20,0,0,39604.99999999999,39604.99999999999,39604.99999999999,0,0,0,0,0,39604.99999999999,0.4583912037037036,0.4583912037037036,0,0,0,94,0,39604.99999999999,0,0,0,0,0,39604.99999999999
2007-02-21,0,0,21750.0,21750.0,21750.0,0,0,0,0,0,21750.0,0.2517361111111111,0.2517361111111111,0,0,0,94,0,21750.0,0,0,0,0,0,21750.0
2007-02-22,0,0,25925.0,25925.0,25925.0,0,0,0,0,0,25925.0,0.30005787037037035,0.30005787037037035,0,0,0,94,0,25925.0,0,0,0,0,0,25925.0
2007-02-23,0,0,1245.0,1245.0,1245.0,0,0,0,0,0,1245.0,0.014409722222222223,0.014409722222222223,0,0,0,94,0,1245.0,0,0,0,0,0,1245.0
2007-02-24,0,0,23895.0,23895.0,23895.0,0,0,0,0,0,23895.0,0.2765625,0.2765625,0,0,0,94,0,23895.0,0,0,0,0,0,23895.0
2007-02-25,0,0,32389.999999999996,32389.999999999996,32389.999999999996,0,0,0,0,0,32389.999999999996,0.3748842592592592,0.3748842592592592,0,0,0,94,0,32389.999999999996,0,0,0,0,0,32389.999999999996
2007-02-26,0,0,14630.0,14630.0,14630.0,0,0,0,0,0,14630.0,0.1693287037037037,0.1693287037037037,0,0,0,94,0,14630.0,0,0,0,0,0,14630.0
2007-02-27,0,0,22125.0,22125.0,22125.0,0,0,0,0,0,22125.0,0.2560763888888889,0.2560763888888889,0,0,0,94,0,22125.0,0,0,0,0,0,22125.0
2007-02-28,0,0,29199.999999999996,29199.999999999996,29199.999999999996,0,0,0,0,0,29199.999999999996,0.3379629629629629,0.3379629629629629,0,0,0,94,0,29199.999999999996,0,0,0,0,0,29199.999999999996
2007-03-01,0,0,23430.0,23430.0,23430.0,0,0,0,0,0,23430.0,0.27118055555555554,0.27118055555555554,0,0,0,94,0,23430.0,0,0,0,0,0,23430.0
2007-03-02,0,0,19664.999999999996,19664.999999999996,19664.999999999996,0,0,0,0,0,19664.999999999996,0.22760416666666664,0.22760416666666664,0,0,0,94,0,19664.999999999996,0,0,0,0,0,19664.999999999996
2007-03-03,0,0,20435.0,20435.0,20435.0,0,0,0,0,0,20435.0,0.23651620370370371,0.2365162037037037,0,0,0,94,0,20435.0,0,0,0,0,0,20435.0
2007-03-04,0,0,22750.0,22750.0,22750.0,0,0,0,0,0,22750.0,0.2633101851851852,0.2633101851851852,0,0,0,94,0,22750.0,0,0,0,0,0,22750.0
2007-03-05,0,0,29609.999999999996,29609.999999999996,29609.999999999996,0,0,0,0,0,29609.999999999996,0.3427083333333333,0.3427083333333333,0,0,0,94,0,29609.999999999996,0,0,0,0,0,29609.999999999996
2007-03-06,0,0,10675.0,10675.0,10675.0,0,0,0,0,0,10675.0,0.12355324074074074,0.12355324074074074,0,0,0,94,0,10675.0,0,0,0,0,0,10675.0
2007-03-07,0,0,20059.999999999996,20059.999999999996,20059.999999999996,0,0,0,0,0,20059.999999999996,0.2321759259259259,0.2321759259259259,0,0,0,94,0,20059.999999999996,0,0,0,0,0,20059.999999999996
2007-03-08,0,0,21945.0,21945.0,21945.0,0,0,0,0,0,21945.0,0.25399305555555557,0.25399305555555557,0,0,0,94,0,21945.0,0,0,0,0,0,21945.0
2007-03-09,0,0,19249.999999999996,19249.999999999996,19249.999999999996,0,0,0,0,0,19249.999999999996,0.22280092592592587,0.2228009259259259,0,0,0,94,0,19249.999999999996,0,0,0,0,0,19249.999999999996
2007-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2007-10-25,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2007-10-26,0,0,10650.0,10650.0,10650.0,0,0,0,0,0,10650.0,0.1232638888888889,0.12326388888888888,0,0,0,94,0,10650.0,0,0,0,0,0,10650.0
2007-10-27,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2007-10-28,0,0,10950.0,10950.0,10950.0,0,0,0,0,0,10950.0,0.1267361111111111,0.1267361111111111,0,0,0,94,0,10950.0,0,0,0,0,0,10950.0
2007-10-29,0,0,4800.0,4800.0,4800.0,0,0,0,0,0,4800.0,0.05555555555555555,0.05555555555555555,0,0,0,94,0,4800.0,0,0,0,0,0,4800.0
2007-10-30,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2007-10-31,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2007-11-01,0,0,11400.0,11400.0,11400.0,0,0,0,0,0,11400.0,0.13194444444444445,0.13194444444444445,0,0,0,94,0,11400.0,0,0,0,0,0,11400.0
2007-11-02,0,0,7949.999999999999,7949.999999999999,7949.999999999999,0,0,0,0,0,7949.999999999999,0.09201388888888888,0.09201388888888888,0,0,0,94,0,7949.999999999999,0,0,0,0,0,7949.999999999999
2007-11-03,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2007-11-04,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2007-11-05,0,0,3000.0,3000.0,3000.0,0,0,0,0,0,3000.0,0.034722222222222224,0.034722222222222224,0,0,0,94,0,3000.0,0,0,0,0,0,3000.0
2007-11-06,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2007-11-07,0,0,7800.0,7800.0,7800.0,0,0,0,0,0,7800.0,0.09027777777777778,0.09027777777777778,0,0,0,94,0,7800.0,0,0,0,0,0,7800.0
2007-11-08,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2007-11-09,0,0,8250.0,8250.0,8250.0,0,0,0,0,0,8250.0,0.0954861111111111,0.0954861111111111,0,0,0,94,0,8250.0,0,0,0,0,0,8250.0
2007-11-10,0,0,1950.0,1950.0,1950.0,0,0,0,0,0,1950.0,0.022569444444444444,0.022569444444444444,0,0,0,94,0,1950.0,0,0,0,0,0,1950.0
2007-11-11,0,0,7200.0,7200.0,7200.0,0,0,0,0,0,7200.0,0.08333333333333333,0.08333333333333333,0,0,0,94,0,7200.0,0,0,0,0,0,7200.0
2007-11-12,0,0,9000.0,9000.0,9000.0,0,0,0,0,0,9000.0,0.10416666666666667,0.10416666666666666,0,0,0,94,0,9000.0,0,0,0,0,0,9000.0
2007-11-13,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2007-11-14,0,0,10199.999999999998,10199.999999999998,10199.999999999998,0,0,0,0,0,10199.999999999998,0.11805555555555554,0.11805555555555554,0,0,0,94,0,10199.999999999998,0,0,0,0,0,10199.999999999998
2007-11-15,0,0,9852.999999999998,9852.999999999998,9852.999999999998,0,0,0,0,0,9852.999999999998,0.11403935185185184,0.11403935185185184,0,0,0,94,0,9852.999999999998,0,0,0,0,0,9852.999999999998
2007-11-16,0,0,3495.9999999999995,3495.9999999999995,3495.9999999999995,0,0,0,0,0,3495.9999999999995,0.04046296296296296,0.04046296296296296,0,0,0,94,0,3495.9999999999995,0,0,0,0,0,3495.9999999999995
2007-11-17,0,0,6230.999999999999,6230.999999999999,6230.999999999999,0,0,0,0,0,6230.999999999999,0.07211805555555555,0.07211805555555555,0,0,0,94,0,6230.999999999999,0,0,0,0,0,6230.999999999999
2007-11-18,0,0,10682.0,10682.0,10682.0,0,0,0,0,0,10682.0,0.12363425925925926,0.12363425925925926,0,0,0,94,0,10682.0,0,0,0,0,0,10682.0
2007-11-19,0,0,13394.999999999998,13394.999999999998,13394.999999999998,0,0,0,0,0,13394.999999999998,0.1550347222222222,0.1550347222222222,0,0,0,94,0,13394.999999999998,0,0,0,0,0,13394.999999999998
2007-11-20,0,0,7559.999999999999,7559.999999999999,7559.999999999999,0,0,0,0,0,7559.999999999999,0.0875,0.0875,0,0,0,94,0,7559.999999999999,0,0,0,0,0,7559.999999999999
2007-11-21,0,0,12105.0,12105.0,12105.0,0,0,0,0,0,12105.0,0.14010416666666667,0.14010416666666667,0,0,0,94,0,12105.0,0,0,0,0,0,12105.0
2007-11-22,0,0,12584.0,12584.0,12584.0,0,0,0,0,0,12584.0,0.14564814814814814,0.14564814814814814,0,0,0,94,0,12584.0,0,0,0,0,0,12584.0
2007-11-23,0,0,20603.999999999996,20603.999999999996,20603.999999999996,0,0,0,0,0,20603.999999999996,0.23847222222222217,0.2384722222222222,0,0,0,94,0,20603.999999999996,0,0,0,0,0,20603.999999999996
2007-11-24,0,0,31679.999999999996,31679.999999999996,31679.999999999996,0,0,0,0,0,31679.999999999996,0.36666666666666664,0.36666666666666664,0,0,0,94,0,31679.999999999996,0,0,0,0,0,31679.999999999996
2007-11-25,0,0,4043.9999999999995,4043.9999999999995,4043.9999999999995,0,0,0,0,0,4043.9999999999995,0.04680555555555555,0.04680555555555555,0,0,0,94,0,4043.9999999999995,0,0,0,0,0,4043.9999999999995
2007-11-26,0,0,8141.999999999999,8141.999999999999,8141.999999999999,0,0,0,0,0,8141.999999999999,0.0942361111111111,0.0942361111111111,0,0,0,94,0,8141.999999999999,0,0,0,0,0,8141.999999999999
2007-11-27,0,0,22260.000000000004,22260.000000000004,22260.000000000004,0,0,0,0,0,22260.000000000004,0.2576388888888889,0.2576388888888889,0,0,0,94,0,22260.000000000004,0,0,0,0,0,22260.000000000004
2007-11-28,0,0,15907.999999999998,15907.999999999998,15907.999999999998,0,0,0,0,0,15907.999999999998,0.18412037037037035,0.18412037037037035,0,0,0,94,0,15907.999999999998,0,0,0,0,0,15907.999999999998
2007-11-29,0,0,25514.999999999996,25514.999999999996,25514.999999999996,0,0,0,0,0,25514.999999999996,0.2953125,0.2953125,0,0,0,94,0,25514.999999999996,0,0,0,0,0,25514.999999999996
2007-11-30,0,0,54438.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6300694444444445,0.6300694444444445,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-12-01,0,0,39949.0,39949.0,39949.0,0,0,0,0,0,39949.0,0.4623726851851852,0.46237268518518515,0,0,0,94,0,39949.0,0,0,0,0,0,39949.0
2007-12-02,0,0,26904.0,26904.0,26904.0,0,0,0,0,0,26904.0,0.3113888888888889,0.3113888888888889,0,0,0,94,0,26904.0,0,0,0,0,0,26904.0
2007-12-03,0,0,14663.0,14663.0,14663.0,0,0,0,0,0,14663.0,0.16971064814814815,0.16971064814814815,0,0,0,94,0,14663.0,0,0,0,0,0,14663.0
2007-12-04,0,0,21559.999999999996,21559.999999999996,21559.999999999996,0,0,0,0,0,21559.999999999996,0.249537037037037,0.249537037037037,0,0,0,94,0,21559.999999999996,0,0,0,0,0,21559.999999999996
2007-12-05,0,0,22814.999999999996,22814.999999999996,22814.999999999996,0,0,0,0,0,22814.999999999996,0.2640625,0.2640625,0,0,0,94,0,22814.999999999996,0,0,0,0,0,22814.999999999996
2007-12-06,0,0,24103.999999999996,24103.999999999996,24103.999999999996,0,0,0,0,0,24103.999999999996,0.27898148148148144,0.27898148148148144,0,0,0,94,0,24103.999999999996,0,0,0,0,0,24103.999999999996
2007-12-07,0,0,37329.0,37329.0,37329.0,0,0,0,0,0,37329.0,0.4320486111111111,0.4320486111111111,0,0,0,94,0,37329.0,0,0,0,0,0,37329.0
2007-12-08,0,0,31806.0,31806.0,31806.0,0,0,0,0,0,31806.0,0.368125,0.368125,0,0,0,94,0,31806.0,0,0,0,0,0,31806.0
2007-12-09,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2007-12-10,0,0,25300.0,25300.0,25300.0,0,0,0,0,0,25300.0,0.29282407407407407,0.29282407407407407,0,0,0,94,0,25300.0,0,0,0,0,0,25300.0
2007-12-11,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2007-12-12,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-12-13,0,0,83950.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9716435185185185,0.9716435185185185,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-12-14,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2007-12-15,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2007-12-16,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2007-12-17,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2007-12-18,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2007-12-19,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2007-12-20,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2007-12-21,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2007-12-22,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2007-12-23,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2007-12-24,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
2007-12-25,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2007-12-26,0,0,70724.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8185763888888887,0.8185763888888887,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2007-12-27,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2007-12-28,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2007-12-29,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2007-12-30,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2007-12-31,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2008-01-01,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2008-01-02,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2008-01-03,0,0,25874.999999999996,25874.999999999996,25874.999999999996,0,0,0,0,0,25874.999999999996,0.29947916666666663,0.29947916666666663,0,0,0,94,0,25874.999999999996,0,0,0,0,0,25874.999999999996
2008-01-04,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2008-01-05,0,0,21274.999999999996,21274.999999999996,21274.999999999996,0,0,0,0,0,21274.999999999996,0.24623842592592587,0.2462384259259259,0,0,0,94,0,21274.999999999996,0,0,0,0,0,21274.999999999996
2008-01-06,0,0,25874.999999999996,25874.999999999996,25874.999999999996,0,0,0,0,0,25874.999999999996,0.29947916666666663,0.29947916666666663,0,0,0,94,0,25874.999999999996,0,0,0,0,0,25874.999999999996
2008-01-07,0,0,25874.999999999996,25874.999999999996,25874.999999999996,0,0,0,0,0,25874.999999999996,0.29947916666666663,0.29947916666666663,0,0,0,94,0,25874.999999999996,0,0,0,0,0,25874.999999999996
2008-01-08,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2008-01-09,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2008-01-10,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2008-01-11,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2008-01-12,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2008-01-13,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2008-01-14,0,0,61524.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7120949074074073,0.7120949074074073,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-15,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2008-01-16,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-17,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2008-01-18,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2008-01-19,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2008-01-20,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2008-01-21,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-22,0,0,69000.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7986111111111112,0.798611111111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-23,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2008-01-24,0,0,61524.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7120949074074073,0.7120949074074073,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-25,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-26,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-27,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-28,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-29,0,0,56925.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6588541666666666,0.6588541666666666,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-01-30,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2008-01-31,0,0,65549.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7586805555555554,0.7586805555555555,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-02-01,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2008-02-02,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2008-02-03,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2008-02-04,0,0,20125.0,20125.0,20125.0,0,0,0,0,0,20125.0,0.23292824074074073,0.23292824074074073,0,0,0,94,0,20125.0,0,0,0,0,0,20125.0
2008-02-05,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2008-02-06,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2008-02-07,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2008-02-08,0,0,45200.0,45200.0,45200.0,0,0,0,0,0,45200.0,0.5231481481481481,0.5231481481481481,0,0,0,94,0,45200.0,0,0,0,0,0,45200.0
2008-02-09,0,0,43289.99999999999,43289.99999999999,43289.99999999999,0,0,0,0,0,43289.99999999999,0.5010416666666666,0.5010416666666666,0,0,0,94,0,43289.99999999999,0,0,0,0,0,43289.99999999999
2008-02-10,0,0,37604.99999999999,37604.99999999999,37604.99999999999,0,0,0,0,0,37604.99999999999,0.4352430555555555,0.4352430555555555,0,0,0,94,0,37604.99999999999,0,0,0,0,0,37604.99999999999
2008-02-11,0,0,41729.99999999999,41729.99999999999,41729.99999999999,0,0,0,0,0,41729.99999999999,0.482986111111111,0.48298611111111106,0,0,0,94,0,41729.99999999999,0,0,0,0,0,41729.99999999999
2008-02-12,0,0,58275.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6744791666666666,0.6744791666666666,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-02-13,0,0,49954.99999999999,49954.99999999999,49954.99999999999,0,0,0,0,0,49954.99999999999,0.5781828703703703,0.5781828703703703,0,0,0,94,0,49954.99999999999,0,0,0,0,0,49954.99999999999
2008-02-14,0,0,70194.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8124421296296295,0.8124421296296295,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-02-15,0,0,82665.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9567708333333333,0.9567708333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-02-16,0,0,67415.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7802662037037037,0.7802662037037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-02-17,0,0,42750.0,42750.0,42750.0,0,0,0,0,0,42750.0,0.4947916666666667,0.49479166666666663,0,0,0,94,0,42750.0,0,0,0,0,0,42750.0
2008-02-18,0,0,33015.0,33015.0,33015.0,0,0,0,0,0,33015.0,0.38211805555555556,0.38211805555555556,0,0,0,94,0,33015.0,0,0,0,0,0,33015.0
2008-02-19,0,0,46865.0,46865.0,46865.0,0,0,0,0,0,46865.0,0.5424189814814815,0.5424189814814815,0,0,0,94,0,46865.0,0,0,0,0,0,46865.0
2008-02-20,0,0,53399.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6180555555555555,0.6180555555555555,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-02-21,0,0,67425.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7803819444444444,0.7803819444444444,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-02-22,0,0,5950.0,5950.0,5950.0,0,0,0,0,0,5950.0,0.06886574074074074,0.06886574074074074,0,0,0,94,0,5950.0,0,0,0,0,0,5950.0
2008-02-23,0,0,35274.99999999999,35274.99999999999,35274.99999999999,0,0,0,0,0,35274.99999999999,0.40827546296296285,0.4082754629629629,0,0,0,94,0,35274.99999999999,0,0,0,0,0,35274.99999999999
2008-02-24,0,0,21870.0,21870.0,21870.0,0,0,0,0,0,21870.0,0.253125,0.253125,0,0,0,94,0,21870.0,0,0,0,0,0,21870.0
2008-02-25,0,0,43844.99999999999,43844.99999999999,43844.99999999999,0,0,0,0,0,43844.99999999999,0.5074652777777777,0.5074652777777777,0,0,0,94,0,43844.99999999999,0,0,0,0,0,43844.99999999999
2008-02-26,0,0,26950.0,26950.0,26950.0,0,0,0,0,0,26950.0,0.3119212962962963,0.3119212962962963,0,0,0,94,0,26950.0,0,0,0,0,0,26950.0
2008-02-27,0,0,26625.0,26625.0,26625.0,0,0,0,0,0,26625.0,0.3081597222222222,0.3081597222222222,0,0,0,94,0,26625.0,0,0,0,0,0,26625.0
2008-02-28,0,0,20804.999999999996,20804.999999999996,20804.999999999996,0,0,0,0,0,20804.999999999996,0.24079861111111106,0.2407986111111111,0,0,0,94,0,20804.999999999996,0,0,0,0,0,20804.999999999996
2008-02-29,0,0,35855.0,35855.0,35855.0,0,0,0,0,0,35855.0,0.41498842592592594,0.4149884259259259,0,0,0,94,0,35855.0,0,0,0,0,0,35855.0
2008-03-01,0,0,43814.99999999999,43814.99999999999,43814.99999999999,0,0,0,0,0,43814.99999999999,0.5071180555555554,0.5071180555555554,0,0,0,94,0,43814.99999999999,0,0,0,0,0,43814.99999999999
2008-03-02,0,0,48240.0,48240.0,48240.0,0,0,0,0,0,48240.0,0.5583333333333333,0.5583333333333333,0,0,0,94,0,48240.0,0,0,0,0,0,48240.0
2008-03-03,0,0,5200.0,5200.0,5200.0,0,0,0,0,0,5200.0,0.06018518518518518,0.06018518518518518,0,0,0,94,0,5200.0,0,0,0,0,0,5200.0
2008-03-04,0,0,6614.999999999999,6614.999999999999,6614.999999999999,0,0,0,0,0,6614.999999999999,0.07656249999999999,0.07656249999999999,0,0,0,94,0,6614.999999999999,0,0,0,0,0,6614.999999999999
2008-03-05,0,0,25010.0,25010.0,25010.0,0,0,0,0,0,25010.0,0.2894675925925926,0.2894675925925926,0,0,0,94,0,25010.0,0,0,0,0,0,25010.0
2008-03-06,0,0,16519.999999999996,16519.999999999996,16519.999999999996,0,0,0,0,0,16519.999999999996,0.19120370370370365,0.19120370370370368,0,0,0,94,0,16519.999999999996,0,0,0,0,0,16519.999999999996
2008-03-07,0,0,15390.0,15390.0,15390.0,0,0,0,0,0,15390.0,0.178125,0.178125,0,0,0,94,0,15390.0,0,0,0,0,0,15390.0
2008-03-08,0,0,21175.0,21175.0,21175.0,0,0,0,0,0,21175.0,0.24508101851851852,0.24508101851851852,0,0,0,94,0,21175.0,0,0,0,0,0,21175.0
2008-03-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2008-10-25,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
2008-10-26,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2008-10-27,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2008-10-28,0,0,9000.0,9000.0,9000.0,0,0,0,0,0,9000.0,0.10416666666666667,0.10416666666666666,0,0,0,94,0,9000.0,0,0,0,0,0,9000.0
2008-10-29,0,0,4049.9999999999995,4049.9999999999995,4049.9999999999995,0,0,0,0,0,4049.9999999999995,0.04687499999999999,0.04687499999999999,0,0,0,94,0,4049.9999999999995,0,0,0,0,0,4049.9999999999995
2008-10-30,0,0,4049.9999999999995,4049.9999999999995,4049.9999999999995,0,0,0,0,0,4049.9999999999995,0.04687499999999999,0.04687499999999999,0,0,0,94,0,4049.9999999999995,0,0,0,0,0,4049.9999999999995
2008-10-31,0,0,4349.999999999999,4349.999999999999,4349.999999999999,0,0,0,0,0,4349.999999999999,0.05034722222222221,0.05034722222222222,0,0,0,94,0,4349.999999999999,0,0,0,0,0,4349.999999999999
2008-11-01,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2008-11-02,0,0,5400.0,5400.0,5400.0,0,0,0,0,0,5400.0,0.0625,0.0625,0,0,0,94,0,5400.0,0,0,0,0,0,5400.0
2008-11-03,0,0,1950.0,1950.0,1950.0,0,0,0,0,0,1950.0,0.022569444444444444,0.022569444444444444,0,0,0,94,0,1950.0,0,0,0,0,0,1950.0
2008-11-04,0,0,7200.0,7200.0,7200.0,0,0,0,0,0,7200.0,0.08333333333333333,0.08333333333333333,0,0,0,94,0,7200.0,0,0,0,0,0,7200.0
2008-11-05,0,0,3299.9999999999995,3299.9999999999995,3299.9999999999995,0,0,0,0,0,3299.9999999999995,0.03819444444444444,0.03819444444444444,0,0,0,94,0,3299.9999999999995,0,0,0,0,0,3299.9999999999995
2008-11-06,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2008-11-07,0,0,9449.999999999998,9449.999999999998,9449.999999999998,0,0,0,0,0,9449.999999999998,0.10937499999999997,0.10937499999999999,0,0,0,94,0,9449.999999999998,0,0,0,0,0,9449.999999999998
2008-11-08,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2008-11-09,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2008-11-10,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2008-11-11,0,0,5099.999999999999,5099.999999999999,5099.999999999999,0,0,0,0,0,5099.999999999999,0.05902777777777777,0.05902777777777777,0,0,0,94,0,5099.999999999999,0,0,0,0,0,5099.999999999999
2008-11-12,0,0,8099.999999999999,8099.999999999999,8099.999999999999,0,0,0,0,0,8099.999999999999,0.09374999999999999,0.09374999999999999,0,0,0,94,0,8099.999999999999,0,0,0,0,0,8099.999999999999
2008-11-13,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2008-11-14,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2008-11-15,0,0,14027.999999999998,14027.999999999998,14027.999999999998,0,0,0,0,0,14027.999999999998,0.1623611111111111,0.1623611111111111,0,0,0,94,0,14027.999999999998,0,0,0,0,0,14027.999999999998
2008-11-16,0,0,3863.9999999999995,3863.9999999999995,3863.9999999999995,0,0,0,0,0,3863.9999999999995,0.04472222222222222,0.04472222222222222,0,0,0,94,0,3863.9999999999995,0,0,0,0,0,3863.9999999999995
2008-11-17,0,0,7839.0,7839.0,7839.0,0,0,0,0,0,7839.0,0.09072916666666667,0.09072916666666667,0,0,0,94,0,7839.0,0,0,0,0,0,7839.0
2008-11-18,0,0,22890.0,22890.0,22890.0,0,0,0,0,0,22890.0,0.26493055555555556,0.26493055555555556,0,0,0,94,0,22890.0,0,0,0,0,0,22890.0
2008-11-19,0,0,7049.999999999999,7049.999999999999,7049.999999999999,0,0,0,0,0,7049.999999999999,0.08159722222222221,0.08159722222222221,0,0,0,94,0,7049.999999999999,0,0,0,0,0,7049.999999999999
2008-11-20,0,0,11088.0,11088.0,11088.0,0,0,0,0,0,11088.0,0.12833333333333333,0.12833333333333333,0,0,0,94,0,11088.0,0,0,0,0,0,11088.0
2008-11-21,0,0,9683.999999999998,9683.999999999998,9683.999999999998,0,0,0,0,0,9683.999999999998,0.11208333333333331,0.11208333333333331,0,0,0,94,0,9683.999999999998,0,0,0,0,0,9683.999999999998
2008-11-22,0,0,12012.0,12012.0,12012.0,0,0,0,0,0,12012.0,0.13902777777777778,0.13902777777777778,0,0,0,94,0,12012.0,0,0,0,0,0,12012.0
2008-11-23,0,0,15452.999999999998,15452.999999999998,15452.999999999998,0,0,0,0,0,15452.999999999998,0.17885416666666665,0.17885416666666665,0,0,0,94,0,15452.999999999998,0,0,0,0,0,15452.999999999998
2008-11-24,0,0,16960.0,16960.0,16960.0,0,0,0,0,0,16960.0,0.1962962962962963,0.1962962962962963,0,0,0,94,0,16960.0,0,0,0,0,0,16960.0
2008-11-25,0,0,16513.0,16513.0,16513.0,0,0,0,0,0,16513.0,0.1911226851851852,0.1911226851851852,0,0,0,94,0,16513.0,0,0,0,0,0,16513.0
2008-11-26,0,0,12035.999999999998,12035.999999999998,12035.999999999998,0,0,0,0,0,12035.999999999998,0.13930555555555554,0.13930555555555554,0,0,0,94,0,12035.999999999998,0,0,0,0,0,12035.999999999998
2008-11-27,0,0,20775.999999999996,20775.999999999996,20775.999999999996,0,0,0,0,0,20775.999999999996,0.24046296296296293,0.24046296296296293,0,0,0,94,0,20775.999999999996,0,0,0,0,0,20775.999999999996
2008-11-28,0,0,23280.0,23280.0,23280.0,0,0,0,0,0,23280.0,0.26944444444444443,0.26944444444444443,0,0,0,94,0,23280.0,0,0,0,0,0,23280.0
2008-11-29,0,0,21870.0,21870.0,21870.0,0,0,0,0,0,21870.0,0.253125,0.253125,0,0,0,94,0,21870.0,0,0,0,0,0,21870.0
2008-11-30,0,0,22788.0,22788.0,22788.0,0,0,0,0,0,22788.0,0.26375,0.26375,0,0,0,94,0,22788.0,0,0,0,0,0,22788.0
2008-12-01,0,0,35120.0,35120.0,35120.0,0,0,0,0,0,35120.0,0.4064814814814815,0.40648148148148144,0,0,0,94,0,35120.0,0,0,0,0,0,35120.0
2008-12-02,0,0,32832.0,32832.0,32832.0,0,0,0,0,0,32832.0,0.38,0.38,0,0,0,94,0,32832.0,0,0,0,0,0,32832.0
2008-12-03,0,0,21758.0,21758.0,21758.0,0,0,0,0,0,21758.0,0.2518287037037037,0.2518287037037037,0,0,0,94,0,21758.0,0,0,0,0,0,21758.0
2008-12-04,0,0,42630.0,42630.0,42630.0,0,0,0,0,0,42630.0,0.4934027777777778,0.4934027777777778,0,0,0,94,0,42630.0,0,0,0,0,0,42630.0
2008-12-05,0,0,36503.99999999999,36503.99999999999,36503.99999999999,0,0,0,0,0,36503.99999999999,0.42249999999999993,0.42249999999999993,0,0,0,94,0,36503.99999999999,0,0,0,0,0,36503.99999999999
2008-12-06,0,0,43491.99999999999,43491.99999999999,43491.99999999999,0,0,0,0,0,43491.99999999999,0.5033796296296296,0.5033796296296296,0,0,0,94,0,43491.99999999999,0,0,0,0,0,43491.99999999999
2008-12-07,0,0,41116.0,41116.0,41116.0,0,0,0,0,0,41116.0,0.47587962962962965,0.4758796296296296,0,0,0,94,0,41116.0,0,0,0,0,0,41116.0
2008-12-08,0,0,48546.0,48546.0,48546.0,0,0,0,0,0,48546.0,0.561875,0.561875,0,0,0,94,0,48546.0,0,0,0,0,0,48546.0
2008-12-09,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-10,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2008-12-11,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2008-12-12,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2008-12-13,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2008-12-14,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2008-12-15,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2008-12-16,0,0,90849.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,1.0515046296296295,1.0515046296296295,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-17,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2008-12-18,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2008-12-19,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-20,0,0,71875.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8318865740740741,0.8318865740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-21,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-22,0,0,60375.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6987847222222222,0.6987847222222222,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-23,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-24,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2008-12-25,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2008-12-26,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-27,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-28,0,0,63249.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7320601851851851,0.7320601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-29,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2008-12-30,0,0,63825.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7387152777777778,0.7387152777777778,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2008-12-31,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-01,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2009-01-02,0,0,14374.999999999998,14374.999999999998,14374.999999999998,0,0,0,0,0,14374.999999999998,0.1663773148148148,0.1663773148148148,0,0,0,94,0,14374.999999999998,0,0,0,0,0,14374.999999999998
2009-01-03,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2009-01-04,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-05,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-06,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-07,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2009-01-08,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2009-01-09,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2009-01-10,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2009-01-11,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2009-01-12,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2009-01-13,0,0,58650.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6788194444444444,0.6788194444444444,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-14,0,0,96599.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,1.1180555555555554,1.1180555555555554,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-15,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2009-01-16,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2009-01-17,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-18,0,0,13799.999999999998,13799.999999999998,13799.999999999998,0,0,0,0,0,13799.999999999998,0.1597222222222222,0.1597222222222222,0,0,0,94,0,13799.999999999998,0,0,0,0,0,13799.999999999998
2009-01-19,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2009-01-20,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2009-01-21,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2009-01-22,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2009-01-23,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-24,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-25,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2009-01-26,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-01-27,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
2009-01-28,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2009-01-29,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2009-01-30,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2009-01-31,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-02-01,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2009-02-02,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2009-02-03,0,0,70150.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8119212962962963,0.8119212962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-02-04,0,0,73599.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8518518518518516,0.8518518518518517,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-02-05,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2009-02-06,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-02-07,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2009-02-08,0,0,44070.0,44070.0,44070.0,0,0,0,0,0,44070.0,0.5100694444444445,0.5100694444444445,0,0,0,94,0,44070.0,0,0,0,0,0,44070.0
2009-02-09,0,0,38295.0,38295.0,38295.0,0,0,0,0,0,38295.0,0.4432291666666667,0.4432291666666667,0,0,0,94,0,38295.0,0,0,0,0,0,38295.0
2009-02-10,0,0,61039.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7064814814814814,0.7064814814814814,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-02-11,0,0,50289.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5820601851851851,0.5820601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-02-12,0,0,35700.0,35700.0,35700.0,0,0,0,0,0,35700.0,0.4131944444444444,0.4131944444444445,0,0,0,94,0,35700.0,0,0,0,0,0,35700.0
2009-02-13,0,0,28839.999999999996,28839.999999999996,28839.999999999996,0,0,0,0,0,28839.999999999996,0.33379629629629626,0.33379629629629626,0,0,0,94,0,28839.999999999996,0,0,0,0,0,28839.999999999996
2009-02-14,0,0,35350.0,35350.0,35350.0,0,0,0,0,0,35350.0,0.40914351851851855,0.4091435185185185,0,0,0,94,0,35350.0,0,0,0,0,0,35350.0
2009-02-15,0,0,41579.99999999999,41579.99999999999,41579.99999999999,0,0,0,0,0,41579.99999999999,0.4812499999999999,0.48124999999999996,0,0,0,94,0,41579.99999999999,0,0,0,0,0,41579.99999999999
2009-02-16,0,0,27645.0,27645.0,27645.0,0,0,0,0,0,27645.0,0.3199652777777778,0.3199652777777778,0,0,0,94,0,27645.0,0,0,0,0,0,27645.0
2009-02-17,0,0,39900.0,39900.0,39900.0,0,0,0,0,0,39900.0,0.4618055555555556,0.4618055555555555,0,0,0,94,0,39900.0,0,0,0,0,0,39900.0
2009-02-18,0,0,32549.999999999996,32549.999999999996,32549.999999999996,0,0,0,0,0,32549.999999999996,0.37673611111111105,0.37673611111111105,0,0,0,94,0,32549.999999999996,0,0,0,0,0,32549.999999999996
2009-02-19,0,0,34124.99999999999,34124.99999999999,34124.99999999999,0,0,0,0,0,34124.99999999999,0.3949652777777777,0.39496527777777773,0,0,0,94,0,34124.99999999999,0,0,0,0,0,34124.99999999999
2009-02-20,0,0,20914.999999999996,20914.999999999996,20914.999999999996,0,0,0,0,0,20914.999999999996,0.24207175925925922,0.24207175925925922,0,0,0,94,0,20914.999999999996,0,0,0,0,0,20914.999999999996
2009-02-21,0,0,24795.0,24795.0,24795.0,0,0,0,0,0,24795.0,0.2869791666666667,0.2869791666666667,0,0,0,94,0,24795.0,0,0,0,0,0,24795.0
2009-02-22,0,0,30175.0,30175.0,30175.0,0,0,0,0,0,30175.0,0.3492476851851852,0.3492476851851852,0,0,0,94,0,30175.0,0,0,0,0,0,30175.0
2009-02-23,0,0,21579.999999999996,21579.999999999996,21579.999999999996,0,0,0,0,0,21579.999999999996,0.24976851851851847,0.24976851851851847,0,0,0,94,0,21579.999999999996,0,0,0,0,0,21579.999999999996
2009-02-24,0,0,28350.0,28350.0,28350.0,0,0,0,0,0,28350.0,0.328125,0.328125,0,0,0,94,0,28350.0,0,0,0,0,0,28350.0
2009-02-25,0,0,23305.0,23305.0,23305.0,0,0,0,0,0,23305.0,0.2697337962962963,0.2697337962962963,0,0,0,94,0,23305.0,0,0,0,0,0,23305.0
2009-02-26,0,0,36960.0,36960.0,36960.0,0,0,0,0,0,36960.0,0.42777777777777776,0.42777777777777776,0,0,0,94,0,36960.0,0,0,0,0,0,36960.0
2009-02-27,0,0,28125.0,28125.0,28125.0,0,0,0,0,0,28125.0,0.3255208333333333,0.3255208333333333,0,0,0,94,0,28125.0,0,0,0,0,0,28125.0
2009-02-28,0,0,26645.0,26645.0,26645.0,0,0,0,0,0,26645.0,0.3083912037037037,0.3083912037037037,0,0,0,94,0,26645.0,0,0,0,0,0,26645.0
2009-03-01,0,0,19879.999999999996,19879.999999999996,19879.999999999996,0,0,0,0,0,19879.999999999996,0.23009259259259254,0.23009259259259257,0,0,0,94,0,19879.999999999996,0,0,0,0,0,19879.999999999996
2009-03-02,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2009-03-03,0,0,29815.0,29815.0,29815.0,0,0,0,0,0,29815.0,0.3450810185185185,0.3450810185185185,0,0,0,94,0,29815.0,0,0,0,0,0,29815.0
2009-03-04,0,0,27625.0,27625.0,27625.0,0,0,0,0,0,27625.0,0.3197337962962963,0.3197337962962963,0,0,0,94,0,27625.0,0,0,0,0,0,27625.0
2009-03-05,0,0,28979.999999999996,28979.999999999996,28979.999999999996,0,0,0,0,0,28979.999999999996,0.33541666666666664,0.33541666666666664,0,0,0,94,0,28979.999999999996,0,0,0,0,0,28979.999999999996
2009-03-06,0,0,24399.999999999996,24399.999999999996,24399.999999999996,0,0,0,0,0,24399.999999999996,0.2824074074074074,0.2824074074074074,0,0,0,94,0,24399.999999999996,0,0,0,0,0,24399.999999999996
2009-03-07,0,0,26550.0,26550.0,26550.0,0,0,0,0,0,26550.0,0.3072916666666667,0.3072916666666667,0,0,0,94,0,26550.0,0,0,0,0,0,26550.0
2009-03-08,0,0,20804.999999999996,20804.999999999996,20804.999999999996,0,0,0,0,0,20804.999999999996,0.24079861111111106,0.2407986111111111,0,0,0,94,0,20804.999999999996,0,0,0,0,0,20804.999999999996
2009-03-09,0,0,27225.0,27225.0,27225.0,0,0,0,0,0,27225.0,0.3151041666666667,0.3151041666666667,0,0,0,94,0,27225.0,0,0,0,0,0,27225.0
2009-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2009-10-25,0,0,9749.999999999998,9749.999999999998,9749.999999999998,0,0,0,0,0,9749.999999999998,0.1128472222222222,0.11284722222222221,0,0,0,94,0,9749.999999999998,0,0,0,0,0,9749.999999999998
2009-10-26,0,0,10199.999999999998,10199.999999999998,10199.999999999998,0,0,0,0,0,10199.999999999998,0.11805555555555554,0.11805555555555554,0,0,0,94,0,10199.999999999998,0,0,0,0,0,10199.999999999998
2009-10-27,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2009-10-28,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
2009-10-29,0,0,10800.0,10800.0,10800.0,0,0,0,0,0,10800.0,0.125,0.125,0,0,0,94,0,10800.0,0,0,0,0,0,10800.0
2009-10-30,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2009-10-31,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2009-11-01,0,0,7800.0,7800.0,7800.0,0,0,0,0,0,7800.0,0.09027777777777778,0.09027777777777778,0,0,0,94,0,7800.0,0,0,0,0,0,7800.0
2009-11-02,0,0,4349.999999999999,4349.999999999999,4349.999999999999,0,0,0,0,0,4349.999999999999,0.05034722222222221,0.05034722222222222,0,0,0,94,0,4349.999999999999,0,0,0,0,0,4349.999999999999
2009-11-03,0,0,9900.0,9900.0,9900.0,0,0,0,0,0,9900.0,0.11458333333333333,0.11458333333333333,0,0,0,94,0,9900.0,0,0,0,0,0,9900.0
2009-11-04,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
2009-11-05,0,0,9449.999999999998,9449.999999999998,9449.999999999998,0,0,0,0,0,9449.999999999998,0.10937499999999997,0.10937499999999999,0,0,0,94,0,9449.999999999998,0,0,0,0,0,9449.999999999998
2009-11-06,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2009-11-07,0,0,9300.0,9300.0,9300.0,0,0,0,0,0,9300.0,0.1076388888888889,0.1076388888888889,0,0,0,94,0,9300.0,0,0,0,0,0,9300.0
2009-11-08,0,0,14099.999999999998,14099.999999999998,14099.999999999998,0,0,0,0,0,14099.999999999998,0.16319444444444442,0.16319444444444442,0,0,0,94,0,14099.999999999998,0,0,0,0,0,14099.999999999998
2009-11-09,0,0,15149.999999999998,15149.999999999998,15149.999999999998,0,0,0,0,0,15149.999999999998,0.1753472222222222,0.1753472222222222,0,0,0,94,0,15149.999999999998,0,0,0,0,0,15149.999999999998
2009-11-10,0,0,13799.999999999998,13799.999999999998,13799.999999999998,0,0,0,0,0,13799.999999999998,0.1597222222222222,0.1597222222222222,0,0,0,94,0,13799.999999999998,0,0,0,0,0,13799.999999999998
2009-11-11,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2009-11-12,0,0,10199.999999999998,10199.999999999998,10199.999999999998,0,0,0,0,0,10199.999999999998,0.11805555555555554,0.11805555555555554,0,0,0,94,0,10199.999999999998,0,0,0,0,0,10199.999999999998
2009-11-13,0,0,6150.0,6150.0,6150.0,0,0,0,0,0,6150.0,0.07118055555555555,0.07118055555555555,0,0,0,94,0,6150.0,0,0,0,0,0,6150.0
2009-11-14,0,0,7650.0,7650.0,7650.0,0,0,0,0,0,7650.0,0.08854166666666667,0.08854166666666667,0,0,0,94,0,7650.0,0,0,0,0,0,7650.0
2009-11-15,0,0,11021.999999999998,11021.999999999998,11021.999999999998,0,0,0,0,0,11021.999999999998,0.12756944444444443,0.12756944444444443,0,0,0,94,0,11021.999999999998,0,0,0,0,0,11021.999999999998
2009-11-16,0,0,22080.0,22080.0,22080.0,0,0,0,0,0,22080.0,0.25555555555555554,0.25555555555555554,0,0,0,94,0,22080.0,0,0,0,0,0,22080.0
2009-11-17,0,0,14471.999999999998,14471.999999999998,14471.999999999998,0,0,0,0,0,14471.999999999998,0.16749999999999998,0.16749999999999998,0,0,0,94,0,14471.999999999998,0,0,0,0,0,14471.999999999998
2009-11-18,0,0,19620.0,19620.0,19620.0,0,0,0,0,0,19620.0,0.22708333333333333,0.22708333333333333,0,0,0,94,0,19620.0,0,0,0,0,0,19620.0
2009-11-19,0,0,13160.0,13160.0,13160.0,0,0,0,0,0,13160.0,0.15231481481481482,0.15231481481481482,0,0,0,94,0,13160.0,0,0,0,0,0,13160.0
2009-11-20,0,0,11088.0,11088.0,11088.0,0,0,0,0,0,11088.0,0.12833333333333333,0.12833333333333333,0,0,0,94,0,11088.0,0,0,0,0,0,11088.0
2009-11-21,0,0,18292.0,18292.0,18292.0,0,0,0,0,0,18292.0,0.21171296296296296,0.21171296296296296,0,0,0,94,0,18292.0,0,0,0,0,0,18292.0
2009-11-22,0,0,17160.0,17160.0,17160.0,0,0,0,0,0,17160.0,0.1986111111111111,0.1986111111111111,0,0,0,94,0,17160.0,0,0,0,0,0,17160.0
2009-11-23,0,0,13937.999999999998,13937.999999999998,13937.999999999998,0,0,0,0,0,13937.999999999998,0.16131944444444443,0.16131944444444443,0,0,0,94,0,13937.999999999998,0,0,0,0,0,13937.999999999998
2009-11-24,0,0,26559.999999999996,26559.999999999996,26559.999999999996,0,0,0,0,0,26559.999999999996,0.30740740740740735,0.30740740740740735,0,0,0,94,0,26559.999999999996,0,0,0,0,0,26559.999999999996
2009-11-25,0,0,27970.999999999996,27970.999999999996,27970.999999999996,0,0,0,0,0,27970.999999999996,0.3237384259259259,0.3237384259259259,0,0,0,94,0,27970.999999999996,0,0,0,0,0,27970.999999999996
2009-11-26,0,0,24071.999999999996,24071.999999999996,24071.999999999996,0,0,0,0,0,24071.999999999996,0.2786111111111111,0.2786111111111111,0,0,0,94,0,24071.999999999996,0,0,0,0,0,24071.999999999996
2009-11-27,0,0,29680.0,29680.0,29680.0,0,0,0,0,0,29680.0,0.3435185185185185,0.3435185185185185,0,0,0,94,0,29680.0,0,0,0,0,0,29680.0
2009-11-28,0,0,21728.0,21728.0,21728.0,0,0,0,0,0,21728.0,0.2514814814814815,0.2514814814814815,0,0,0,94,0,21728.0,0,0,0,0,0,21728.0
2009-11-29,0,0,18225.0,18225.0,18225.0,0,0,0,0,0,18225.0,0.2109375,0.2109375,0,0,0,94,0,18225.0,0,0,0,0,0,18225.0
2009-11-30,0,0,16457.999999999996,16457.999999999996,16457.999999999996,0,0,0,0,0,16457.999999999996,0.19048611111111108,0.19048611111111108,0,0,0,94,0,16457.999999999996,0,0,0,0,0,16457.999999999996
2009-12-01,0,0,46534.0,46534.0,46534.0,0,0,0,0,0,46534.0,0.538587962962963,0.538587962962963,0,0,0,94,0,46534.0,0,0,0,0,0,46534.0
2009-12-02,0,0,37848.0,37848.0,37848.0,0,0,0,0,0,37848.0,0.43805555555555553,0.43805555555555553,0,0,0,94,0,37848.0,0,0,0,0,0,37848.0
2009-12-03,0,0,39259.0,39259.0,39259.0,0,0,0,0,0,39259.0,0.45438657407407407,0.45438657407407407,0,0,0,94,0,39259.0,0,0,0,0,0,39259.0
2009-12-04,0,0,34300.0,34300.0,34300.0,0,0,0,0,0,34300.0,0.39699074074074076,0.3969907407407407,0,0,0,94,0,34300.0,0,0,0,0,0,34300.0
2009-12-05,0,0,30927.0,30927.0,30927.0,0,0,0,0,0,30927.0,0.3579513888888889,0.3579513888888889,0,0,0,94,0,30927.0,0,0,0,0,0,30927.0
2009-12-06,0,0,31440.0,31440.0,31440.0,0,0,0,0,0,31440.0,0.3638888888888889,0.3638888888888889,0,0,0,94,0,31440.0,0,0,0,0,0,31440.0
2009-12-07,0,0,37869.99999999999,37869.99999999999,37869.99999999999,0,0,0,0,0,37869.99999999999,0.4383101851851851,0.4383101851851851,0,0,0,94,0,37869.99999999999,0,0,0,0,0,37869.99999999999
2009-12-08,0,0,38502.0,38502.0,38502.0,0,0,0,0,0,38502.0,0.445625,0.445625,0,0,0,94,0,38502.0,0,0,0,0,0,38502.0
2009-12-09,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2009-12-10,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-11,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2009-12-12,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2009-12-13,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2009-12-14,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-15,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2009-12-16,0,0,93725.0,50000.0,50000.0,0,0,0,0,0,50000.0,1.0847800925925926,1.0847800925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-17,0,0,63249.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7320601851851851,0.7320601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-18,0,0,60375.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6987847222222222,0.6987847222222222,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-19,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2009-12-20,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-21,0,0,20125.0,20125.0,20125.0,0,0,0,0,0,20125.0,0.23292824074074073,0.23292824074074073,0,0,0,94,0,20125.0,0,0,0,0,0,20125.0
2009-12-22,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2009-12-23,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2009-12-24,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2009-12-25,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2009-12-26,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2009-12-27,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-28,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-29,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2009-12-30,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2009-12-31,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2010-01-01,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-02,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-03,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2010-01-04,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2010-01-05,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-06,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2010-01-07,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-08,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
2010-01-09,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-10,0,0,52325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6056134259259259,0.6056134259259259,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-11,0,0,67849.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7853009259259257,0.7853009259259258,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-12,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2010-01-13,0,0,81075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9383680555555556,0.9383680555555556,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-14,0,0,61524.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7120949074074073,0.7120949074074073,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-15,0,0,35650.0,35650.0,35650.0,0,0,0,0,0,35650.0,0.41261574074074076,0.4126157407407407,0,0,0,94,0,35650.0,0,0,0,0,0,35650.0
2010-01-16,0,0,18399.999999999996,18399.999999999996,18399.999999999996,0,0,0,0,0,18399.999999999996,0.2129629629629629,0.21296296296296294,0,0,0,94,0,18399.999999999996,0,0,0,0,0,18399.999999999996
2010-01-17,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2010-01-18,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
2010-01-19,0,0,38525.0,38525.0,38525.0,0,0,0,0,0,38525.0,0.4458912037037037,0.44589120370370366,0,0,0,94,0,38525.0,0,0,0,0,0,38525.0
2010-01-20,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2010-01-21,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-22,0,0,70150.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8119212962962963,0.8119212962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-23,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2010-01-24,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2010-01-25,0,0,64400.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7453703703703703,0.7453703703703703,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-26,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-27,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2010-01-28,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2010-01-29,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
2010-01-30,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-01-31,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2010-02-01,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2010-02-02,0,0,10925.000000000002,10925.000000000002,10925.000000000002,0,0,0,0,0,10925.000000000002,0.12644675925925927,0.12644675925925927,0,0,0,94,0,10925.000000000002,0,0,0,0,0,10925.000000000002
2010-02-03,0,0,12650.0,12650.0,12650.0,0,0,0,0,0,12650.0,0.14641203703703703,0.14641203703703703,0,0,0,94,0,12650.0,0,0,0,0,0,12650.0
2010-02-04,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2010-02-05,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2010-02-06,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2010-02-07,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2010-02-08,0,0,44070.0,44070.0,44070.0,0,0,0,0,0,44070.0,0.5100694444444445,0.5100694444444445,0,0,0,94,0,44070.0,0,0,0,0,0,44070.0
2010-02-09,0,0,42735.0,42735.0,42735.0,0,0,0,0,0,42735.0,0.49461805555555555,0.49461805555555555,0,0,0,94,0,42735.0,0,0,0,0,0,42735.0
2010-02-10,0,0,51229.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5929398148148147,0.5929398148148147,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-02-11,0,0,29960.0,29960.0,29960.0,0,0,0,0,0,29960.0,0.34675925925925927,0.34675925925925927,0,0,0,94,0,29960.0,0,0,0,0,0,29960.0
2010-02-12,0,0,40950.0,40950.0,40950.0,0,0,0,0,0,40950.0,0.4739583333333333,0.4739583333333333,0,0,0,94,0,40950.0,0,0,0,0,0,40950.0
2010-02-13,0,0,41200.0,41200.0,41200.0,0,0,0,0,0,41200.0,0.47685185185185186,0.47685185185185186,0,0,0,94,0,41200.0,0,0,0,0,0,41200.0
2010-02-14,0,0,55549.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6429398148148148,0.6429398148148148,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-02-15,0,0,47520.00000000001,47520.00000000001,47520.00000000001,0,0,0,0,0,47520.00000000001,0.55,0.55,0,0,0,94,0,47520.00000000001,0,0,0,0,0,47520.00000000001
2010-02-16,0,0,56745.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6567708333333333,0.6567708333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-02-17,0,0,37999.99999999999,37999.99999999999,37999.99999999999,0,0,0,0,0,37999.99999999999,0.4398148148148147,0.43981481481481477,0,0,0,94,0,37999.99999999999,0,0,0,0,0,37999.99999999999
2010-02-18,0,0,55799.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6458333333333333,0.6458333333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-02-19,0,0,30030.0,30030.0,30030.0,0,0,0,0,0,30030.0,0.34756944444444443,0.34756944444444443,0,0,0,94,0,30030.0,0,0,0,0,0,30030.0
2010-02-20,0,0,46279.99999999999,46279.99999999999,46279.99999999999,0,0,0,0,0,46279.99999999999,0.5356481481481481,0.5356481481481481,0,0,0,94,0,46279.99999999999,0,0,0,0,0,46279.99999999999
2010-02-21,0,0,30449.999999999996,30449.999999999996,30449.999999999996,0,0,0,0,0,30449.999999999996,0.3524305555555555,0.3524305555555555,0,0,0,94,0,30449.999999999996,0,0,0,0,0,30449.999999999996
2010-02-22,0,0,28050.0,28050.0,28050.0,0,0,0,0,0,28050.0,0.3246527777777778,0.3246527777777778,0,0,0,94,0,28050.0,0,0,0,0,0,28050.0
2010-02-23,0,0,36935.0,36935.0,36935.0,0,0,0,0,0,36935.0,0.42748842592592595,0.42748842592592595,0,0,0,94,0,36935.0,0,0,0,0,0,36935.0
2010-02-24,0,0,38070.0,38070.0,38070.0,0,0,0,0,0,38070.0,0.440625,0.440625,0,0,0,94,0,38070.0,0,0,0,0,0,38070.0
2010-02-25,0,0,39895.0,39895.0,39895.0,0,0,0,0,0,39895.0,0.46174768518518516,0.4617476851851852,0,0,0,94,0,39895.0,0,0,0,0,0,39895.0
2010-02-26,0,0,24254.999999999996,24254.999999999996,24254.999999999996,0,0,0,0,0,24254.999999999996,0.28072916666666664,0.28072916666666664,0,0,0,94,0,24254.999999999996,0,0,0,0,0,24254.999999999996
2010-02-27,0,0,26249.999999999996,26249.999999999996,26249.999999999996,0,0,0,0,0,26249.999999999996,0.3038194444444444,0.3038194444444444,0,0,0,94,0,26249.999999999996,0,0,0,0,0,26249.999999999996
2010-02-28,0,0,23360.0,23360.0,23360.0,0,0,0,0,0,23360.0,0.27037037037037037,0.27037037037037037,0,0,0,94,0,23360.0,0,0,0,0,0,23360.0
2010-03-01,0,0,35855.0,35855.0,35855.0,0,0,0,0,0,35855.0,0.41498842592592594,0.4149884259259259,0,0,0,94,0,35855.0,0,0,0,0,0,35855.0
2010-03-02,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2010-03-03,0,0,21440.0,21440.0,21440.0,0,0,0,0,0,21440.0,0.24814814814814815,0.24814814814814815,0,0,0,94,0,21440.0,0,0,0,0,0,21440.0
2010-03-04,0,0,22750.0,22750.0,22750.0,0,0,0,0,0,22750.0,0.2633101851851852,0.2633101851851852,0,0,0,94,0,22750.0,0,0,0,0,0,22750.0
2010-03-05,0,0,23625.0,23625.0,23625.0,0,0,0,0,0,23625.0,0.2734375,0.2734375,0,0,0,94,0,23625.0,0,0,0,0,0,23625.0
2010-03-06,0,0,23789.999999999996,23789.999999999996,23789.999999999996,0,0,0,0,0,23789.999999999996,0.2753472222222222,0.2753472222222222,0,0,0,94,0,23789.999999999996,0,0,0,0,0,23789.999999999996
2010-03-07,0,0,21535.0,21535.0,21535.0,0,0,0,0,0,21535.0,0.2492476851851852,0.24924768518518517,0,0,0,94,0,21535.0,0,0,0,0,0,21535.0
2010-03-08,0,0,30210.0,30210.0,30210.0,0,0,0,0,0,30210.0,0.34965277777777776,0.34965277777777776,0,0,0,94,0,30210.0,0,0,0,0,0,30210.0
2010-03-09,0,0,36025.0,36025.0,36025.0,0,0,0,0,0,36025.0,0.41695601851851855,0.4169560185185185,0,0,0,94,0,36025.0,0,0,0,0,0,36025.0
2010-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2010-10-25,0,0,9300.0,9300.0,9300.0,0,0,0,0,0,9300.0,0.1076388888888889,0.1076388888888889,0,0,0,94,0,9300.0,0,0,0,0,0,9300.0
2010-10-26,0,0,17250.0,17250.0,17250.0,0,0,0,0,0,17250.0,0.1996527777777778,0.19965277777777776,0,0,0,94,0,17250.0,0,0,0,0,0,17250.0
2010-10-27,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2010-10-28,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
2010-10-29,0,0,5400.0,5400.0,5400.0,0,0,0,0,0,5400.0,0.0625,0.0625,0,0,0,94,0,5400.0,0,0,0,0,0,5400.0
2010-10-30,0,0,8850.0,8850.0,8850.0,0,0,0,0,0,8850.0,0.10243055555555555,0.10243055555555555,0,0,0,94,0,8850.0,0,0,0,0,0,8850.0
2010-10-31,0,0,9900.0,9900.0,9900.0,0,0,0,0,0,9900.0,0.11458333333333333,0.11458333333333333,0,0,0,94,0,9900.0,0,0,0,0,0,9900.0
2010-11-01,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2010-11-02,0,0,4049.9999999999995,4049.9999999999995,4049.9999999999995,0,0,0,0,0,4049.9999999999995,0.04687499999999999,0.04687499999999999,0,0,0,94,0,4049.9999999999995,0,0,0,0,0,4049.9999999999995
2010-11-03,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2010-11-04,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
2010-11-05,0,0,7949.999999999999,7949.999999999999,7949.999999999999,0,0,0,0,0,7949.999999999999,0.09201388888888888,0.09201388888888888,0,0,0,94,0,7949.999999999999,0,0,0,0,0,7949.999999999999
2010-11-06,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2010-11-07,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2010-11-08,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2010-11-09,0,0,8850.0,8850.0,8850.0,0,0,0,0,0,8850.0,0.10243055555555555,0.10243055555555555,0,0,0,94,0,8850.0,0,0,0,0,0,8850.0
2010-11-10,0,0,11400.0,11400.0,11400.0,0,0,0,0,0,11400.0,0.13194444444444445,0.13194444444444445,0,0,0,94,0,11400.0,0,0,0,0,0,11400.0
2010-11-11,0,0,11099.999999999998,11099.999999999998,11099.999999999998,0,0,0,0,0,11099.999999999998,0.1284722222222222,0.1284722222222222,0,0,0,94,0,11099.999999999998,0,0,0,0,0,11099.999999999998
2010-11-12,0,0,8099.999999999999,8099.999999999999,8099.999999999999,0,0,0,0,0,8099.999999999999,0.09374999999999999,0.09374999999999999,0,0,0,94,0,8099.999999999999,0,0,0,0,0,8099.999999999999
2010-11-13,0,0,5700.0,5700.0,5700.0,0,0,0,0,0,5700.0,0.06597222222222222,0.06597222222222222,0,0,0,94,0,5700.0,0,0,0,0,0,5700.0
2010-11-14,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2010-11-15,0,0,7347.999999999999,7347.999999999999,7347.999999999999,0,0,0,0,0,7347.999999999999,0.08504629629629629,0.08504629629629629,0,0,0,94,0,7347.999999999999,0,0,0,0,0,7347.999999999999
2010-11-16,0,0,9752.0,9752.0,9752.0,0,0,0,0,0,9752.0,0.11287037037037037,0.11287037037037037,0,0,0,94,0,9752.0,0,0,0,0,0,9752.0
2010-11-17,0,0,9246.0,9246.0,9246.0,0,0,0,0,0,9246.0,0.1070138888888889,0.1070138888888889,0,0,0,94,0,9246.0,0,0,0,0,0,9246.0
2010-11-18,0,0,14169.999999999998,14169.999999999998,14169.999999999998,0,0,0,0,0,14169.999999999998,0.1640046296296296,0.1640046296296296,0,0,0,94,0,14169.999999999998,0,0,0,0,0,14169.999999999998
2010-11-19,0,0,11279.999999999998,11279.999999999998,11279.999999999998,0,0,0,0,0,11279.999999999998,0.13055555555555554,0.13055555555555554,0,0,0,94,0,11279.999999999998,0,0,0,0,0,11279.999999999998
2010-11-20,0,0,13608.0,13608.0,13608.0,0,0,0,0,0,13608.0,0.1575,0.1575,0,0,0,94,0,13608.0,0,0,0,0,0,13608.0
2010-11-21,0,0,12105.0,12105.0,12105.0,0,0,0,0,0,12105.0,0.14010416666666667,0.14010416666666667,0,0,0,94,0,12105.0,0,0,0,0,0,12105.0
2010-11-22,0,0,14013.999999999998,14013.999999999998,14013.999999999998,0,0,0,0,0,14013.999999999998,0.16219907407407405,0.16219907407407405,0,0,0,94,0,14013.999999999998,0,0,0,0,0,14013.999999999998
2010-11-23,0,0,11817.0,11817.0,11817.0,0,0,0,0,0,11817.0,0.13677083333333334,0.13677083333333334,0,0,0,94,0,11817.0,0,0,0,0,0,11817.0
2010-11-24,0,0,17280.0,17280.0,17280.0,0,0,0,0,0,17280.0,0.2,0.2,0,0,0,94,0,17280.0,0,0,0,0,0,17280.0
2010-11-25,0,0,20556.999999999996,20556.999999999996,20556.999999999996,0,0,0,0,0,20556.999999999996,0.2379282407407407,0.2379282407407407,0,0,0,94,0,20556.999999999996,0,0,0,0,0,20556.999999999996
2010-11-26,0,0,24780.0,24780.0,24780.0,0,0,0,0,0,24780.0,0.28680555555555554,0.28680555555555554,0,0,0,94,0,24780.0,0,0,0,0,0,24780.0
2010-11-27,0,0,23373.0,23373.0,23373.0,0,0,0,0,0,23373.0,0.2705208333333333,0.2705208333333333,0,0,0,94,0,23373.0,0,0,0,0,0,23373.0
2010-11-28,0,0,22116.0,22116.0,22116.0,0,0,0,0,0,22116.0,0.2559722222222222,0.2559722222222222,0,0,0,94,0,22116.0,0,0,0,0,0,22116.0
2010-11-29,0,0,42119.99999999999,42119.99999999999,42119.99999999999,0,0,0,0,0,42119.99999999999,0.48749999999999993,0.48749999999999993,0,0,0,94,0,42119.99999999999,0,0,0,0,0,42119.99999999999
2010-11-30,0,0,40512.0,40512.0,40512.0,0,0,0,0,0,40512.0,0.4688888888888889,0.46888888888888886,0,0,0,94,0,40512.0,0,0,0,0,0,40512.0
2010-12-01,0,0,31608.0,31608.0,31608.0,0,0,0,0,0,31608.0,0.36583333333333334,0.36583333333333334,0,0,0,94,0,31608.0,0,0,0,0,0,31608.0
2010-12-02,0,0,21888.000000000004,21888.000000000004,21888.000000000004,0,0,0,0,0,21888.000000000004,0.25333333333333335,0.25333333333333335,0,0,0,94,0,21888.000000000004,0,0,0,0,0,21888.000000000004
2010-12-03,0,0,26961.0,26961.0,26961.0,0,0,0,0,0,26961.0,0.3120486111111111,0.3120486111111111,0,0,0,94,0,26961.0,0,0,0,0,0,26961.0
2010-12-04,0,0,20579.999999999996,20579.999999999996,20579.999999999996,0,0,0,0,0,20579.999999999996,0.2381944444444444,0.2381944444444444,0,0,0,94,0,20579.999999999996,0,0,0,0,0,20579.999999999996
2010-12-05,0,0,47151.00000000001,47151.00000000001,47151.00000000001,0,0,0,0,0,47151.00000000001,0.5457291666666667,0.5457291666666667,0,0,0,94,0,47151.00000000001,0,0,0,0,0,47151.00000000001
2010-12-06,0,0,59211.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.685324074074074,0.685324074074074,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-12-07,0,0,40575.0,40575.0,40575.0,0,0,0,0,0,40575.0,0.4696180555555556,0.4696180555555556,0,0,0,94,0,40575.0,0,0,0,0,0,40575.0
2010-12-08,0,0,36270.0,36270.0,36270.0,0,0,0,0,0,36270.0,0.4197916666666667,0.4197916666666667,0,0,0,94,0,36270.0,0,0,0,0,0,36270.0
2010-12-09,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2010-12-10,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2010-12-11,0,0,26450.0,26450.0,26450.0,0,0,0,0,0,26450.0,0.30613425925925924,0.30613425925925924,0,0,0,94,0,26450.0,0,0,0,0,0,26450.0
2010-12-12,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2010-12-13,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2010-12-14,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-12-15,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2010-12-16,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2010-12-17,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2010-12-18,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
2010-12-19,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2010-12-20,0,0,75325.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8718171296296297,0.8718171296296297,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2010-12-21,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2010-12-22,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2010-12-23,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2010-12-24,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2010-12-25,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2010-12-26,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2010-12-27,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2010-12-28,0,0,25874.999999999996,25874.999999999996,25874.999999999996,0,0,0,0,0,25874.999999999996,0.29947916666666663,0.29947916666666663,0,0,0,94,0,25874.999999999996,0,0,0,0,0,25874.999999999996
2010-12-29,0,0,26450.0,26450.0,26450.0,0,0,0,0,0,26450.0,0.30613425925925924,0.30613425925925924,0,0,0,94,0,26450.0,0,0,0,0,0,26450.0
2010-12-30,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
2010-12-31,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2011-01-01,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2011-01-02,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2011-01-03,0,0,40825.0,40825.0,40825.0,0,0,0,0,0,40825.0,0.47251157407407407,0.47251157407407407,0,0,0,94,0,40825.0,0,0,0,0,0,40825.0
2011-01-04,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2011-01-05,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2011-01-06,0,0,66125.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7653356481481481,0.7653356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2011-01-07,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2011-01-08,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2011-01-09,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2011-01-10,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2011-01-11,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2011-01-12,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2011-01-13,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2011-01-14,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2011-01-15,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2011-01-16,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2011-01-17,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2011-01-18,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2011-01-19,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2011-01-20,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
2011-01-21,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2011-01-22,0,0,35650.0,35650.0,35650.0,0,0,0,0,0,35650.0,0.41261574074074076,0.4126157407407407,0,0,0,94,0,35650.0,0,0,0,0,0,35650.0
2011-01-23,0,0,47724.99999999999,47724.99999999999,47724.99999999999,0,0,0,0,0,47724.99999999999,0.5523726851851851,0.5523726851851851,0,0,0,94,0,47724.99999999999,0,0,0,0,0,47724.99999999999
2011-01-24,0,0,56925.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6588541666666666,0.6588541666666666,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2011-01-25,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2011-01-26,0,0,54049.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6255787037037036,0.6255787037037036,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2011-01-27,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2011-01-28,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2011-01-29,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2011-01-30,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2011-01-31,0,0,69000.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7986111111111112,0.798611111111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2011-02-01,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2011-02-02,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2011-02-03,0,0,22999.999999999996,22999.999999999996,22999.999999999996,0,0,0,0,0,22999.999999999996,0.26620370370370366,0.26620370370370366,0,0,0,94,0,22999.999999999996,0,0,0,0,0,22999.999999999996
2011-02-04,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2011-02-05,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2011-02-06,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2011-02-07,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2011-02-08,0,0,42374.99999999999,42374.99999999999,42374.99999999999,0,0,0,0,0,42374.99999999999,0.4904513888888888,0.49045138888888884,0,0,0,94,0,42374.99999999999,0,0,0,0,0,42374.99999999999
2011-02-09,0,0,35520.0,35520.0,35520.0,0,0,0,0,0,35520.0,0.4111111111111111,0.41111111111111115,0,0,0,94,0,35520.0,0,0,0,0,0,35520.0
2011-02-10,0,0,35970.0,35970.0,35970.0,0,0,0,0,0,35970.0,0.41631944444444446,0.4163194444444444,0,0,0,94,0,35970.0,0,0,0,0,0,35970.0
2011-02-11,0,0,47615.0,47615.0,47615.0,0,0,0,0,0,47615.0,0.5510995370370371,0.5510995370370371,0,0,0,94,0,47615.0,0,0,0,0,0,47615.0
2011-02-12,0,0,40950.0,40950.0,40950.0,0,0,0,0,0,40950.0,0.4739583333333333,0.4739583333333333,0,0,0,94,0,40950.0,0,0,0,0,0,40950.0
2011-02-13,0,0,36049.99999999999,36049.99999999999,36049.99999999999,0,0,0,0,0,36049.99999999999,0.4172453703703703,0.4172453703703703,0,0,0,94,0,36049.99999999999,0,0,0,0,0,36049.99999999999
2011-02-14,0,0,41409.99999999999,41409.99999999999,41409.99999999999,0,0,0,0,0,41409.99999999999,0.4792824074074073,0.47928240740740735,0,0,0,94,0,41409.99999999999,0,0,0,0,0,41409.99999999999
2011-02-15,0,0,22274.999999999996,22274.999999999996,22274.999999999996,0,0,0,0,0,22274.999999999996,0.25781249999999994,0.25781249999999994,0,0,0,94,0,22274.999999999996,0,0,0,0,0,22274.999999999996
2011-02-16,0,0,12610.0,12610.0,12610.0,0,0,0,0,0,12610.0,0.14594907407407406,0.14594907407407406,0,0,0,94,0,12610.0,0,0,0,0,0,12610.0
2011-02-17,0,0,37049.99999999999,37049.99999999999,37049.99999999999,0,0,0,0,0,37049.99999999999,0.42881944444444436,0.42881944444444436,0,0,0,94,0,37049.99999999999,0,0,0,0,0,37049.99999999999
2011-02-18,0,0,33945.0,33945.0,33945.0,0,0,0,0,0,33945.0,0.39288194444444446,0.3928819444444444,0,0,0,94,0,33945.0,0,0,0,0,0,33945.0
2011-02-19,0,0,31850.0,31850.0,31850.0,0,0,0,0,0,31850.0,0.36863425925925924,0.36863425925925924,0,0,0,94,0,31850.0,0,0,0,0,0,31850.0
2011-02-20,0,0,37825.0,37825.0,37825.0,0,0,0,0,0,37825.0,0.43778935185185186,0.43778935185185186,0,0,0,94,0,37825.0,0,0,0,0,0,37825.0
2011-02-21,0,0,34799.99999999999,34799.99999999999,34799.99999999999,0,0,0,0,0,34799.99999999999,0.4027777777777777,0.40277777777777773,0,0,0,94,0,34799.99999999999,0,0,0,0,0,34799.99999999999
2011-02-22,0,0,27199.999999999996,27199.999999999996,27199.999999999996,0,0,0,0,0,27199.999999999996,0.31481481481481477,0.31481481481481477,0,0,0,94,0,27199.999999999996,0,0,0,0,0,27199.999999999996
2011-02-23,0,0,32369.999999999996,32369.999999999996,32369.999999999996,0,0,0,0,0,32369.999999999996,0.3746527777777777,0.3746527777777777,0,0,0,94,0,32369.999999999996,0,0,0,0,0,32369.999999999996
2011-02-24,0,0,31184.999999999996,31184.999999999996,31184.999999999996,0,0,0,0,0,31184.999999999996,0.36093749999999997,0.36093749999999997,0,0,0,94,0,31184.999999999996,0,0,0,0,0,31184.999999999996
2011-02-25,0,0,23305.0,23305.0,23305.0,0,0,0,0,0,23305.0,0.2697337962962963,0.2697337962962963,0,0,0,94,0,23305.0,0,0,0,0,0,23305.0
2011-02-26,0,0,25410.0,25410.0,25410.0,0,0,0,0,0,25410.0,0.29409722222222223,0.29409722222222223,0,0,0,94,0,25410.0,0,0,0,0,0,25410.0
2011-02-27,0,0,33750.0,33750.0,33750.0,0,0,0,0,0,33750.0,0.390625,0.390625,0,0,0,94,0,33750.0,0,0,0,0,0,33750.0
2011-02-28,0,0,47815.0,47815.0,47815.0,0,0,0,0,0,47815.0,0.5534143518518518,0.5534143518518518,0,0,0,94,0,47815.0,0,0,0,0,0,47815.0
2011-03-01,0,0,31949.999999999996,31949.999999999996,31949.999999999996,0,0,0,0,0,31949.999999999996,0.36979166666666663,0.36979166666666663,0,0,0,94,0,31949.999999999996,0,0,0,0,0,31949.999999999996
2011-03-02,0,0,31739.999999999996,31739.999999999996,31739.999999999996,0,0,0,0,0,31739.999999999996,0.3673611111111111,0.3673611111111111,0,0,0,94,0,31739.999999999996,0,0,0,0,0,31739.999999999996
2011-03-03,0,0,23450.0,23450.0,23450.0,0,0,0,0,0,23450.0,0.27141203703703703,0.27141203703703703,0,0,0,94,0,23450.0,0,0,0,0,0,23450.0
2011-03-04,0,0,20475.0,20475.0,20475.0,0,0,0,0,0,20475.0,0.23697916666666666,0.23697916666666666,0,0,0,94,0,20475.0,0,0,0,0,0,20475.0
2011-03-05,0,0,32759.999999999993,32759.999999999993,32759.999999999993,0,0,0,0,0,32759.999999999993,0.3791666666666666,0.3791666666666666,0,0,0,94,0,32759.999999999993,0,0,0,0,0,32759.999999999993
2011-03-06,0,0,17995.0,17995.0,17995.0,0,0,0,0,0,17995.0,0.20827546296296295,0.20827546296296295,0,0,0,94,0,17995.0,0,0,0,0,0,17995.0
2011-03-07,0,0,23600.0,23600.0,23600.0,0,0,0,0,0,23600.0,0.27314814814814814,0.27314814814814814,0,0,0,94,0,23600.0,0,0,0,0,0,23600.0
2011-03-08,0,0,26219.999999999996,26219.999999999996,26219.999999999996,0,0,0,0,0,26219.999999999996,0.3034722222222222,0.3034722222222222,0,0,0,94,0,26219.999999999996,0,0,0,0,0,26219.999999999996
2011-03-09,0,0,19249.999999999996,19249.999999999996,19249.999999999996,0,0,0,0,0,19249.999999999996,0.22280092592592587,0.2228009259259259,0,0,0,94,0,19249.999999999996,0,0,0,0,0,19249.999999999996
2011-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2011-10-26,0,0,7800.0,7800.0,7800.0,0,0,0,0,0,7800.0,0.09027777777777778,0.09027777777777778,0,0,0,94,0,7800.0,0,0,0,0,0,7800.0
2011-10-27,0,0,4950.0,4950.0,4950.0,0,0,0,0,0,4950.0,0.057291666666666664,0.057291666666666664,0,0,0,94,0,4950.0,0,0,0,0,0,4950.0
2011-10-28,0,0,2400.0,2400.0,2400.0,0,0,0,0,0,2400.0,0.027777777777777776,0.027777777777777776,0,0,0,94,0,2400.0,0,0,0,0,0,2400.0
2011-10-29,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2011-10-30,0,0,3600.0,3600.0,3600.0,0,0,0,0,0,3600.0,0.041666666666666664,0.041666666666666664,0,0,0,94,0,3600.0,0,0,0,0,0,3600.0
2011-10-31,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2011-11-01,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2011-11-02,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2011-11-03,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2011-11-04,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2011-11-05,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2011-11-06,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2011-11-07,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2011-11-08,0,0,9900.0,9900.0,9900.0,0,0,0,0,0,9900.0,0.11458333333333333,0.11458333333333333,0,0,0,94,0,9900.0,0,0,0,0,0,9900.0
2011-11-09,0,0,11400.0,11400.0,11400.0,0,0,0,0,0,11400.0,0.13194444444444445,0.13194444444444445,0,0,0,94,0,11400.0,0,0,0,0,0,11400.0
2011-11-10,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2011-11-11,0,0,6899.999999999999,6899.999999999999,6899.999999999999,0,0,0,0,0,6899.999999999999,0.0798611111111111,0.0798611111111111,0,0,0,94,0,6899.999999999999,0,0,0,0,0,6899.999999999999
2011-11-12,0,0,7949.999999999999,7949.999999999999,7949.999999999999,0,0,0,0,0,7949.999999999999,0.09201388888888888,0.09201388888888888,0,0,0,94,0,7949.999999999999,0,0,0,0,0,7949.999999999999
2011-11-13,0,0,5400.0,5400.0,5400.0,0,0,0,0,0,5400.0,0.0625,0.0625,0,0,0,94,0,5400.0,0,0,0,0,0,5400.0
2011-11-14,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2011-11-15,0,0,7650.0,7650.0,7650.0,0,0,0,0,0,7650.0,0.08854166666666667,0.08854166666666667,0,0,0,94,0,7650.0,0,0,0,0,0,7650.0
2011-11-16,0,0,9352.0,9352.0,9352.0,0,0,0,0,0,9352.0,0.10824074074074073,0.10824074074074073,0,0,0,94,0,9352.0,0,0,0,0,0,9352.0
2011-11-17,0,0,7175.999999999999,7175.999999999999,7175.999999999999,0,0,0,0,0,7175.999999999999,0.08305555555555555,0.08305555555555555,0,0,0,94,0,7175.999999999999,0,0,0,0,0,7175.999999999999
2011-11-18,0,0,8843.999999999998,8843.999999999998,8843.999999999998,0,0,0,0,0,8843.999999999998,0.10236111111111108,0.1023611111111111,0,0,0,94,0,8843.999999999998,0,0,0,0,0,8843.999999999998
2011-11-19,0,0,10464.0,10464.0,10464.0,0,0,0,0,0,10464.0,0.12111111111111111,0.12111111111111111,0,0,0,94,0,10464.0,0,0,0,0,0,10464.0
2011-11-20,0,0,19975.0,19975.0,19975.0,0,0,0,0,0,19975.0,0.23119212962962962,0.23119212962962962,0,0,0,94,0,19975.0,0,0,0,0,0,19975.0
2011-11-21,0,0,11592.0,11592.0,11592.0,0,0,0,0,0,11592.0,0.13416666666666666,0.13416666666666666,0,0,0,94,0,11592.0,0,0,0,0,0,11592.0
2011-11-22,0,0,6456.0,6456.0,6456.0,0,0,0,0,0,6456.0,0.07472222222222222,0.07472222222222222,0,0,0,94,0,6456.0,0,0,0,0,0,6456.0
2011-11-23,0,0,10868.0,10868.0,10868.0,0,0,0,0,0,10868.0,0.12578703703703703,0.12578703703703703,0,0,0,94,0,10868.0,0,0,0,0,0,10868.0
2011-11-24,0,0,17877.0,17877.0,17877.0,0,0,0,0,0,17877.0,0.20690972222222223,0.2069097222222222,0,0,0,94,0,17877.0,0,0,0,0,0,17877.0
2011-11-25,0,0,14400.0,14400.0,14400.0,0,0,0,0,0,14400.0,0.16666666666666666,0.16666666666666666,0,0,0,94,0,14400.0,0,0,0,0,0,14400.0
2011-11-26,0,0,22242.0,22242.0,22242.0,0,0,0,0,0,22242.0,0.25743055555555555,0.25743055555555555,0,0,0,94,0,22242.0,0,0,0,0,0,22242.0
2011-11-27,0,0,20178.0,20178.0,20178.0,0,0,0,0,0,20178.0,0.23354166666666668,0.23354166666666668,0,0,0,94,0,20178.0,0,0,0,0,0,20178.0
2011-11-28,0,0,24114.999999999996,24114.999999999996,24114.999999999996,0,0,0,0,0,24114.999999999996,0.27910879629629626,0.27910879629629626,0,0,0,94,0,24114.999999999996,0,0,0,0,0,24114.999999999996
2011-11-29,0,0,17071.999999999996,17071.999999999996,17071.999999999996,0,0,0,0,0,17071.999999999996,0.19759259259259254,0.19759259259259257,0,0,0,94,0,17071.999999999996,0,0,0,0,0,17071.999999999996
2011-11-30,0,0,23085.000000000004,23085.000000000004,23085.000000000004,0,0,0,0,0,23085.000000000004,0.2671875,0.2671875,0,0,0,94,0,23085.000000000004,0,0,0,0,0,23085.000000000004
2011-12-01,0,0,10128.0,10128.0,10128.0,0,0,0,0,0,10128.0,0.11722222222222223,0.11722222222222221,0,0,0,94,0,10128.0,0,0,0,0,0,10128.0
2011-12-02,0,0,22389.0,22389.0,22389.0,0,0,0,0,0,22389.0,0.25913194444444443,0.25913194444444443,0,0,0,94,0,22389.0,0,0,0,0,0,22389.0
2011-12-03,0,0,23256.0,23256.0,23256.0,0,0,0,0,0,23256.0,0.26916666666666667,0.26916666666666667,0,0,0,94,0,23256.0,0,0,0,0,0,23256.0
2011-12-04,0,0,23177.0,23177.0,23177.0,0,0,0,0,0,23177.0,0.2682523148148148,0.2682523148148148,0,0,0,94,0,23177.0,0,0,0,0,0,23177.0
2011-12-05,0,0,32340.0,32340.0,32340.0,0,0,0,0,0,32340.0,0.37430555555555556,0.37430555555555556,0,0,0,94,0,32340.0,0,0,0,0,0,32340.0
2011-12-06,0,0,27377.999999999996,27377.999999999996,27377.999999999996,0,0,0,0,0,27377.999999999996,0.31687499999999996,0.31687499999999996,0,0,0,94,0,27377.999999999996,0,0,0,0,0,27377.999999999996
2011-12-07,0,0,25152.0,25152.0,25152.0,0,0,0,0,0,25152.0,0.2911111111111111,0.2911111111111111,0,0,0,94,0,25152.0,0,0,0,0,0,25152.0
2011-12-08,0,0,22721.999999999996,22721.999999999996,22721.999999999996,0,0,0,0,0,22721.999999999996,0.2629861111111111,0.2629861111111111,0,0,0,94,0,22721.999999999996,0,0,0,0,0,22721.999999999996
2011-12-09,0,0,24551.999999999996,24551.999999999996,24551.999999999996,0,0,0,0,0,24551.999999999996,0.2841666666666666,0.2841666666666666,0,0,0,94,0,24551.999999999996,0,0,0,0,0,24551.999999999996
2011-12-10,0,0,32774.99999999999,32774.99999999999,32774.99999999999,0,0,0,0,0,32774.99999999999,0.3793402777777777,0.37934027777777773,0,0,0,94,0,32774.99999999999,0,0,0,0,0,32774.99999999999
2011-12-11,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2011-12-12,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2011-12-13,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2011-12-14,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2011-12-15,0,0,46575.0,46575.0,46575.0,0,0,0,0,0,46575.0,0.5390625,0.5390625,0,0,0,94,0,46575.0,0,0,0,0,0,46575.0
2011-12-16,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2011-12-17,0,0,14374.999999999998,14374.999999999998,14374.999999999998,0,0,0,0,0,14374.999999999998,0.1663773148148148,0.1663773148148148,0,0,0,94,0,14374.999999999998,0,0,0,0,0,14374.999999999998
2011-12-18,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2011-12-19,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2011-12-20,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2011-12-21,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
2011-12-22,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2011-12-23,0,0,45999.99999999999,45999.99999999999,45999.99999999999,0,0,0,0,0,45999.99999999999,0.5324074074074073,0.5324074074074073,0,0,0,94,0,45999.99999999999,0,0,0,0,0,45999.99999999999
2011-12-24,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2011-12-25,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2011-12-26,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2011-12-27,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2011-12-28,0,0,15525.0,15525.0,15525.0,0,0,0,0,0,15525.0,0.1796875,0.1796875,0,0,0,94,0,15525.0,0,0,0,0,0,15525.0
2011-12-29,0,0,9775.0,9775.0,9775.0,0,0,0,0,0,9775.0,0.11313657407407407,0.11313657407407407,0,0,0,94,0,9775.0,0,0,0,0,0,9775.0
2011-12-30,0,0,12650.0,12650.0,12650.0,0,0,0,0,0,12650.0,0.14641203703703703,0.14641203703703703,0,0,0,94,0,12650.0,0,0,0,0,0,12650.0
2011-12-31,0,0,21274.999999999996,21274.999999999996,21274.999999999996,0,0,0,0,0,21274.999999999996,0.24623842592592587,0.2462384259259259,0,0,0,94,0,21274.999999999996,0,0,0,0,0,21274.999999999996
2012-01-01,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2012-01-02,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2012-01-03,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2012-01-04,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2012-01-05,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2012-01-06,0,0,18975.0,18975.0,18975.0,0,0,0,0,0,18975.0,0.21961805555555555,0.21961805555555555,0,0,0,94,0,18975.0,0,0,0,0,0,18975.0
2012-01-07,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2012-01-08,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2012-01-09,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2012-01-10,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2012-01-11,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2012-01-12,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2012-01-13,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2012-01-14,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2012-01-15,0,0,47150.0,47150.0,47150.0,0,0,0,0,0,47150.0,0.5457175925925926,0.5457175925925926,0,0,0,94,0,47150.0,0,0,0,0,0,47150.0
2012-01-16,0,0,42549.99999999999,42549.99999999999,42549.99999999999,0,0,0,0,0,42549.99999999999,0.49247685185185175,0.4924768518518518,0,0,0,94,0,42549.99999999999,0,0,0,0,0,42549.99999999999
2012-01-17,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2012-01-18,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2012-01-19,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2012-01-20,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2012-01-21,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2012-01-22,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2012-01-23,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-01-24,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2012-01-25,0,0,38525.0,38525.0,38525.0,0,0,0,0,0,38525.0,0.4458912037037037,0.44589120370370366,0,0,0,94,0,38525.0,0,0,0,0,0,38525.0
2012-01-26,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2012-01-27,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2012-01-28,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2012-01-29,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2012-01-30,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2012-01-31,0,0,30474.999999999996,30474.999999999996,30474.999999999996,0,0,0,0,0,30474.999999999996,0.3527199074074074,0.3527199074074074,0,0,0,94,0,30474.999999999996,0,0,0,0,0,30474.999999999996
2012-02-01,0,0,54049.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6255787037037036,0.6255787037037036,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-02-02,0,0,6325.0,6325.0,6325.0,0,0,0,0,0,6325.0,0.07320601851851852,0.07320601851851852,0,0,0,94,0,6325.0,0,0,0,0,0,6325.0
2012-02-03,0,0,10350.0,10350.0,10350.0,0,0,0,0,0,10350.0,0.11979166666666667,0.11979166666666666,0,0,0,94,0,10350.0,0,0,0,0,0,10350.0
2012-02-04,0,0,9199.999999999998,9199.999999999998,9199.999999999998,0,0,0,0,0,9199.999999999998,0.10648148148148145,0.10648148148148147,0,0,0,94,0,9199.999999999998,0,0,0,0,0,9199.999999999998
2012-02-05,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2012-02-06,0,0,18399.999999999996,18399.999999999996,18399.999999999996,0,0,0,0,0,18399.999999999996,0.2129629629629629,0.21296296296296294,0,0,0,94,0,18399.999999999996,0,0,0,0,0,18399.999999999996
2012-02-07,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2012-02-08,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2012-02-09,0,0,18079.999999999996,18079.999999999996,18079.999999999996,0,0,0,0,0,18079.999999999996,0.20925925925925923,0.20925925925925923,0,0,0,94,0,18079.999999999996,0,0,0,0,0,18079.999999999996
2012-02-10,0,0,36630.0,36630.0,36630.0,0,0,0,0,0,36630.0,0.4239583333333333,0.4239583333333333,0,0,0,94,0,36630.0,0,0,0,0,0,36630.0
2012-02-11,0,0,40329.99999999999,40329.99999999999,40329.99999999999,0,0,0,0,0,40329.99999999999,0.46678240740740734,0.46678240740740734,0,0,0,94,0,40329.99999999999,0,0,0,0,0,40329.99999999999
2012-02-12,0,0,37985.0,37985.0,37985.0,0,0,0,0,0,37985.0,0.4396412037037037,0.4396412037037037,0,0,0,94,0,37985.0,0,0,0,0,0,37985.0
2012-02-13,0,0,51975.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6015625,0.6015625,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-02-14,0,0,61799.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7152777777777777,0.7152777777777777,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-02-15,0,0,52014.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6020254629629629,0.6020254629629629,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-02-16,0,0,68805.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7963541666666667,0.7963541666666667,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-02-17,0,0,47045.0,47045.0,47045.0,0,0,0,0,0,47045.0,0.5445023148148148,0.5445023148148148,0,0,0,94,0,47045.0,0,0,0,0,0,47045.0
2012-02-18,0,0,28024.999999999996,28024.999999999996,28024.999999999996,0,0,0,0,0,28024.999999999996,0.3243634259259259,0.3243634259259259,0,0,0,94,0,28024.999999999996,0,0,0,0,0,28024.999999999996
2012-02-19,0,0,45104.99999999999,45104.99999999999,45104.99999999999,0,0,0,0,0,45104.99999999999,0.522048611111111,0.522048611111111,0,0,0,94,0,45104.99999999999,0,0,0,0,0,45104.99999999999
2012-02-20,0,0,38220.0,38220.0,38220.0,0,0,0,0,0,38220.0,0.4423611111111111,0.4423611111111111,0,0,0,94,0,38220.0,0,0,0,0,0,38220.0
2012-02-21,0,0,28035.0,28035.0,28035.0,0,0,0,0,0,28035.0,0.32447916666666665,0.32447916666666665,0,0,0,94,0,28035.0,0,0,0,0,0,28035.0
2012-02-22,0,0,26535.0,26535.0,26535.0,0,0,0,0,0,26535.0,0.30711805555555555,0.30711805555555555,0,0,0,94,0,26535.0,0,0,0,0,0,26535.0
2012-02-23,0,0,34000.0,34000.0,34000.0,0,0,0,0,0,34000.0,0.39351851851851855,0.3935185185185185,0,0,0,94,0,34000.0,0,0,0,0,0,34000.0
2012-02-24,0,0,27390.0,27390.0,27390.0,0,0,0,0,0,27390.0,0.3170138888888889,0.3170138888888889,0,0,0,94,0,27390.0,0,0,0,0,0,27390.0
2012-02-25,0,0,24704.999999999996,24704.999999999996,24704.999999999996,0,0,0,0,0,24704.999999999996,0.28593749999999996,0.28593749999999996,0,0,0,94,0,24704.999999999996,0,0,0,0,0,24704.999999999996
2012-02-26,0,0,41870.0,41870.0,41870.0,0,0,0,0,0,41870.0,0.4846064814814815,0.48460648148148144,0,0,0,94,0,41870.0,0,0,0,0,0,41870.0
2012-02-27,0,0,34265.0,34265.0,34265.0,0,0,0,0,0,34265.0,0.3965856481481482,0.3965856481481481,0,0,0,94,0,34265.0,0,0,0,0,0,34265.0
2012-02-28,0,0,20250.0,20250.0,20250.0,0,0,0,0,0,20250.0,0.234375,0.234375,0,0,0,94,0,20250.0,0,0,0,0,0,20250.0
2012-02-29,0,0,24800.0,24800.0,24800.0,0,0,0,0,0,24800.0,0.28703703703703703,0.28703703703703703,0,0,0,94,0,24800.0,0,0,0,0,0,24800.0
2012-03-01,0,0,34435.0,34435.0,34435.0,0,0,0,0,0,34435.0,0.3985532407407407,0.3985532407407407,0,0,0,94,0,34435.0,0,0,0,0,0,34435.0
2012-03-02,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2012-03-03,0,0,18760.0,18760.0,18760.0,0,0,0,0,0,18760.0,0.21712962962962962,0.21712962962962964,0,0,0,94,0,18760.0,0,0,0,0,0,18760.0
2012-03-04,0,0,12024.999999999998,12024.999999999998,12024.999999999998,0,0,0,0,0,12024.999999999998,0.13917824074074073,0.13917824074074073,0,0,0,94,0,12024.999999999998,0,0,0,0,0,12024.999999999998
2012-03-05,0,0,17010.0,17010.0,17010.0,0,0,0,0,0,17010.0,0.196875,0.196875,0,0,0,94,0,17010.0,0,0,0,0,0,17010.0
2012-03-06,0,0,15250.0,15250.0,15250.0,0,0,0,0,0,15250.0,0.17650462962962962,0.17650462962962962,0,0,0,94,0,15250.0,0,0,0,0,0,15250.0
2012-03-07,0,0,17405.0,17405.0,17405.0,0,0,0,0,0,17405.0,0.20144675925925926,0.20144675925925926,0,0,0,94,0,17405.0,0,0,0,0,0,17405.0
2012-03-08,0,0,22229.999999999996,22229.999999999996,22229.999999999996,0,0,0,0,0,22229.999999999996,0.25729166666666664,0.25729166666666664,0,0,0,94,0,22229.999999999996,0,0,0,0,0,22229.999999999996
2012-03-09,0,0,19525.0,19525.0,19525.0,0,0,0,0,0,19525.0,0.2259837962962963,0.22598379629629628,0,0,0,94,0,19525.0,0,0,0,0,0,19525.0
2012-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2012-10-25,0,0,4349.999999999999,4349.999999999999,4349.999999999999,0,0,0,0,0,4349.999999999999,0.05034722222222221,0.05034722222222222,0,0,0,94,0,4349.999999999999,0,0,0,0,0,4349.999999999999
2012-10-26,0,0,3299.9999999999995,3299.9999999999995,3299.9999999999995,0,0,0,0,0,3299.9999999999995,0.03819444444444444,0.03819444444444444,0,0,0,94,0,3299.9999999999995,0,0,0,0,0,3299.9999999999995
2012-10-27,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2012-10-28,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2012-10-29,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2012-10-30,0,0,4800.0,4800.0,4800.0,0,0,0,0,0,4800.0,0.05555555555555555,0.05555555555555555,0,0,0,94,0,4800.0,0,0,0,0,0,4800.0
2012-10-31,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2012-11-01,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2012-11-02,0,0,6450.0,6450.0,6450.0,0,0,0,0,0,6450.0,0.07465277777777778,0.07465277777777778,0,0,0,94,0,6450.0,0,0,0,0,0,6450.0
2012-11-03,0,0,8850.0,8850.0,8850.0,0,0,0,0,0,8850.0,0.10243055555555555,0.10243055555555555,0,0,0,94,0,8850.0,0,0,0,0,0,8850.0
2012-11-04,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2012-11-05,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2012-11-06,0,0,7500.0,7500.0,7500.0,0,0,0,0,0,7500.0,0.08680555555555555,0.08680555555555555,0,0,0,94,0,7500.0,0,0,0,0,0,7500.0
2012-11-07,0,0,10350.0,10350.0,10350.0,0,0,0,0,0,10350.0,0.11979166666666667,0.11979166666666666,0,0,0,94,0,10350.0,0,0,0,0,0,10350.0
2012-11-08,0,0,3000.0,3000.0,3000.0,0,0,0,0,0,3000.0,0.034722222222222224,0.034722222222222224,0,0,0,94,0,3000.0,0,0,0,0,0,3000.0
2012-11-09,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2012-11-10,0,0,3900.0,3900.0,3900.0,0,0,0,0,0,3900.0,0.04513888888888889,0.04513888888888889,0,0,0,94,0,3900.0,0,0,0,0,0,3900.0
2012-11-11,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2012-11-12,0,0,7349.999999999999,7349.999999999999,7349.999999999999,0,0,0,0,0,7349.999999999999,0.08506944444444443,0.08506944444444443,0,0,0,94,0,7349.999999999999,0,0,0,0,0,7349.999999999999
2012-11-13,0,0,5700.0,5700.0,5700.0,0,0,0,0,0,5700.0,0.06597222222222222,0.06597222222222222,0,0,0,94,0,5700.0,0,0,0,0,0,5700.0
2012-11-14,0,0,4500.0,4500.0,4500.0,0,0,0,0,0,4500.0,0.052083333333333336,0.05208333333333333,0,0,0,94,0,4500.0,0,0,0,0,0,4500.0
2012-11-15,0,0,7013.999999999999,7013.999999999999,7013.999999999999,0,0,0,0,0,7013.999999999999,0.08118055555555555,0.08118055555555555,0,0,0,94,0,7013.999999999999,0,0,0,0,0,7013.999999999999
2012-11-16,0,0,5520.0,5520.0,5520.0,0,0,0,0,0,5520.0,0.06388888888888888,0.06388888888888888,0,0,0,94,0,5520.0,0,0,0,0,0,5520.0
2012-11-17,0,0,11859.0,11859.0,11859.0,0,0,0,0,0,11859.0,0.13725694444444445,0.13725694444444445,0,0,0,94,0,11859.0,0,0,0,0,0,11859.0
2012-11-18,0,0,8284.0,8284.0,8284.0,0,0,0,0,0,8284.0,0.09587962962962963,0.09587962962962963,0,0,0,94,0,8284.0,0,0,0,0,0,8284.0
2012-11-19,0,0,11984.999999999998,11984.999999999998,11984.999999999998,0,0,0,0,0,11984.999999999998,0.13871527777777776,0.13871527777777776,0,0,0,94,0,11984.999999999998,0,0,0,0,0,11984.999999999998
2012-11-20,0,0,8567.999999999998,8567.999999999998,8567.999999999998,0,0,0,0,0,8567.999999999998,0.09916666666666664,0.09916666666666665,0,0,0,94,0,8567.999999999998,0,0,0,0,0,8567.999999999998
2012-11-21,0,0,18292.0,18292.0,18292.0,0,0,0,0,0,18292.0,0.21171296296296296,0.21171296296296296,0,0,0,94,0,18292.0,0,0,0,0,0,18292.0
2012-11-22,0,0,28599.999999999996,28599.999999999996,28599.999999999996,0,0,0,0,0,28599.999999999996,0.3310185185185185,0.3310185185185185,0,0,0,94,0,28599.999999999996,0,0,0,0,0,28599.999999999996
2012-11-23,0,0,13332.0,13332.0,13332.0,0,0,0,0,0,13332.0,0.15430555555555556,0.15430555555555556,0,0,0,94,0,13332.0,0,0,0,0,0,13332.0
2012-11-24,0,0,15359.999999999998,15359.999999999998,15359.999999999998,0,0,0,0,0,15359.999999999998,0.17777777777777776,0.17777777777777776,0,0,0,94,0,15359.999999999998,0,0,0,0,0,15359.999999999998
2012-11-25,0,0,21904.999999999996,21904.999999999996,21904.999999999996,0,0,0,0,0,21904.999999999996,0.25353009259259257,0.25353009259259257,0,0,0,94,0,21904.999999999996,0,0,0,0,0,21904.999999999996
2012-11-26,0,0,15929.999999999998,15929.999999999998,15929.999999999998,0,0,0,0,0,15929.999999999998,0.18437499999999998,0.18437499999999998,0,0,0,94,0,15929.999999999998,0,0,0,0,0,15929.999999999998
2012-11-27,0,0,21889.0,21889.0,21889.0,0,0,0,0,0,21889.0,0.2533449074074074,0.2533449074074074,0,0,0,94,0,21889.0,0,0,0,0,0,21889.0
2012-11-28,0,0,25220.0,25220.0,25220.0,0,0,0,0,0,25220.0,0.29189814814814813,0.29189814814814813,0,0,0,94,0,25220.0,0,0,0,0,0,25220.0
2012-11-29,0,0,30780.0,30780.0,30780.0,0,0,0,0,0,30780.0,0.35625,0.35625,0,0,0,94,0,30780.0,0,0,0,0,0,30780.0
2012-11-30,0,0,11394.0,11394.0,11394.0,0,0,0,0,0,11394.0,0.131875,0.131875,0,0,0,94,0,11394.0,0,0,0,0,0,11394.0
2012-12-01,0,0,14926.0,14926.0,14926.0,0,0,0,0,0,14926.0,0.17275462962962962,0.17275462962962962,0,0,0,94,0,14926.0,0,0,0,0,0,14926.0
2012-12-02,0,0,31008.0,31008.0,31008.0,0,0,0,0,0,31008.0,0.35888888888888887,0.35888888888888887,0,0,0,94,0,31008.0,0,0,0,0,0,31008.0
2012-12-03,0,0,25068.999999999996,25068.999999999996,25068.999999999996,0,0,0,0,0,25068.999999999996,0.29015046296296293,0.29015046296296293,0,0,0,94,0,25068.999999999996,0,0,0,0,0,25068.999999999996
2012-12-04,0,0,24989.999999999996,24989.999999999996,24989.999999999996,0,0,0,0,0,24989.999999999996,0.2892361111111111,0.2892361111111111,0,0,0,94,0,24989.999999999996,0,0,0,0,0,24989.999999999996
2012-12-05,0,0,29913.0,29913.0,29913.0,0,0,0,0,0,29913.0,0.3462152777777778,0.3462152777777778,0,0,0,94,0,29913.0,0,0,0,0,0,29913.0
2012-12-06,0,0,34060.0,34060.0,34060.0,0,0,0,0,0,34060.0,0.394212962962963,0.394212962962963,0,0,0,94,0,34060.0,0,0,0,0,0,34060.0
2012-12-07,0,0,45443.99999999999,45443.99999999999,45443.99999999999,0,0,0,0,0,45443.99999999999,0.5259722222222222,0.5259722222222222,0,0,0,94,0,45443.99999999999,0,0,0,0,0,45443.99999999999
2012-12-08,0,0,42408.0,42408.0,42408.0,0,0,0,0,0,42408.0,0.49083333333333334,0.49083333333333334,0,0,0,94,0,42408.0,0,0,0,0,0,42408.0
2012-12-09,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2012-12-10,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2012-12-11,0,0,78200.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.9050925925925926,0.9050925925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-12-12,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-12-13,0,0,21850.000000000004,21850.000000000004,21850.000000000004,0,0,0,0,0,21850.000000000004,0.25289351851851855,0.25289351851851855,0,0,0,94,0,21850.000000000004,0,0,0,0,0,21850.000000000004
2012-12-14,0,0,24149.999999999996,24149.999999999996,24149.999999999996,0,0,0,0,0,24149.999999999996,0.27951388888888884,0.27951388888888884,0,0,0,94,0,24149.999999999996,0,0,0,0,0,24149.999999999996
2012-12-15,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
2012-12-16,0,0,39100.0,39100.0,39100.0,0,0,0,0,0,39100.0,0.4525462962962963,0.4525462962962963,0,0,0,94,0,39100.0,0,0,0,0,0,39100.0
2012-12-17,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2012-12-18,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2012-12-19,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-12-20,0,0,63825.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7387152777777778,0.7387152777777778,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-12-21,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-12-22,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2012-12-23,0,0,15525.0,15525.0,15525.0,0,0,0,0,0,15525.0,0.1796875,0.1796875,0,0,0,94,0,15525.0,0,0,0,0,0,15525.0
2012-12-24,0,0,29325.0,29325.0,29325.0,0,0,0,0,0,29325.0,0.3394097222222222,0.3394097222222222,0,0,0,94,0,29325.0,0,0,0,0,0,29325.0
2012-12-25,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2012-12-26,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2012-12-27,0,0,33350.0,33350.0,33350.0,0,0,0,0,0,33350.0,0.38599537037037035,0.38599537037037035,0,0,0,94,0,33350.0,0,0,0,0,0,33350.0
2012-12-28,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2012-12-29,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2012-12-30,0,0,51749.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5989583333333333,0.5989583333333333,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2012-12-31,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2013-01-01,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2013-01-02,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2013-01-03,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2013-01-04,0,0,24724.999999999996,24724.999999999996,24724.999999999996,0,0,0,0,0,24724.999999999996,0.28616898148148145,0.28616898148148145,0,0,0,94,0,24724.999999999996,0,0,0,0,0,24724.999999999996
2013-01-05,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2013-01-06,0,0,36225.0,36225.0,36225.0,0,0,0,0,0,36225.0,0.4192708333333333,0.4192708333333333,0,0,0,94,0,36225.0,0,0,0,0,0,36225.0
2013-01-07,0,0,34500.0,34500.0,34500.0,0,0,0,0,0,34500.0,0.3993055555555556,0.3993055555555555,0,0,0,94,0,34500.0,0,0,0,0,0,34500.0
2013-01-08,0,0,27599.999999999996,27599.999999999996,27599.999999999996,0,0,0,0,0,27599.999999999996,0.3194444444444444,0.3194444444444444,0,0,0,94,0,27599.999999999996,0,0,0,0,0,27599.999999999996
2013-01-09,0,0,31624.999999999996,31624.999999999996,31624.999999999996,0,0,0,0,0,31624.999999999996,0.36603009259259256,0.36603009259259256,0,0,0,94,0,31624.999999999996,0,0,0,0,0,31624.999999999996
2013-01-10,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2013-01-11,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2013-01-12,0,0,37950.0,37950.0,37950.0,0,0,0,0,0,37950.0,0.4392361111111111,0.4392361111111111,0,0,0,94,0,37950.0,0,0,0,0,0,37950.0
2013-01-13,0,0,62675.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7254050925925926,0.7254050925925926,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-01-14,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2013-01-15,0,0,28749.999999999996,28749.999999999996,28749.999999999996,0,0,0,0,0,28749.999999999996,0.3327546296296296,0.3327546296296296,0,0,0,94,0,28749.999999999996,0,0,0,0,0,28749.999999999996
2013-01-16,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-01-17,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2013-01-18,0,0,35075.0,35075.0,35075.0,0,0,0,0,0,35075.0,0.40596064814814814,0.40596064814814814,0,0,0,94,0,35075.0,0,0,0,0,0,35075.0
2013-01-19,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2013-01-20,0,0,31050.0,31050.0,31050.0,0,0,0,0,0,31050.0,0.359375,0.359375,0,0,0,94,0,31050.0,0,0,0,0,0,31050.0
2013-01-21,0,0,40250.0,40250.0,40250.0,0,0,0,0,0,40250.0,0.46585648148148145,0.46585648148148145,0,0,0,94,0,40250.0,0,0,0,0,0,40250.0
2013-01-22,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-01-23,0,0,71875.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8318865740740741,0.8318865740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-01-24,0,0,55199.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6388888888888888,0.6388888888888888,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-01-25,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2013-01-26,0,0,36799.99999999999,36799.99999999999,36799.99999999999,0,0,0,0,0,36799.99999999999,0.4259259259259258,0.4259259259259259,0,0,0,94,0,36799.99999999999,0,0,0,0,0,36799.99999999999
2013-01-27,0,0,22999.999999999996,22999.999999999996,22999.999999999996,0,0,0,0,0,22999.999999999996,0.26620370370370366,0.26620370370370366,0,0,0,94,0,22999.999999999996,0,0,0,0,0,22999.999999999996
2013-01-28,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
2013-01-29,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2013-01-30,0,0,41400.0,41400.0,41400.0,0,0,0,0,0,41400.0,0.4791666666666667,0.47916666666666663,0,0,0,94,0,41400.0,0,0,0,0,0,41400.0
2013-01-31,0,0,44274.99999999999,44274.99999999999,44274.99999999999,0,0,0,0,0,44274.99999999999,0.5124421296296295,0.5124421296296295,0,0,0,94,0,44274.99999999999,0,0,0,0,0,44274.99999999999
2013-02-01,0,0,39674.99999999999,39674.99999999999,39674.99999999999,0,0,0,0,0,39674.99999999999,0.4592013888888888,0.45920138888888884,0,0,0,94,0,39674.99999999999,0,0,0,0,0,39674.99999999999
2013-02-02,0,0,32200.0,32200.0,32200.0,0,0,0,0,0,32200.0,0.3726851851851852,0.3726851851851852,0,0,0,94,0,32200.0,0,0,0,0,0,32200.0
2013-02-03,0,0,38525.0,38525.0,38525.0,0,0,0,0,0,38525.0,0.4458912037037037,0.44589120370370366,0,0,0,94,0,38525.0,0,0,0,0,0,38525.0
2013-02-04,0,0,50600.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5856481481481481,0.5856481481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-02-05,0,0,67275.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.7786458333333334,0.7786458333333334,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-02-06,0,0,79349.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.9184027777777776,0.9184027777777777,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-02-07,0,0,49449.99999999999,49449.99999999999,49449.99999999999,0,0,0,0,0,49449.99999999999,0.5723379629629629,0.5723379629629629,0,0,0,94,0,49449.99999999999,0,0,0,0,0,49449.99999999999
2013-02-08,0,0,45200.0,45200.0,45200.0,0,0,0,0,0,45200.0,0.5231481481481481,0.5231481481481481,0,0,0,94,0,45200.0,0,0,0,0,0,45200.0
2013-02-09,0,0,50505.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5845486111111111,0.5845486111111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-02-10,0,0,35970.0,35970.0,35970.0,0,0,0,0,0,35970.0,0.41631944444444446,0.4163194444444444,0,0,0,94,0,35970.0,0,0,0,0,0,35970.0
2013-02-11,0,0,51360.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.5944444444444444,0.5944444444444444,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-02-12,0,0,48299.99999999999,48299.99999999999,48299.99999999999,0,0,0,0,0,48299.99999999999,0.5590277777777777,0.5590277777777777,0,0,0,94,0,48299.99999999999,0,0,0,0,0,48299.99999999999
2013-02-13,0,0,42229.99999999999,42229.99999999999,42229.99999999999,0,0,0,0,0,42229.99999999999,0.48877314814814804,0.4887731481481481,0,0,0,94,0,42229.99999999999,0,0,0,0,0,42229.99999999999
2013-02-14,0,0,51004.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.5903356481481481,0.5903356481481481,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-02-15,0,0,44055.0,44055.0,44055.0,0,0,0,0,0,44055.0,0.5098958333333333,0.5098958333333333,0,0,0,94,0,44055.0,0,0,0,0,0,44055.0
2013-02-16,0,0,43164.99999999999,43164.99999999999,43164.99999999999,0,0,0,0,0,43164.99999999999,0.4995949074074073,0.49959490740740736,0,0,0,94,0,43164.99999999999,0,0,0,0,0,43164.99999999999
2013-02-17,0,0,31350.0,31350.0,31350.0,0,0,0,0,0,31350.0,0.3628472222222222,0.3628472222222222,0,0,0,94,0,31350.0,0,0,0,0,0,31350.0
2013-02-18,0,0,44639.99999999999,44639.99999999999,44639.99999999999,0,0,0,0,0,44639.99999999999,0.5166666666666666,0.5166666666666666,0,0,0,94,0,44639.99999999999,0,0,0,0,0,44639.99999999999
2013-02-19,0,0,19110.0,19110.0,19110.0,0,0,0,0,0,19110.0,0.22118055555555555,0.22118055555555555,0,0,0,94,0,19110.0,0,0,0,0,0,19110.0
2013-02-20,0,0,32484.999999999996,32484.999999999996,32484.999999999996,0,0,0,0,0,32484.999999999996,0.37598379629629625,0.37598379629629625,0,0,0,94,0,32484.999999999996,0,0,0,0,0,32484.999999999996
2013-02-21,0,0,35670.0,35670.0,35670.0,0,0,0,0,0,35670.0,0.4128472222222222,0.4128472222222222,0,0,0,94,0,35670.0,0,0,0,0,0,35670.0
2013-02-22,0,0,14874.999999999998,14874.999999999998,14874.999999999998,0,0,0,0,0,14874.999999999998,0.17216435185185183,0.17216435185185183,0,0,0,94,0,14874.999999999998,0,0,0,0,0,14874.999999999998
2013-02-23,0,0,21579.999999999996,21579.999999999996,21579.999999999996,0,0,0,0,0,21579.999999999996,0.24976851851851847,0.24976851851851847,0,0,0,94,0,21579.999999999996,0,0,0,0,0,21579.999999999996
2013-02-24,0,0,22679.999999999996,22679.999999999996,22679.999999999996,0,0,0,0,0,22679.999999999996,0.26249999999999996,0.26249999999999996,0,0,0,94,0,22679.999999999996,0,0,0,0,0,22679.999999999996
2013-02-25,0,0,13035.0,13035.0,13035.0,0,0,0,0,0,13035.0,0.15086805555555555,0.15086805555555555,0,0,0,94,0,13035.0,0,0,0,0,0,13035.0
2013-02-26,0,0,22715.0,22715.0,22715.0,0,0,0,0,0,22715.0,0.2629050925925926,0.2629050925925926,0,0,0,94,0,22715.0,0,0,0,0,0,22715.0
2013-02-27,0,0,23625.0,23625.0,23625.0,0,0,0,0,0,23625.0,0.2734375,0.2734375,0,0,0,94,0,23625.0,0,0,0,0,0,23625.0
2013-02-28,0,0,25549.999999999996,25549.999999999996,25549.999999999996,0,0,0,0,0,25549.999999999996,0.29571759259259256,0.29571759259259256,0,0,0,94,0,25549.999999999996,0,0,0,0,0,25549.999999999996
2013-03-01,0,0,20945.0,20945.0,20945.0,0,0,0,0,0,20945.0,0.24241898148148147,0.24241898148148147,0,0,0,94,0,20945.0,0,0,0,0,0,20945.0
2013-03-02,0,0,16905.0,16905.0,16905.0,0,0,0,0,0,16905.0,0.19565972222222222,0.19565972222222222,0,0,0,94,0,16905.0,0,0,0,0,0,16905.0
2013-03-03,0,0,18760.0,18760.0,18760.0,0,0,0,0,0,18760.0,0.21712962962962962,0.21712962962962964,0,0,0,94,0,18760.0,0,0,0,0,0,18760.0
2013-03-04,0,0,24374.999999999996,24374.999999999996,24374.999999999996,0,0,0,0,0,24374.999999999996,0.2821180555555555,0.2821180555555555,0,0,0,94,0,24374.999999999996,0,0,0,0,0,24374.999999999996
2013-03-05,0,0,20789.999999999996,20789.999999999996,20789.999999999996,0,0,0,0,0,20789.999999999996,0.24062499999999995,0.24062499999999998,0,0,0,94,0,20789.999999999996,0,0,0,0,0,20789.999999999996
2013-03-06,0,0,19520.0,19520.0,19520.0,0,0,0,0,0,19520.0,0.22592592592592592,0.22592592592592592,0,0,0,94,0,19520.0,0,0,0,0,0,19520.0
2013-03-07,0,0,15929.999999999998,15929.999999999998,15929.999999999998,0,0,0,0,0,15929.999999999998,0.18437499999999998,0.18437499999999998,0,0,0,94,0,15929.999999999998,0,0,0,0,0,15929.999999999998
2013-03-08,0,0,16815.0,16815.0,16815.0,0,0,0,0,0,16815.0,0.19461805555555556,0.19461805555555556,0,0,0,94,0,16815.0,0,0,0,0,0,16815.0
2013-03-09,0,0,19249.999999999996,19249.999999999996,19249.999999999996,0,0,0,0,0,19249.999999999996,0.22280092592592587,0.2228009259259259,0,0,0,94,0,19249.999999999996,0,0,0,0,0,19249.999999999996
2013-03-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-03-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-04-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-05-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-06-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-07-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-08-31,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-25,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-26,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-27,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-28,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-29,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-09-30,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-01,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-02,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-03,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-04,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-05,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-06,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-07,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-08,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-09,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-10,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-11,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-12,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-13,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-14,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-15,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-16,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-17,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-18,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-19,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-20,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-21,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-22,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-23,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-24,0,0,0.0,0.0,0.0,0,0,0,0,0,0.0,0.0,0.0,0,0,0,94,0,0.0,0,0,0,0,0,0.0
2013-10-25,0,0,7800.0,7800.0,7800.0,0,0,0,0,0,7800.0,0.09027777777777778,0.09027777777777778,0,0,0,94,0,7800.0,0,0,0,0,0,7800.0
2013-10-26,0,0,9000.0,9000.0,9000.0,0,0,0,0,0,9000.0,0.10416666666666667,0.10416666666666666,0,0,0,94,0,9000.0,0,0,0,0,0,9000.0
2013-10-27,0,0,13650.0,13650.0,13650.0,0,0,0,0,0,13650.0,0.1579861111111111,0.1579861111111111,0,0,0,94,0,13650.0,0,0,0,0,0,13650.0
2013-10-28,0,0,6000.0,6000.0,6000.0,0,0,0,0,0,6000.0,0.06944444444444445,0.06944444444444445,0,0,0,94,0,6000.0,0,0,0,0,0,6000.0
2013-10-29,0,0,5400.0,5400.0,5400.0,0,0,0,0,0,5400.0,0.0625,0.0625,0,0,0,94,0,5400.0,0,0,0,0,0,5400.0
2013-10-30,0,0,9300.0,9300.0,9300.0,0,0,0,0,0,9300.0,0.1076388888888889,0.1076388888888889,0,0,0,94,0,9300.0,0,0,0,0,0,9300.0
2013-10-31,0,0,8699.999999999998,8699.999999999998,8699.999999999998,0,0,0,0,0,8699.999999999998,0.10069444444444442,0.10069444444444443,0,0,0,94,0,8699.999999999998,0,0,0,0,0,8699.999999999998
2013-11-01,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2013-11-02,0,0,6299.999999999999,6299.999999999999,6299.999999999999,0,0,0,0,0,6299.999999999999,0.07291666666666666,0.07291666666666666,0,0,0,94,0,6299.999999999999,0,0,0,0,0,6299.999999999999
2013-11-03,0,0,11249.999999999998,11249.999999999998,11249.999999999998,0,0,0,0,0,11249.999999999998,0.13020833333333331,0.13020833333333331,0,0,0,94,0,11249.999999999998,0,0,0,0,0,11249.999999999998
2013-11-04,0,0,11849.999999999998,11849.999999999998,11849.999999999998,0,0,0,0,0,11849.999999999998,0.13715277777777776,0.13715277777777776,0,0,0,94,0,11849.999999999998,0,0,0,0,0,11849.999999999998
2013-11-05,0,0,9000.0,9000.0,9000.0,0,0,0,0,0,9000.0,0.10416666666666667,0.10416666666666666,0,0,0,94,0,9000.0,0,0,0,0,0,9000.0
2013-11-06,0,0,5250.0,5250.0,5250.0,0,0,0,0,0,5250.0,0.06076388888888889,0.06076388888888889,0,0,0,94,0,5250.0,0,0,0,0,0,5250.0
2013-11-07,0,0,9000.0,9000.0,9000.0,0,0,0,0,0,9000.0,0.10416666666666667,0.10416666666666666,0,0,0,94,0,9000.0,0,0,0,0,0,9000.0
2013-11-08,0,0,9300.0,9300.0,9300.0,0,0,0,0,0,9300.0,0.1076388888888889,0.1076388888888889,0,0,0,94,0,9300.0,0,0,0,0,0,9300.0
2013-11-09,0,0,5850.0,5850.0,5850.0,0,0,0,0,0,5850.0,0.06770833333333333,0.06770833333333333,0,0,0,94,0,5850.0,0,0,0,0,0,5850.0
2013-11-10,0,0,6750.0,6750.0,6750.0,0,0,0,0,0,6750.0,0.078125,0.078125,0,0,0,94,0,6750.0,0,0,0,0,0,6750.0
2013-11-11,0,0,15000.0,15000.0,15000.0,0,0,0,0,0,15000.0,0.1736111111111111,0.1736111111111111,0,0,0,94,0,15000.0,0,0,0,0,0,15000.0
2013-11-12,0,0,8400.0,8400.0,8400.0,0,0,0,0,0,8400.0,0.09722222222222222,0.09722222222222222,0,0,0,94,0,8400.0,0,0,0,0,0,8400.0
2013-11-13,0,0,2700.0,2700.0,2700.0,0,0,0,0,0,2700.0,0.03125,0.03125,0,0,0,94,0,2700.0,0,0,0,0,0,2700.0
2013-11-14,0,0,2850.0,2850.0,2850.0,0,0,0,0,0,2850.0,0.03298611111111111,0.03298611111111111,0,0,0,94,0,2850.0,0,0,0,0,0,2850.0
2013-11-15,0,0,9519.0,9519.0,9519.0,0,0,0,0,0,9519.0,0.11017361111111111,0.11017361111111111,0,0,0,94,0,9519.0,0,0,0,0,0,9519.0
2013-11-16,0,0,11040.0,11040.0,11040.0,0,0,0,0,0,11040.0,0.12777777777777777,0.12777777777777777,0,0,0,94,0,11040.0,0,0,0,0,0,11040.0
2013-11-17,0,0,13065.0,13065.0,13065.0,0,0,0,0,0,13065.0,0.15121527777777777,0.15121527777777777,0,0,0,94,0,13065.0,0,0,0,0,0,13065.0
2013-11-18,0,0,14169.999999999998,14169.999999999998,14169.999999999998,0,0,0,0,0,14169.999999999998,0.1640046296296296,0.1640046296296296,0,0,0,94,0,14169.999999999998,0,0,0,0,0,14169.999999999998
2013-11-19,0,0,11984.999999999998,11984.999999999998,11984.999999999998,0,0,0,0,0,11984.999999999998,0.13871527777777776,0.13871527777777776,0,0,0,94,0,11984.999999999998,0,0,0,0,0,11984.999999999998
2013-11-20,0,0,12852.0,12852.0,12852.0,0,0,0,0,0,12852.0,0.14875,0.14875,0,0,0,94,0,12852.0,0,0,0,0,0,12852.0
2013-11-21,0,0,15871.0,15871.0,15871.0,0,0,0,0,0,15871.0,0.18369212962962964,0.18369212962962964,0,0,0,94,0,15871.0,0,0,0,0,0,15871.0
2013-11-22,0,0,30315.999999999996,30315.999999999996,30315.999999999996,0,0,0,0,0,30315.999999999996,0.3508796296296296,0.3508796296296296,0,0,0,94,0,30315.999999999996,0,0,0,0,0,30315.999999999996
2013-11-23,0,0,18179.999999999996,18179.999999999996,18179.999999999996,0,0,0,0,0,18179.999999999996,0.2104166666666666,0.21041666666666664,0,0,0,94,0,18179.999999999996,0,0,0,0,0,18179.999999999996
2013-11-24,0,0,14079.999999999998,14079.999999999998,14079.999999999998,0,0,0,0,0,14079.999999999998,0.16296296296296295,0.16296296296296295,0,0,0,94,0,14079.999999999998,0,0,0,0,0,14079.999999999998
2013-11-25,0,0,21904.999999999996,21904.999999999996,21904.999999999996,0,0,0,0,0,21904.999999999996,0.25353009259259257,0.25353009259259257,0,0,0,94,0,21904.999999999996,0,0,0,0,0,21904.999999999996
2013-11-26,0,0,21239.999999999996,21239.999999999996,21239.999999999996,0,0,0,0,0,21239.999999999996,0.2458333333333333,0.2458333333333333,0,0,0,94,0,21239.999999999996,0,0,0,0,0,21239.999999999996
2013-11-27,0,0,22631.0,22631.0,22631.0,0,0,0,0,0,22631.0,0.2619328703703704,0.2619328703703704,0,0,0,94,0,22631.0,0,0,0,0,0,22631.0
2013-11-28,0,0,28711.999999999996,28711.999999999996,28711.999999999996,0,0,0,0,0,28711.999999999996,0.3323148148148148,0.3323148148148148,0,0,0,94,0,28711.999999999996,0,0,0,0,0,28711.999999999996
2013-11-29,0,0,20655.0,20655.0,20655.0,0,0,0,0,0,20655.0,0.2390625,0.2390625,0,0,0,94,0,20655.0,0,0,0,0,0,20655.0
2013-11-30,0,0,39246.0,39246.0,39246.0,0,0,0,0,0,39246.0,0.4542361111111111,0.4542361111111111,0,0,0,94,0,39246.0,0,0,0,0,0,39246.0
2013-12-01,0,0,32924.99999999999,32924.99999999999,32924.99999999999,0,0,0,0,0,32924.99999999999,0.3810763888888888,0.38107638888888884,0,0,0,94,0,32924.99999999999,0,0,0,0,0,32924.99999999999
2013-12-02,0,0,27815.999999999996,27815.999999999996,27815.999999999996,0,0,0,0,0,27815.999999999996,0.3219444444444444,0.3219444444444444,0,0,0,94,0,27815.999999999996,0,0,0,0,0,27815.999999999996
2013-12-03,0,0,22704.0,22704.0,22704.0,0,0,0,0,0,22704.0,0.2627777777777778,0.2627777777777778,0,0,0,94,0,22704.0,0,0,0,0,0,22704.0
2013-12-04,0,0,36260.0,36260.0,36260.0,0,0,0,0,0,36260.0,0.41967592592592595,0.4196759259259259,0,0,0,94,0,36260.0,0,0,0,0,0,36260.0
2013-12-05,0,0,45122.99999999999,45122.99999999999,45122.99999999999,0,0,0,0,0,45122.99999999999,0.5222569444444444,0.5222569444444444,0,0,0,94,0,45122.99999999999,0,0,0,0,0,45122.99999999999
2013-12-06,0,0,46636.0,46636.0,46636.0,0,0,0,0,0,46636.0,0.5397685185185185,0.5397685185185185,0,0,0,94,0,46636.0,0,0,0,0,0,46636.0
2013-12-07,0,0,70330.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8140046296296296,0.8140046296296296,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-08,0,0,53010.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6135416666666667,0.6135416666666667,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-09,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2013-12-10,0,0,43125.0,43125.0,43125.0,0,0,0,0,0,43125.0,0.4991319444444444,0.4991319444444444,0,0,0,94,0,43125.0,0,0,0,0,0,43125.0
2013-12-11,0,0,37375.0,37375.0,37375.0,0,0,0,0,0,37375.0,0.43258101851851855,0.4325810185185185,0,0,0,94,0,37375.0,0,0,0,0,0,37375.0
2013-12-12,0,0,44850.0,44850.0,44850.0,0,0,0,0,0,44850.0,0.5190972222222222,0.5190972222222222,0,0,0,94,0,44850.0,0,0,0,0,0,44850.0
2013-12-13,0,0,54625.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6322337962962963,0.6322337962962963,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-14,0,0,58075.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6721643518518519,0.6721643518518519,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-15,0,0,56350.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.6521990740740741,0.6521990740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-16,0,0,76474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8851273148148147,0.8851273148148147,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-17,0,0,79924.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.9250578703703702,0.9250578703703702,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-18,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2013-12-19,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2013-12-20,0,0,43700.00000000001,43700.00000000001,43700.00000000001,0,0,0,0,0,43700.00000000001,0.5057870370370371,0.5057870370370371,0,0,0,94,0,43700.00000000001,0,0,0,0,0,43700.00000000001
2013-12-21,0,0,48875.0,48875.0,48875.0,0,0,0,0,0,48875.0,0.5656828703703703,0.5656828703703703,0,0,0,94,0,48875.0,0,0,0,0,0,48875.0
2013-12-22,0,0,57499.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.6655092592592592,0.6655092592592592,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-23,0,0,53474.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.618923611111111,0.618923611111111,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-24,0,0,63249.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7320601851851851,0.7320601851851851,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-25,0,0,67849.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.7853009259259257,0.7853009259259258,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-26,0,0,41975.0,41975.0,41975.0,0,0,0,0,0,41975.0,0.48582175925925924,0.48582175925925924,0,0,0,94,0,41975.0,0,0,0,0,0,41975.0
2013-12-27,0,0,70724.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8185763888888887,0.8185763888888887,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-28,0,0,59224.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.685474537037037,0.685474537037037,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-29,0,0,62100.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.71875,0.71875,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-30,0,0,70724.99999999999,50000.0,50000.0,0,0,0,0,0,50000.0,0.8185763888888887,0.8185763888888887,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0
2013-12-31,0,0,71875.0,50000.0,50000.0,0,0,0,0,0,50000.0,0.8318865740740741,0.8318865740740741,0,0,0,94,0,50000.0,0,0,0,0,0,50000.0

Note: The !type command on the previous line is the type command from the Windows Command Prompt. The ! operator is an IPython prefix for running shell commands.

This concludes our first pass of running and retrieving results

Pass 2 - Indepth

We will now look at running the model again, with more consideration to individual options.

Specifically, we'll

  • Look again at configuring recorders including how to perform bulk changes and look at how to establish the criteria
  • Run the model again, with control over the time period, input sets and other options
  • Look at options for controlling the column names in the DataFrame objects returned by v.retrieve_multiple_time_series

Configuring Recorders

We've already seen that enabling and disabling output recording is based around search criteria using three terms:

  • NetworkElement
  • RecordingElement
  • RecordingVariable

But we've also seen that sometimes, the values of these keys aren't that clear, such as

Demand & Storage Interface@Demand Model@Regulated Requirements

Furthermore, we know that we can omit a key, such as NetworkElement, in order to match everything, but what if you want to match many, but not all cases? For example, what if you want to match all links, or all inflow nodes?

Identifying key values

We've seen that

Demand & Storage Interface@Demand Model@Regulated Requirements

is a key, determined by Source and you need that key to enable/disable that particular recorder.

So how would you go about determining the values to use?

I recommend iteration! One of the benefits of Veneer working with the main Windows application of Source is that you can jump between the two at will. Often, its useful to make a change in the main application and then observe the effect of that change in Python.

So...

In the Source application, visit the Project Explorer and ensure that Total Water Supplied is enabled for recording under Demand & Storage Interface --> Demand Model on the Water User. (It should already be recording from the earlier exercise.

Now, run the model (you can push the Run button in Source or just just execute the next block) - then, retrieve the run results index


In [24]:
v.run_model()


Out[24]:
(302, 'runs/2')

In [25]:
results_index = v.retrieve_run()

Once again, it will be useful to get the list of results in a DataFrame


In [26]:
results_df = results_index['Results'].as_dataframe()
results_df


Out[26]:
NetworkElement RecordingElement RecordingVariable RunNumber TimeSeriesName TimeSeriesUrl
0 Default Link #1 Upstream Flow Flow 2 Straight-Through Routing: Default Link #1: Ups... /runs/2/location/Default Link 1/element/Upstre...
1 Default Link #1 Catchment Inflow Flow 2 Straight-Through Routing: Default Link #1: Cat... /runs/2/location/Default Link 1/element/Catchm...
2 Default Link #1 Downstream Flow Flow 2 Straight-Through Routing: Default Link #1: Dow... /runs/2/location/Default Link 1/element/Downst...
3 Default Link #1 Storage Volume Storage Volume 2 Straight-Through Routing: Default Link #1: Sto... /runs/2/location/Default Link 1/element/Storag...
4 Default Link #1 Link Travel Time Link Travel Time 2 Straight-Through Routing: Default Link #1: Lin... /runs/2/location/Default Link 1/element/Link T...
5 Default Link #1 Groundwater Flux Groundwater Flux 2 Straight-Through Routing: Default Link #1: Gro... /runs/2/location/Default Link 1/element/Ground...
6 Default Link #1 Water Surface Elevation Water Surface Elevation 2 Straight-Through Routing: Default Link #1: Wat... /runs/2/location/Default Link 1/element/Water ...
7 Default Link #1 Water Surface Area Water Surface Area 2 Straight-Through Routing: Default Link #1: Wat... /runs/2/location/Default Link 1/element/Water ...
8 Default Link #1 Lateral Inflow Volume Lateral Inflow Volume 2 Straight-Through Routing: Default Link #1: Lat... /runs/2/location/Default Link 1/element/Latera...
9 Default Link #1 Divisions Upstream Flow 2 TotalInflow /runs/2/location/Default Link 1/element/Divisi...
10 Default Link #1 Divisions Downstream Flow 2 Outflow /runs/2/location/Default Link 1/element/Divisi...
11 Default Link #1 Divisions Upstream Flow Volume 2 InflowVolume /runs/2/location/Default Link 1/element/Divisi...
12 Default Link #1 Divisions Downstream Flow Volume 2 OutflowVolume /runs/2/location/Default Link 1/element/Divisi...
13 Default Link #1 Divisions Storage Volume 2 Storage /runs/2/location/Default Link 1/element/Divisi...
14 Default Link #1 Divisions Loss/Gain Flux 2 HighFlowLoss /runs/2/location/Default Link 1/element/Divisi...
15 Default Link #1 Divisions Lateral Flow 2 LateralFlow /runs/2/location/Default Link 1/element/Divisi...
16 Default Link #1 Divisions Lateral Flow Volume 2 LateralFlowVolume /runs/2/location/Default Link 1/element/Divisi...
17 Default Link #1 Divisions Mass Balance 2 MassBalance /runs/2/location/Default Link 1/element/Divisi...
18 Default Link #1 Divisions Live Storage Volume 2 LiveStorage /runs/2/location/Default Link 1/element/Divisi...
19 Default Link #1 Divisions Dead Storage Volume 2 CurrentDeadStorage /runs/2/location/Default Link 1/element/Divisi...
20 Default Link #1 Divisions Groundwater Flux 2 GroundWaterFlux /runs/2/location/Default Link 1/element/Divisi...
21 Default Link #1 Divisions Catchment Flux 2 CatchmentFlux /runs/2/location/Default Link 1/element/Divisi...
22 Default Link #1 Divisions Net Evaporation Flux 2 NetEvaporationFlux /runs/2/location/Default Link 1/element/Divisi...
23 Default Link #1 Divisions Timeseries Flux 2 TimeseriesFlux /runs/2/location/Default Link 1/element/Divisi...
24 Default Link #1 Divisions Flow Based Flux 2 FlowFlux /runs/2/location/Default Link 1/element/Divisi...
25 Default Link #1 Lateral Flow Flow 2 Straight-Through Routing: Default Link #1: Lat... /runs/2/location/Default Link 1/element/Latera...
26 Default Link #1 Upstream Flow Volume Upstream Flow Volume 2 Straight-Through Routing: Default Link #1: Ups... /runs/2/location/Default Link 1/element/Upstre...
27 Default Link #1 Downstream Flow Volume Downstream Flow Volume 2 Straight-Through Routing: Default Link #1: Dow... /runs/2/location/Default Link 1/element/Downst...
28 Default Link #1 Mass Balance Mass Balance 2 Default Link #1: Mass Balance /runs/2/location/Default Link 1/element/Mass B...
29 Default Link #1 Rules Based Orders Rules Based Orders@Orders 2 Straight-Through Routing > Default Link #1 > O... /runs/2/location/Default Link 1/element/Rules ...
... ... ... ... ... ... ...
519 Crop Fields Demand Model Demand Model@Predicted Order 2 Water User > Crop Fields > Predicted Order /runs/2/location/Crop Fields/element/Demand Mo...
520 Crop Fields Demand Model Demand Model@Volume Ordered 2 Water User > Crop Fields > Volume Ordered /runs/2/location/Crop Fields/element/Demand Mo...
521 Crop Fields Volume Ordered Volume Ordered 2 Water User: Crop Fields: Volume Ordered /runs/2/location/Crop Fields/element/Volume Or...
522 Crop Fields Mass Balance Mass Balance 2 Crop Fields: Mass Balance /runs/2/location/Crop Fields/element/Mass Bala...
523 Scenario Mass Balance Scenario Mass Balance Scenario Mass Balance 2 Scenario Mass Balance Total /runs/2/location/Scenario Mass Balance/element...
524 Data Sources Data Sources Data Sources@CrabInflow_csv@Crab_G (ML/day) 2 Crab_G (ML/day) /runs/2/location/Data Sources/element/Data Sou...
525 Data Sources Data Sources Data Sources@FishInflow_csv@Fish Creek Flow (M... 2 Fish Creek Flow (ML/day) /runs/2/location/Data Sources/element/Data Sou...
526 Data Sources Data Sources Data Sources@ShellInflow_csv@Shell Creek Flow ... 2 Shell Creek Flow (ML/Day) /runs/2/location/Data Sources/element/Data Sou...
527 Data Sources Data Sources Data Sources@LowerGaugeObservedFlow_csv@Lower ... 2 Lower Gauge Observed (ML/day) /runs/2/location/Data Sources/element/Data Sou...
528 Data Sources Data Sources Data Sources@MiddleGaugeObservedFlow_csv@Middl... 2 Middle Gauge Observed (ML/day) /runs/2/location/Data Sources/element/Data Sou...
529 Data Sources Data Sources Data Sources@Crop Demand_csv@CropDemand (ML) 2 CropDemand (ML) /runs/2/location/Data Sources/element/Data Sou...
530 Functions Functions Functions@Now@$Day 2 Functions > Functions > Now > $Day /runs/2/location/Functions/element/Functions/v...
531 Functions Functions Functions@Now@$Month 2 Functions > Functions > Now > $Month /runs/2/location/Functions/element/Functions/v...
532 Functions Functions Functions@Now@$Year 2 Functions > Functions > Now > $Year /runs/2/location/Functions/element/Functions/v...
533 Functions Functions Functions@Now@$Hour 2 Functions > Functions > Now > $Hour /runs/2/location/Functions/element/Functions/v...
534 Functions Functions Functions@Now@$DayOfYear 2 Functions > Functions > Now > $DayOfYear /runs/2/location/Functions/element/Functions/v...
535 Functions Functions Functions@Now@$DaysInMonth 2 Functions > Functions > Now > $DaysInMonth /runs/2/location/Functions/element/Functions/v...
536 Functions Functions Functions@Start@$Day 2 Functions > Functions > Start > $Day /runs/2/location/Functions/element/Functions/v...
537 Functions Functions Functions@Start@$Month 2 Functions > Functions > Start > $Month /runs/2/location/Functions/element/Functions/v...
538 Functions Functions Functions@Start@$Year 2 Functions > Functions > Start > $Year /runs/2/location/Functions/element/Functions/v...
539 Functions Functions Functions@Start@$Hour 2 Functions > Functions > Start > $Hour /runs/2/location/Functions/element/Functions/v...
540 Functions Functions Functions@Start@$DayOfYear 2 Functions > Functions > Start > $DayOfYear /runs/2/location/Functions/element/Functions/v...
541 Functions Functions Functions@Start@$DaysInMonth 2 Functions > Functions > Start > $DaysInMonth /runs/2/location/Functions/element/Functions/v...
542 Functions Functions Functions@End@$Day 2 Functions > Functions > End > $Day /runs/2/location/Functions/element/Functions/v...
543 Functions Functions Functions@End@$Month 2 Functions > Functions > End > $Month /runs/2/location/Functions/element/Functions/v...
544 Functions Functions Functions@End@$Year 2 Functions > Functions > End > $Year /runs/2/location/Functions/element/Functions/v...
545 Functions Functions Functions@End@$Hour 2 Functions > Functions > End > $Hour /runs/2/location/Functions/element/Functions/v...
546 Functions Functions Functions@End@$DayOfYear 2 Functions > Functions > End > $DayOfYear /runs/2/location/Functions/element/Functions/v...
547 Functions Functions Functions@End@$DaysInMonth 2 Functions > Functions > End > $DaysInMonth /runs/2/location/Functions/element/Functions/v...
548 Scenario System Storage Scenario System Storage Scenario System Storage 2 Scenario System Storage /runs/2/location/Scenario System Storage/eleme...

549 rows × 6 columns

We can now explore this DataFrame to find the relevant value of RecordingVariable

A Python set is useful - It's a set, in the mathematical sense of holding unique values


In [27]:
set(results_df.RecordingVariable)


Out[27]:
{'0',
 'Actual ET',
 'Allocated Release Volume',
 'Catchment Flux',
 'Ceded Volume',
 'Cluster Solver: Reduced Level',
 'Conveyance Flow Rate',
 'Conveyance Flow Volume',
 'Cumulated Extracted Volume',
 'Data Sources@CrabInflow_csv@Crab_G (ML/day)',
 'Data Sources@Crop Demand_csv@CropDemand (ML)',
 'Data Sources@FishInflow_csv@Fish Creek Flow (ML/day)',
 'Data Sources@LowerGaugeObservedFlow_csv@Lower Gauge Observed (ML/day)',
 'Data Sources@MiddleGaugeObservedFlow_csv@Middle Gauge Observed (ML/day)',
 'Data Sources@ShellInflow_csv@Shell Creek Flow (ML/Day)',
 'Dead Storage Volume',
 'Demand & Storage Interface@Demand Model@Opportunistic Requiremements',
 'Demand & Storage Interface@Demand Model@Opportunistic Water Supplied',
 'Demand & Storage Interface@Demand Model@Regulated Requirements',
 'Demand & Storage Interface@Demand Model@Regulated Water Supplied',
 'Demand & Storage Interface@Demand Model@Total Water Supplied',
 'Demand & Storage Interface@Storage@Opportunistic Water Supplied',
 'Demand & Storage Interface@Storage@Regulated Water Supplied',
 'Demand & Storage Interface@Storage@Return Flow Supplied',
 'Demand & Storage Interface@Storage@Total Water Supplied',
 'Demand & Storage Interface@Storage@Water Extracted',
 'Demand Model@Ordered Water Supplied',
 'Demand Model@Predicted Order',
 'Demand Model@Volume Ordered',
 'Diversion Threshold',
 'Downstream Flow',
 'Downstream Flow Volume',
 'Downstream Return Flow',
 'Evaporation Volume',
 'External Spill Volume',
 'Extracted Volume',
 'Flow',
 'Flow Based Flux',
 'Full Supply Volume',
 'Functions@End@$Day',
 'Functions@End@$DayOfYear',
 'Functions@End@$DaysInMonth',
 'Functions@End@$Hour',
 'Functions@End@$Month',
 'Functions@End@$Year',
 'Functions@Now@$Day',
 'Functions@Now@$DayOfYear',
 'Functions@Now@$DaysInMonth',
 'Functions@Now@$Hour',
 'Functions@Now@$Month',
 'Functions@Now@$Year',
 'Functions@Start@$Day',
 'Functions@Start@$DayOfYear',
 'Functions@Start@$DaysInMonth',
 'Functions@Start@$Hour',
 'Functions@Start@$Month',
 'Functions@Start@$Year',
 'Gauged Level',
 'Groundwater Flux',
 'Hydropower',
 'Id',
 'Infiltration Volume',
 'Internal Spill Volume',
 'Lag',
 'LagTime',
 'Lake Outflow',
 'Lateral Flow',
 'Lateral Flow Volume',
 'Lateral Inflow Volume',
 'Link Travel Time',
 'Live Storage Volume',
 'Loss/Gain Flux',
 'Mass Balance',
 'Maximum Account Deduction',
 'Maximum Extraction Rate',
 'Maximum Operating Level',
 'Maximum Release Rate',
 'Maximum Unregulated Operating Target Level',
 'Minimum Operating Level',
 'Minimum Release Rate',
 'Net Evaporation Flux',
 'Offset Required Water',
 'Operating Target',
 'Order Time',
 'Outlet Release Volume',
 'OverOrderFactor',
 'Overbank Extracted Volume',
 'Overbank Flow Rate',
 'Overbank Flow Volume',
 'Ownership Overridden',
 'Planned Extraction',
 'Planned Extractions',
 'Predicted Inflow Volume',
 'Rainfall',
 'Rainfall Volume',
 'Recorded Gauging Station Flow',
 'Regulated Release Volume',
 'Requested Flow Rate',
 'Required Release Volume',
 'Required Storage Level',
 'Required Water',
 'Rules Based Orders@Constraints@Maximum',
 'Rules Based Orders@Constraints@Minimum',
 'Rules Based Orders@Off Allocation Requests',
 'Rules Based Orders@Orders',
 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1',
 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1',
 'Rules Based Orders@Ownership@Orders@Owner 1',
 'Rules Based Orders@Priorities@1',
 'Scenario Mass Balance',
 'Scenario System Storage',
 'Spill Volume',
 'Storage Level',
 'Storage Surface Area',
 'Storage Volume',
 'Timeseries Flux',
 'Total Inflow Volume',
 'Total Outflow Volume',
 'Travel Time',
 'Unaccounted Difference',
 'Unallocated Release Volume',
 'Unregulated Volume',
 'Unregulated Volume Extracted',
 'Upstream Flow',
 'Upstream Flow Volume',
 'Volume Ordered',
 'Water Surface Area',
 'Water Surface Elevation',
 'Wetland Inflow'}

And we can see 'Demand & Storage Interface@Demand Model@Total Water Supplied' in the set - that's what we want.

Lets confirm, but disabling ALL recording at the water user and then enabling just that variable:


In [28]:
v.configure_recording(disable=[{'NetworkElement':'Crop Fields'}],
                      enable=[{'NetworkElement':'Crop Fields','RecordingVariable':'Demand & Storage Interface@Demand Model@Total Water Supplied'}])

Here we've disabled and enabled recorders in the same call. When you do this, disable will always take place first, regardless of what order you specify disable and enable in the call.

So, in this case, we disable ALL recorders on the node Crop Fields and then re-eanble just the variable of interest.

Now, lets run the model, retrieve the results index and see what we've got


In [29]:
v.run_model()
results_index = v.retrieve_run()
results_df = results_index['Results'].as_dataframe()
set(results_df.RecordingVariable)


Out[29]:
{'0',
 'Actual ET',
 'Allocated Release Volume',
 'Catchment Flux',
 'Ceded Volume',
 'Cluster Solver: Reduced Level',
 'Conveyance Flow Rate',
 'Conveyance Flow Volume',
 'Cumulated Extracted Volume',
 'Data Sources@CrabInflow_csv@Crab_G (ML/day)',
 'Data Sources@Crop Demand_csv@CropDemand (ML)',
 'Data Sources@FishInflow_csv@Fish Creek Flow (ML/day)',
 'Data Sources@LowerGaugeObservedFlow_csv@Lower Gauge Observed (ML/day)',
 'Data Sources@MiddleGaugeObservedFlow_csv@Middle Gauge Observed (ML/day)',
 'Data Sources@ShellInflow_csv@Shell Creek Flow (ML/Day)',
 'Dead Storage Volume',
 'Demand & Storage Interface@Demand Model@Total Water Supplied',
 'Diversion Threshold',
 'Downstream Flow',
 'Downstream Flow Volume',
 'Evaporation Volume',
 'External Spill Volume',
 'Extracted Volume',
 'Flow',
 'Flow Based Flux',
 'Full Supply Volume',
 'Functions@End@$Day',
 'Functions@End@$DayOfYear',
 'Functions@End@$DaysInMonth',
 'Functions@End@$Hour',
 'Functions@End@$Month',
 'Functions@End@$Year',
 'Functions@Now@$Day',
 'Functions@Now@$DayOfYear',
 'Functions@Now@$DaysInMonth',
 'Functions@Now@$Hour',
 'Functions@Now@$Month',
 'Functions@Now@$Year',
 'Functions@Start@$Day',
 'Functions@Start@$DayOfYear',
 'Functions@Start@$DaysInMonth',
 'Functions@Start@$Hour',
 'Functions@Start@$Month',
 'Functions@Start@$Year',
 'Gauged Level',
 'Groundwater Flux',
 'Hydropower',
 'Infiltration Volume',
 'Internal Spill Volume',
 'Lag',
 'LagTime',
 'Lake Outflow',
 'Lateral Flow',
 'Lateral Flow Volume',
 'Lateral Inflow Volume',
 'Link Travel Time',
 'Live Storage Volume',
 'Loss/Gain Flux',
 'Mass Balance',
 'Maximum Account Deduction',
 'Maximum Extraction Rate',
 'Maximum Operating Level',
 'Maximum Release Rate',
 'Maximum Unregulated Operating Target Level',
 'Minimum Operating Level',
 'Minimum Release Rate',
 'Net Evaporation Flux',
 'Offset Required Water',
 'Operating Target',
 'Order Time',
 'Outlet Release Volume',
 'OverOrderFactor',
 'Overbank Extracted Volume',
 'Overbank Flow Rate',
 'Overbank Flow Volume',
 'Ownership Overridden',
 'Planned Extractions',
 'Predicted Inflow Volume',
 'Rainfall',
 'Rainfall Volume',
 'Recorded Gauging Station Flow',
 'Regulated Release Volume',
 'Requested Flow Rate',
 'Required Release Volume',
 'Required Storage Level',
 'Required Water',
 'Rules Based Orders@Constraints@Maximum',
 'Rules Based Orders@Constraints@Minimum',
 'Rules Based Orders@Off Allocation Requests',
 'Rules Based Orders@Orders',
 'Rules Based Orders@Ownership@Constraints@Maximum@Owner 1',
 'Rules Based Orders@Ownership@Constraints@Minimum@Owner 1',
 'Rules Based Orders@Ownership@Orders@Owner 1',
 'Rules Based Orders@Priorities@1',
 'Scenario Mass Balance',
 'Scenario System Storage',
 'Spill Volume',
 'Storage Level',
 'Storage Surface Area',
 'Storage Volume',
 'Timeseries Flux',
 'Total Inflow Volume',
 'Total Outflow Volume',
 'Travel Time',
 'Unaccounted Difference',
 'Unallocated Release Volume',
 'Unregulated Volume',
 'Unregulated Volume Extracted',
 'Upstream Flow',
 'Upstream Flow Volume',
 'Volume Ordered',
 'Water Surface Area',
 'Water Surface Elevation',
 'Wetland Inflow'}

Success! Total Water Supplied is now the only result available from the demand model.

Bulk enable/disable of recorders

Often, getting the recorder configuration right involves a lot of changes. v.configure_recording directly supports certain bulk changes by simply omitted keys, such as omitting RecordingVariable to record every variable from a particular group on a given node/link/catchment.

However, this isn't always sufficient.

You can achieve other types of bulk configuration using Python to construct lists of fine grained commands.

For example, say you want Downstream Flow Volume at every node, but not at links.

You can enable Downstream Flow Volume everywhere easily enough


In [30]:
v.configure_recording(enable=[{'RecordingVariable':'Downstream Flow Volume'}])

But to disable recording at just the links, you'll need to identify all the link names.

You can query Veneer for a copy of the network, which will give you all the information you need:


In [31]:
network = v.network()

Now, you can ask for the links:


In [32]:
links = network['features'].find_by_feature_type('link')

A quick look at the first link will show quite a bit of information


In [33]:
links[0]


Out[33]:
{'geometry': {'coordinates': [[0, 0], [0, 0]], 'type': 'LineString'},
 'id': '/network/link/0',
 'properties': {'feature_type': 'link',
  'from_node': '/network/nodes/65',
  'name': 'Default Link #1',
  'to_node': '/network/nodes/69'},
 'type': 'Feature'}

We just want the names, so we can ask for that field


In [34]:
link_names = links._all_values('name')
link_names


Out[34]:
['Default Link #1',
 'Default Link #2',
 'Default Link #3',
 'Default Link #4',
 'Default Link #5',
 'Default Link #6',
 'Lake Outflow',
 'Default Link #13',
 'Default Link #14',
 'Default Link #15',
 'Default Link #11']

Now, we can use the link_names list to construct the commands to disable recording.

Before proceeding, here is a summary of what we have and what we need.

We have - link_names - a list of string.

We need - a list of Python dictionaries, each with an instruction to disable some recorder(s) based on criteria. We can only specify one NetworkElement per dictionary, so we'll need one dictionary per link.

It'll end up looking something like this:

[
 {'NetworkElement':'Default Link #1'},
 {'NetworkElement':'Default Link #2'},
 ...
 {'NetworkElement':'Default Link #11'}
]

But of course it will be very tedious to write that out AND the script wouldn't be transferrable to another Source model.

There are various ways to construct the final data structure (list of dictionaries) from what we have (list of strings). The Python list comprehensions is the most elegant and 'Pythonic' approach:


In [35]:
disable_commands = [{'NetworkElement':link_name,'RecordingVariable':'Downstream Flow Volume'} for link_name in link_names]
disable_commands


Out[35]:
[{'NetworkElement': 'Default Link #1',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #2',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #3',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #4',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #5',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #6',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Lake Outflow',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #13',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #14',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #15',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #11',
  'RecordingVariable': 'Downstream Flow Volume'}]

Aside: Now... That's not the simplest list comprehension to start with. Here are a few simple examples


In [36]:
# double every number in a list
[i*2 for i in [1,3,45,6]]


Out[36]:
[2, 6, 90, 12]

In [37]:
# Convert all the link names to upper case (not that we'd want to do that - Source is definitely case sensitive!)
[s.upper() for s in link_names]


Out[37]:
['DEFAULT LINK #1',
 'DEFAULT LINK #2',
 'DEFAULT LINK #3',
 'DEFAULT LINK #4',
 'DEFAULT LINK #5',
 'DEFAULT LINK #6',
 'LAKE OUTFLOW',
 'DEFAULT LINK #13',
 'DEFAULT LINK #14',
 'DEFAULT LINK #15',
 'DEFAULT LINK #11']

And, just for fun (and to showcase what you can do with 'slicing')


In [38]:
# Reverse all the link names!
# Note how its reversed the original link names, not the upper case versions.
# The previous list comprehension hasn't modified the original values in the list
[s[::-1] for s in link_names]


Out[38]:
['1# kniL tluafeD',
 '2# kniL tluafeD',
 '3# kniL tluafeD',
 '4# kniL tluafeD',
 '5# kniL tluafeD',
 '6# kniL tluafeD',
 'wolftuO ekaL',
 '31# kniL tluafeD',
 '41# kniL tluafeD',
 '51# kniL tluafeD',
 '11# kniL tluafeD']

Now... back to it...

We have our list of dictionaries:


In [39]:
disable_commands


Out[39]:
[{'NetworkElement': 'Default Link #1',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #2',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #3',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #4',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #5',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #6',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Lake Outflow',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #13',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #14',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #15',
  'RecordingVariable': 'Downstream Flow Volume'},
 {'NetworkElement': 'Default Link #11',
  'RecordingVariable': 'Downstream Flow Volume'}]

It's just a matter of passing that to v.configure_recording


In [40]:
v.configure_recording(disable=disable_commands)

Lets run the model, and retrieve Downstream Flow Volume to make sure that we don't have any columns for the links


In [41]:
v.run_model()
flow_ts = v.retrieve_multiple_time_series(criteria={'RecordingVariable':'Downstream Flow Volume'})

In [42]:
flow_ts.columns


Out[42]:
Index(['Crab Creek:Downstream Flow Volume',
       'Crop Fields:Downstream Flow Volume',
       'Evaluation Gauge:Downstream Flow Volume',
       'Fish Creek Confluence:Downstream Flow Volume',
       'Fish Creek:Downstream Flow Volume',
       'Lake Release:Downstream Flow Volume',
       'Lower Gauge:Downstream Flow Volume',
       'Middle Gauge:Downstream Flow Volume',
       'Recreational Lake:Downstream Flow Volume',
       'Shell Creek Confluence:Downstream Flow Volume',
       'Shell Creek:Downstream Flow Volume',
       'Supply Point 13:Downstream Flow Volume'],
      dtype='object')

Great! Now flow on the links

Now... we've run th model a bunch of times. We can confirm that by asking for an index of all runs


In [43]:
v.retrieve_runs()


Out[43]:
[{'RunName': 'Default Input Set (1)', 'RunUrl': '/runs/1'},
 {'RunName': 'Default Input Set (2)', 'RunUrl': '/runs/2'},
 {'RunName': 'Default Input Set (3)', 'RunUrl': '/runs/3'},
 {'RunName': 'Default Input Set (4)', 'RunUrl': '/runs/4'}]

Lets delete these runs - we don't need them!


In [44]:
v.drop_all_runs()

In [ ]:

Runtime options

Up until now, we have run the model with a call to v.run_model(), without specifying any options. In this case, the effect is the same as pushing the Run button in Source - all the currently set options are used.

You can also specify numerous options from Python.

This is useful for batch running (eg by changing input sets), but also when a model is built, configured and saved with one set of options, but you need different options in your script. For example, you might want to run over a different time period for calibration or event analysis.

We can find out a bit about the avilable options by asking for help on run_model


In [45]:
help(v.run_model)


Help on method run_model in module veneer.general:

run_model(params=None, start=None, end=None, async=False, **kwargs) method of veneer.general.Veneer instance
    Trigger a run of the Source model
    
    params: Python dictionary of parameters to pass to Source. Should match the parameters expected
            of the running configuration. (If you just want to set the start and end date of the simulation,
            use the start and end parameters
    
    start, end: The start and end date of the simulation. Should be provided as Date objects or as text in the dd/mm/yyyy format
    
    async: (default False). If True, the method will return immediately rather than waiting for the simulation to finish.
           Useful for triggering parallel runs. Method will return a connection object that can then be queried to know
           when the run has finished.
    
    kwargs: optional named parameters to be used to update the params dictionary
    
    In the default behaviour (async=False), this method will return once the Source simulation has finished, and will return
    the URL of the results set in the Veneer service

We'll ignore the async option for now - its for parallel computing.

start and end provide convenient ways to specify the run time period.

All other options are specified via params - a Python dictionary. Note the following important part of the help:

Should match the parameters expected of the running configuration.

In other words, there are different parameters depending on whether you are in Single Analysis mode, River Operations mode, Flow Calibration mode, or some other mode defined by a plugin.

The following parameters are most likely to be useful:

  • SelectedInputSet - the name of the input set to run with (available in at least Single Analysis mode and River Operations mode, probably more)
  • WarmUpStart, Today and ForecastLength - used in River Operations mode to control the simulation dates including the switch from historical to forecast mode

Note, you can pass the params parameter, or pass named parameters at the end of the parameter list

Lets start by restricting the run period for the model


In [46]:
v.run_model(start='01/01/2000',end='31/12/2009')


Out[46]:
(302, 'runs/1')

Notes:

  • We've just passed strings in the dd/mm/yyyy format, but you can also pass Python datetime objects
  • IMPORTANT when you set the start and end date (and other options), you are changing the configuration within Source. Meaning a subsequent run (either using the Run button or v.run_model() without parameters) will use these new settings!

Now, lets try changing the input set...

We can query the input sets with v.input_sets()


In [47]:
input_sets = v.input_sets()
input_sets


Out[47]:
[{'Filename': None, 'Name': 'Unrestricted Take', 'URL': '/inputSets/Unrestricted Take', 'ReloadOnRun': False, 'Configuration': ['Nodes.Supply Point 13.Maximum Extraction Rate = 100000 ML/d']}, {'Filename': None, 'Name': 'Default Input Set', 'URL': '/inputSets/Default Input Set', 'ReloadOnRun': False, 'Configuration': []}]

Lets look at what the 'Unrestricted Take' input set does. (We can only see the parameter changes - not time series or other effects)


In [48]:
input_sets[1]['Configuration']


Out[48]:
[]

Looks like it removes the extraction rate constraint on the supply point.

Lets run the model with that input set


In [49]:
v.run_model(SelectedInputSet='Unrestricted Take')


Out[49]:
(302, 'runs/2')

In [ ]:

Retrieving results

When we looked at v.retrieve_multiple_time_series earlier in this session, we noted that some of the column names were quite long and not particularly convenient.

We also noted a name_fn parameter, but didn't use it.

The name_fn parameter expects a function, and it expects that function to accept a result (essentially the metadata about a time series) and to return a string (to be used as the column name).

This is useful because in different circumstances different column naming conventions make sense.

For example, if you are retrieving the same variable at multiple locations, it probably makes sense to use the location as the column name.

There are a number of suitable functions supplied with veneer-py, which you can choose between, or you can write your own.

Note: v.retrieve_multiple_time_series could do a better job of picking this by default (and will in the future!), but I expect that the option will remain!

Lets start by using the 'name for location' approach when retrieving Downstream Flow Volume


In [50]:
flow_ts = v.retrieve_multiple_time_series(criteria={'RecordingVariable':'Downstream Flow Volume'},
                                          name_fn=veneer.name_for_location)
flow_ts[0:10]


Out[50]:
Crab Creek Crop Fields Evaluation Gauge Fish Creek Fish Creek Confluence Lake Release Lower Gauge Middle Gauge Recreational Lake Shell Creek Shell Creek Confluence Supply Point 13
2000-01-01 109468.8 0 273024.0 160704.0 270172.8 1380.591827 0.000000 0.0 1380.591827 273024.0 273024.0 0.000000
2000-01-02 107308.8 0 266976.0 157248.0 264556.8 7641.963014 0.000000 0.0 7641.963014 266976.0 266976.0 0.000000
2000-01-03 105235.2 0 531100.8 154656.0 259891.2 17440.287639 0.000000 270172.8 17440.287639 260928.0 531100.8 0.000000
2000-01-04 103248.0 0 519436.8 152064.0 255312.0 30134.715734 0.000000 264556.8 30134.715734 254880.0 519436.8 0.000000
2000-01-05 101260.8 0 509587.2 148608.0 249868.8 42242.989738 0.000000 259891.2 42242.989738 249696.0 509587.2 0.000000
2000-01-06 99446.4 0 498960.0 146016.0 245462.4 53792.585344 0.000000 255312.0 53792.585344 243648.0 498960.0 0.000000
2000-01-07 97632.0 0 488332.8 143424.0 241056.0 64787.790301 9587.790301 249868.8 64787.790301 238464.0 488332.8 9587.790301
2000-01-08 95817.6 0 479606.4 140832.0 236649.6 75266.322636 23516.322636 245462.4 75266.322636 234144.0 479606.4 23516.322636
2000-01-09 94089.6 0 470016.0 138240.0 232329.6 85253.911986 43278.911986 241056.0 85253.911986 228960.0 470016.0 43278.911986
2000-01-10 92448.0 0 461289.6 136512.0 228960.0 94762.922414 60262.922414 236649.6 94762.922414 224640.0 461289.6 60262.922414

There are a number of naming functions under the veneer namespace, all starting with .name_.

You can explore the list using <tab> completion.

veneer.name_<press tab>

You can also create your own function.

We previously had a DataFrame with columns such as

'Demand & Storage Interface@Demand Model@Total Water Supplied'

If we are getting multiple variables from the one node, it would be nice to just have the last part of this string as the column name - ie Total Water Supplied.

Mind you, there were multiple variables that ended with Total Variable Supplied - and we need column names to be unique. To recap, we had:

 'Demand & Storage Interface@Demand Model@Opportunistic Requiremements',
 'Demand & Storage Interface@Demand Model@Opportunistic Water Supplied',
 'Demand & Storage Interface@Demand Model@Regulated Requirements',
 'Demand & Storage Interface@Demand Model@Regulated Water Supplied',
 'Demand & Storage Interface@Demand Model@Total Water Supplied',
 'Demand & Storage Interface@Storage@Opportunistic Water Supplied',
 'Demand & Storage Interface@Storage@Regulated Water Supplied',
 'Demand & Storage Interface@Storage@Return Flow Supplied',
 'Demand & Storage Interface@Storage@Total Water Supplied',
 'Demand & Storage Interface@Storage@Water Extracted',

For now, lets assume that we just want the data related to the Demand Model, not the on farm storage.

So, we need to:

  1. Ensure we only get the Demand Model time series, and
  2. Name the columns for the last part of the name

First, lets re-enable the demand model recording and re-run the model


In [51]:
v.configure_recording(enable=[{'Network Element':'Crop Fields'}])
v.run_model()


Out[51]:
(302, 'runs/3')

Out naming function will take some metadata about the results. This metadata will be a Python dictionary, with keys we've seen before - 'NetworkElement', 'RecordingVariable' etc, along with a few others, notably 'Units'

It just needs to return a string, which it will construct from the metadata


In [52]:
def custom_naming(metadata):
    variable_name = metadata['RecordingVariable']
    if variable_name=='Flow': variable_name = metadata['RecordingElement']
    variable_bit = variable_name.split('@')[-1]
    return variable_bit

In [ ]:

That's more complex than things we've seen to date.

Here is a rundown:

  1. Define the function and its parameter:
    def custom_naming(metadata):
    
  2. Find the field we want
    variable_name = metadata['RecordingVariable']
    
  3. Lots of things are called Flow in Source - RecordingElement comes in handy here - it usually has 'Downstream Flow' or 'Upstream Flow' or similar
    if variable_name=='Flow': variable_name = metadata['RecordingElement']
    
  4. Split the string based on the '@' as a delimiter and take the last element of the list of sub-strings
    variable_bit = variable_name.split('@')[-1]
    
  5. Return that to the caller
    return variable_bit
    

We can construct a bit of test metadata to confirm this function is doing what we expect


In [53]:
test_metadata = {'RecordingVariable':'Demand & Storage Interface@Demand Model@Total Water Supplied'}
custom_naming(test_metadata)


Out[53]:
'Total Water Supplied'

OK, our function is naming the way we want, but if we use it to retrieve all time series from the Crop Fields node, we'll have errors due to duplicate column names:


In [54]:
try:
    time_series = v.retrieve_multiple_time_series(criteria={'NetworkElement':'Crop Fields'},name_fn=custom_naming)
except Exception as e:
    print("Had an error")
    print(e)

Note: The try and except block is an example of handling exceptions.

In this case, its because I want to demonstrate an error, but an error would prevent the notebook from running to completion - unless its caught in an except block

So, we have duplicate column names, because we've been retrieving the time series for both the demand model and the storage.

We want to be more specific when retrieving the time series.

Importantly, every item in the criteria dictionary passed to v.retrieve_multiple_time_series is a regular expression - a text pattern that can match partial strings and the like. The way we've used the criteria until now has relied on exact matches, but now we'll ensure that we only retrieve time series that have @Demand Model@ in the name:


In [55]:
crop_ts = v.retrieve_multiple_time_series(criteria={'NetworkElement':'Crop Fields','RecordingVariable':'.*@Demand Model@.*'},
                                         name_fn=custom_naming)
crop_ts[0:10]


Out[55]:
Opportunistic Requiremements Opportunistic Water Supplied Regulated Requirements Regulated Water Supplied Total Water Supplied
2000-01-01 0 0 40825.0 1380.591827 1380.591827
2000-01-02 0 0 43700.0 7641.963014 7641.963014
2000-01-03 0 0 40825.0 17440.287639 17440.287639
2000-01-04 0 0 48875.0 30134.715734 30134.715734
2000-01-05 0 0 57500.0 42242.989738 42242.989738
2000-01-06 0 0 66125.0 53792.585344 53792.585344
2000-01-07 0 0 55200.0 55200.000000 55200.000000
2000-01-08 0 0 51750.0 51750.000000 51750.000000
2000-01-09 0 0 41975.0 41975.000000 41975.000000
2000-01-10 0 0 34500.0 34500.000000 34500.000000

The regular expression we used was .*@Demand Model@.*.

The @Demand Model@ bit is the exact match we're looking for.

The .* bits at the begin and end are wildcards:

  • . means - match anything
  • * means - match 0 or more of the last thing (which, in our case is . - anything)

So .* means 'match 0 or more characters

Conclusion

This concludes sesion 4, where we looked at running Source simulations from Python.

In particular, we looked at:

  • Configuring the output recorders we wanted to use,
  • Running the model with default options and various script specified options
  • Retrieving and post processing results including controlling exact what gets retrieved and how it gets labelled.

The next session looks at modifying the Source model and running various types of iterative analyses, involving multiple simulations.


In [ ]: