diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index d17261c..2a14062 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -7,35 +7,10 @@ on:
workflow_dispatch:
jobs:
- publish:
- # This job will only run if the PR has been merged (and not closed without merging).
- if: "github.event.pull_request.merged == true && !contains(github.event.pull_request.head.message, 'skipci')"
- runs-on: ubuntu-latest
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
-
- - name: Test package is publishable with PyPI test server
- uses: JRubics/poetry-publish@v1.9
- with:
- python_version: "3.9"
- pypi_token: ${{ secrets.TEST_PYPI_TOKEN }}
- repository_name: "testpypi"
- repository_url: "https://test.pypi.org/legacy/"
-
- - name: Publish latest package to PyPI
- uses: JRubics/poetry-publish@v1.9
- with:
- python_version: "3.9"
- poetry_version: "==1.1.12" # (PIP version specifier syntax)
- pypi_token: ${{ secrets.PYPI_TOKEN }}
- ignore_dev_requirements: "yes"
-
release:
# This job will only run if the PR has been merged (and not closed without merging).
if: "github.event.pull_request.merged == true && !contains(github.event.pull_request.head.message, 'skipci')"
runs-on: ubuntu-latest
- needs: [publish]
steps:
- name: Checkout code
uses: actions/checkout@v2
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e91dca8..86317bc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -36,48 +36,3 @@ jobs:
- name: Check version
run: check-semantic-version pyproject.toml
-
- run-tests:
- if: "!contains(github.event.head_commit.message, 'skipci')"
- strategy:
- fail-fast: true
- matrix:
- python: ["3.8", "3.9", "3.10"]
- os: [ubuntu-latest] # [ubuntu-latest, windows-latest, macos-latest] for full coverage but this gets expensive quickly
- runs-on: ${{ matrix.os }}
-
- steps:
- - name: Checkout Repository
- uses: actions/checkout@v2
-
- - name: Setup Python ${{ matrix.python }}
- uses: actions/setup-python@v2
- with:
- python-version: ${{ matrix.python }}
-
- # See the repo of this action for way more advanced caching strategies than used here
- - name: Install Poetry
- uses: snok/install-poetry@v1
-
- # For more advanced configuration see https://github.com/ymyzk/tox-gh-actions
- - name: Install tox and plugins
- run: |
- python -m pip install --upgrade pip
- python -m pip install tox==3.24.5 tox-gh-actions==2.9.1 tox-poetry==0.4.1
-
- - name: Setup tmate session [DEBUG]
- if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true'}}
- uses: mxschmitt/action-tmate@v3
-
- # For more advanced configuration see https://github.com/ymyzk/tox-gh-actions
- - name: Run tests using tox
- run: tox
-
- - name: Upload coverage to Codecov
- # This seems redundant inside the test matrix but actually isn't, since different
- # dependency combinations may cause different lines of code to be hit (e.g. backports)
- uses: codecov/codecov-action@v1
- with:
- file: coverage.xml
- fail_ci_if_error: true
- token: ${{ secrets.CODECOV_TOKEN }}
diff --git a/.gitignore b/.gitignore
index 965d234..723bfc3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,6 +26,7 @@ share/python-wheels/
.installed.cfg
*.egg
MANIFEST
+.DS_Store
# PyInstaller
# Usually these files are written by a python script from a template
@@ -134,3 +135,5 @@ dmypy.json
# Ignore gcp credentials
gcp-credentials-*
+
+.dashboard_cache
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index a6046cc..a34861b 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -49,7 +49,7 @@ repos:
# which if it includes an issue number will
# auto-link pull requests to that issue on github, eg:
# my-branch-to-fix-issue-#6
- - "^([a-z][a-z0-9#]*)(-[a-z0-9#]+)*$"
+ - "^([a-z][a-z0-9#]*)([/-][a-z0-9#]+)*$"
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v2.2.1"
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..1c10147
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,27 @@
+FROM python:3.10-slim
+
+WORKDIR /workspaces/aerosense-dashboard
+
+# Install poetry
+RUN pip install poetry
+RUN poetry config virtualenvs.create false
+
+# Install python dependencies. Note that poetry installs any root packages by default, but this is not available at this
+# stage of caching dependencies. So we do a dependency-only install here to cache the dependencies, then a full poetry
+# install post-create to install any root packages.
+COPY pyproject.toml poetry.lock ./
+RUN poetry install --no-interaction --no-root
+
+COPY . .
+RUN poetry install
+
+EXPOSE $PORT
+
+ARG GUNICORN_WORKERS=1
+ENV GUNICORN_WORKERS=$GUNICORN_WORKERS
+
+ARG GUNICORN_THREADS=8
+ENV GUNICORN_THREADS=$GUNICORN_THREADS
+
+# Timeout is set to 0 to disable the timeouts of the workers to allow Cloud Run to handle instance scaling.
+CMD exec gunicorn --bind :$PORT --workers $GUNICORN_WORKERS --threads $GUNICORN_THREADS --timeout 0 app:app
diff --git a/README.md b/README.md
index b12b0c2..f53d15a 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,3 @@
# aerosense-dashboard
-A panel-based dashboard for the aerosense project
+
+A `dash`-based dashboard for the Aerosense project.
diff --git a/app.py b/app.py
index 273091f..30b634b 100644
--- a/app.py
+++ b/app.py
@@ -1,78 +1,446 @@
+import datetime as dt
+import logging
+
import dash
+import dash_daq as daq
from dash import dcc, html
from dash.dependencies import Input, Output, State
+from flask_caching import Cache
-from dashboard.components import InstallationSelect, Logo, Nav, Subtitle, Title
-from example.callbacks import advance_slider, make_graph, make_text
-from example.components import LearnMore, StepButtons, StepSlider
+from dashboard.components import About, InstallationSelect, Logo, Nav, Title
+from dashboard.components.node_select import NodeSelect
+from dashboard.components.sensor_select import SensorSelect
+from dashboard.components.time_range_select import TimeRangeSelect
+from dashboard.components.y_axis_select import YAxisSelect
+from dashboard.graphs import plot_connections_statistics, plot_pressure_bar_chart, plot_sensors
+from dashboard.queries import ROW_LIMIT, BigQuery
+from dashboard.utils import get_cleaned_sensor_column_names
-# NOTES FOR MARCUS
+logger = logging.getLogger(__name__)
-app = dash.Dash(
- __name__,
- meta_tags=[{"name": "viewport", "content": "width=device-width"}],
-)
+app = dash.Dash(__name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}])
app.title = "Aerosense Dashboard"
-server = app.server
+app.config.suppress_callback_exceptions = True
+CACHE_TIMEOUT = 3600
+cache = Cache(app.server, config={"CACHE_TYPE": "filesystem", "CACHE_DIR": ".dashboard_cache"})
-app.layout = html.Div(
- [
- dcc.Store(id="click-output"),
+tabs = {
+ "connection_statistics": [
html.Div(
[
+ html.Div([Logo(app.get_asset_url("logo.png")), Title(), About()]),
+ Nav(selected_tab="connection_statistics"),
+ html.Br(),
html.Div(
[
- Logo(app.get_asset_url("logo.png")),
- Title(),
- Subtitle(),
- ]
+ html.Label(html.B("Installation")),
+ html.Label("Installation reference"),
+ InstallationSelect(),
+ html.Label("Node id"),
+ NodeSelect(),
+ html.Br(),
+ html.Label(html.B("Graph")),
+ html.Label("Connection statistic"),
+ YAxisSelect(),
+ html.Label("Time range"),
+ TimeRangeSelect(),
+ html.Label("Custom date"),
+ dcc.DatePickerRange(
+ id="custom-time-range-select",
+ display_format="Do MMM Y",
+ persistence=True,
+ disabled=True,
+ ),
+ html.Br(),
+ html.Br(),
+ html.Button("Plot", id="refresh-button", n_clicks=0),
+ html.Button("Check for new installations", id="installation-check-button", n_clicks=0),
+ ],
+ id="buttons-section",
+ className="sidebar-content",
),
- Nav(),
- InstallationSelect(),
- LearnMore(),
- StepSlider(),
- StepButtons(),
],
className="four columns sidebar",
),
html.Div(
[
- html.Div([dcc.Markdown(id="text")], className="text-box"),
- dcc.Graph(id="graph", style={"margin": "0px 20px", "height": "45vh"}),
+ html.Div(
+ [
+ html.H3(id="graph-title"),
+ ],
+ className="text-box",
+ ),
+ dcc.Graph(id="connection-statistics-graph", style={"margin": "0px 20px", "height": "45vh"}),
],
- id="page",
className="eight columns",
),
],
+ "sensors": [
+ html.Div(
+ [
+ html.Div([Logo(app.get_asset_url("logo.png")), Title(), About()]),
+ Nav(selected_tab="sensors"),
+ html.Br(),
+ html.Div(
+ [
+ html.Label(html.B("Installation")),
+ html.Label("Installation reference"),
+ InstallationSelect(),
+ html.Label("Node id"),
+ NodeSelect(),
+ html.Br(),
+ html.Label(html.B("Graph")),
+ html.Label("Sensor"),
+ SensorSelect(),
+ html.Label("Time range"),
+ TimeRangeSelect(),
+ html.Label("Custom date"),
+ dcc.DatePickerRange(
+ id="custom-time-range-select",
+ display_format="Do MMM Y",
+ persistence=True,
+ disabled=True,
+ ),
+ html.Br(),
+ html.Br(),
+ html.Button("Plot", id="refresh-button", n_clicks=0),
+ html.Button("Check for new installations", id="installation-check-button", n_clicks=0),
+ ],
+ id="buttons-section",
+ className="sidebar-content",
+ ),
+ ],
+ className="four columns sidebar",
+ ),
+ html.Div(
+ [
+ html.Div(
+ [
+ html.H3(id="graph-title"),
+ dcc.Markdown(id="data-limit-warning", className="warning"),
+ ],
+ className="text-box",
+ ),
+ dcc.Graph(id="sensors-graph", style={"margin": "0px 20px", "height": "45vh"}),
+ ],
+ className="eight columns",
+ ),
+ ],
+ "pressure_profile": [
+ html.Div(
+ [
+ html.Div([Logo(app.get_asset_url("logo.png")), Title(), About()]),
+ Nav(selected_tab="pressure_profile"),
+ html.Br(),
+ html.Div(
+ [
+ html.Label(html.B("Installation")),
+ html.Label("Installation reference"),
+ InstallationSelect(),
+ html.Label("Node id"),
+ NodeSelect(),
+ html.Br(),
+ html.Label(html.B("Start date/time")),
+ html.Label("Date"),
+ dcc.DatePickerSingle(
+ id="date-select",
+ display_format="Do MMM Y",
+ persistence=True,
+ ),
+ html.Br(),
+ html.Label("Hour"),
+ daq.NumericInput(id="hour", value=0, min=0, max=23, persistence=True),
+ html.Label("Minute"),
+ daq.NumericInput(id="minute", value=0, min=0, max=59, persistence=True),
+ html.Label("Second"),
+ daq.NumericInput(id="second", value=0, min=0, max=59, persistence=True),
+ html.Br(),
+ html.Label(html.B("Step forward (seconds)")),
+ html.Br(),
+ dcc.Slider(
+ id="time-slider",
+ min=0,
+ max=60,
+ step=1,
+ marks={i: str(i) for i in range(0, 60, 5)},
+ value=0,
+ updatemode="drag",
+ ),
+ html.Br(),
+ html.Button("Plot", id="refresh-button", n_clicks=0),
+ html.Button("Check for new installations", id="installation-check-button", n_clicks=0),
+ ],
+ id="buttons-section",
+ className="sidebar-content",
+ ),
+ ],
+ className="four columns sidebar",
+ ),
+ html.Div(
+ [
+ html.Div(
+ [
+ html.H3("Pressure profile", id="graph-title"),
+ ],
+ className="text-box",
+ ),
+ dcc.Graph(id="pressure-profile-graph", style={"margin": "0px 20px", "height": "45vh"}),
+ ],
+ className="eight columns",
+ ),
+ ],
+}
+
+app.layout = html.Div(
+ [html.Div(tabs["connection_statistics"], id="app")],
className="row flex-display",
style={"height": "100vh"},
)
-@app.callback(Output("graph", "figure"), [Input("slider", "value")])
-def make_graph_callback(value):
- return make_graph(value)
+@app.callback(
+ Output("connection-statistics-graph", "figure"),
+ State("installation-select", "value"),
+ State("node-select", "value"),
+ State("y-axis-select", "value"),
+ State("time-range-select", "value"),
+ State("custom-time-range-select", "start_date"),
+ State("custom-time-range-select", "end_date"),
+ Input("refresh-button", "n_clicks"),
+)
+@cache.memoize(timeout=CACHE_TIMEOUT, args_to_ignore=["refresh"])
+def plot_connection_statistics_graph(
+ installation_reference,
+ node_id,
+ y_axis_column,
+ time_range,
+ custom_start_date,
+ custom_end_date,
+ refresh,
+):
+ """Plot a graph of the connection statistics for the given installation, y-axis column, and time range when these
+ values are changed or the refresh button is clicked.
+ :param str installation_reference:
+ :param str y_axis_column:
+ :param str time_range:
+ :param int refresh:
+ :return plotly.graph_objs.Figure:
+ """
+ if not node_id:
+ node_id = None
-@app.callback(Output("text", "children"), [Input("slider", "value")])
-def make_text_callback(value):
- return make_text(value)
+ return plot_connections_statistics(
+ installation_reference,
+ node_id,
+ y_axis_column,
+ time_range,
+ custom_start_date,
+ custom_end_date,
+ )
@app.callback(
- [Output("slider", "value"), Output("click-output", "data")],
- [Input("back", "n_clicks"), Input("next", "n_clicks")],
- [State("slider", "value"), State("click-output", "data")],
+ Output("sensors-graph", "figure"),
+ Output("data-limit-warning", "children"),
+ State("installation-select", "value"),
+ State("node-select", "value"),
+ State("y-axis-select", "value"),
+ State("time-range-select", "value"),
+ State("custom-time-range-select", "start_date"),
+ State("custom-time-range-select", "end_date"),
+ Input("refresh-button", "n_clicks"),
)
-def advance_slider_callback(back, nxt, slider, last_history):
- return advance_slider(back, nxt, slider, last_history)
+@cache.memoize(timeout=CACHE_TIMEOUT, args_to_ignore=["refresh"])
+def plot_sensors_graph(
+ installation_reference,
+ node_id,
+ y_axis_column,
+ time_range,
+ custom_start_date,
+ custom_end_date,
+ refresh,
+):
+ """Plot a graph of the sensor data for the given installation, y-axis column, and time range when these values are
+ changed or the refresh button is clicked.
+
+ :param str installation_reference:
+ :param str y_axis_column:
+ :param str time_range:
+ :param int refresh:
+ :return plotly.graph_objs.Figure:
+ """
+ if not node_id:
+ node_id = None
+
+ figure, data_limit_applied = plot_sensors(
+ installation_reference,
+ node_id,
+ y_axis_column,
+ time_range,
+ custom_start_date,
+ custom_end_date,
+ )
+
+ if data_limit_applied:
+ return (figure, f"Large amount of data - the query has been limited to the latest {ROW_LIMIT} datapoints.")
+
+ return (figure, "")
-@app.callback(Output("output", "children"), [Input("radios", "value")])
-def display_value(value):
- return f"Selected value: {value}"
+@cache.memoize(timeout=0)
+def get_pressure_profiles_for_time_window(installation_reference, node_id, start_datetime, finish_datetime):
+ """Get pressure profiles for the given node during the given time window along with the minimum and maximum
+ pressures over all the sensors over that window.
+
+ :param str installation_reference:
+ :param str node_id:
+ :param datetime.datetime start_datetime:
+ :param datetime.datetime finish_datetime:
+ :return (pandas.DataFrame, float, float): the pressure profiles, minimum pressure, and maximum pressure for the time window
+ """
+ df, _ = BigQuery().get_sensor_data(
+ installation_reference=installation_reference,
+ node_id=node_id,
+ sensor_type_reference="barometer",
+ start=start_datetime,
+ finish=finish_datetime,
+ )
+
+ logger.info(
+ "Downloaded pressure profile %d second time window for start datetime %r and finish datetime %r.",
+ (finish_datetime - start_datetime).seconds,
+ start_datetime.isoformat(),
+ finish_datetime.isoformat(),
+ )
+
+ sensor_column_names, _ = get_cleaned_sensor_column_names(df)
+ df_with_sensors_only = df[sensor_column_names]
+ return (df, df_with_sensors_only.min().min(), df_with_sensors_only.max().max())
+
+
+@app.callback(
+ Output("pressure-profile-graph", "figure"),
+ State("installation-select", "value"),
+ State("node-select", "value"),
+ State("date-select", "date"),
+ State("hour", "value"),
+ State("minute", "value"),
+ State("second", "value"),
+ Input("time-slider", "value"),
+ Input("refresh-button", "n_clicks"),
+)
+def plot_pressure_profile_graph(installation_reference, node_id, date, hour, minute, second, time_delta, refresh):
+ if not node_id:
+ node_id = None
+
+ initial_datetime = dt.datetime.combine(date=dt.date.fromisoformat(date), time=dt.time(hour, minute, second))
+
+ df, minimum, maximum = get_pressure_profiles_for_time_window(
+ installation_reference=installation_reference,
+ node_id=node_id,
+ start_datetime=initial_datetime,
+ finish_datetime=initial_datetime + dt.timedelta(seconds=60),
+ )
+
+ slider_datetime = initial_datetime + dt.timedelta(seconds=time_delta)
+
+ df = df[
+ (df["datetime"] >= slider_datetime - dt.timedelta(seconds=0.5))
+ & (df["datetime"] < slider_datetime + dt.timedelta(seconds=0.5))
+ ]
+
+ logger.debug("Filtered pressure profile time window for single datetime.")
+ return plot_pressure_bar_chart(df, minimum, maximum)
+
+
+@app.callback(
+ Output("installation-select", "options"),
+ Input("installation-check-button", "n_clicks"),
+)
+def update_installation_selector(refresh):
+ """Update the installation selector with any new installations when the refresh button is clicked.
+
+ :param int refresh:
+ :return list:
+ """
+ return BigQuery().get_installations()
+
+
+@app.callback(
+ [
+ Output("node-select", "options"),
+ Output("node-select", "value"),
+ ],
+ [
+ Input("installation-select", "value"),
+ ],
+)
+@cache.memoize(timeout=CACHE_TIMEOUT)
+def update_node_selector(installation_reference):
+ """Update the node selector options with the IDs of the nodes available for the given installation.
+
+ :param str installation_reference:
+ :return list(str):
+ """
+ nodes = BigQuery().get_nodes(installation_reference)
+
+ try:
+ first_option = nodes[0]
+ except IndexError:
+ first_option = None
+
+ return nodes, first_option
+
+
+@app.callback(
+ Output("graph-title", "children"),
+ Input("y-axis-select", "value"),
+)
+def update_graph_title(selected_y_axis):
+ """Update the graph title with the name of the currently selected y-axis.
+
+ :param str selected_y_axis:
+ :return str:
+ """
+ if not selected_y_axis:
+ return ""
+
+ return " ".join(selected_y_axis.split("_")).capitalize()
+
+
+@app.callback(
+ [
+ Output("custom-time-range-select", "disabled"),
+ Output("custom-time-range-select", "start_date"),
+ Output("custom-time-range-select", "end_date"),
+ ],
+ [
+ Input("time-range-select", "value"),
+ ],
+)
+def enable_custom_time_range_select(time_range):
+ """Enable the custom time range selection if "Custom" is chosen in the time range selector.
+
+ :param str time_range:
+ :return bool:
+ """
+ return (time_range != "Custom", None, None)
+
+
+@app.callback(
+ Output("app", "children"),
+ Input("nav-tabs", "value"),
+)
+def change_tabs(section_name):
+ """Change the buttons shown on the dashboard when a navigation tab is clicked.
+
+ :param str section_name:
+ :return list:
+ """
+ return tabs[section_name]
# Run the Dash app
diff --git a/assets/styles.css b/assets/styles.css
index fddc401..4a87d5b 100644
--- a/assets/styles.css
+++ b/assets/styles.css
@@ -59,6 +59,9 @@ h5 {
.text-box {
margin: 50px;
}
+.warning {
+ color: red;
+}
#text {
padding: 50px;
color: #506783;
diff --git a/dashboard/components/__init__.py b/dashboard/components/__init__.py
index c60047f..b2d802b 100644
--- a/dashboard/components/__init__.py
+++ b/dashboard/components/__init__.py
@@ -1,8 +1,8 @@
+from .about import About
from .installation_select import InstallationSelect
from .logo import Logo
from .nav import Nav
-from .subtitle import Subtitle
from .title import Title
-__all__ = ("InstallationSelect", "Logo", "Nav", "Subtitle", "Title")
+__all__ = ("InstallationSelect", "Logo", "Nav", "About", "Title")
diff --git a/dashboard/components/about.py b/dashboard/components/about.py
index 9ed451d..bf6f1d0 100644
--- a/dashboard/components/about.py
+++ b/dashboard/components/about.py
@@ -4,7 +4,14 @@
def About():
return dcc.Markdown(
"""
- This dashboard is read-only; you can upload and edit data using the lower-level [aerosense-tools](https://link.com) (for querying and interactive plot visualisation) and [data-gateway](https://link.com) (for data ingress and installation/configuration management.
+ A dashboard for exploring the Aerosense data lake, comprising ["greta" (a GCP BigQuery instance)]
+ (https://console.cloud.google.com/bigquery?project=aerosense-twined&ws=!1m4!1m3!3m2!1saerosense-twined!2sgreta)
+ and acoustic datafile stores.
+
+ This dashboard is read-only; you can upload and edit data using the lower-level
+ [aerosense-tools](https://github.com/aerosense-ai/aerosense-tools) (for querying and interactive plot
+ visualisation) and [data-gateway](https://github.com/aerosense-ai/data-gateway) (for data ingress and
+ installation/configuration management.
""",
- className="sidebar-content",
+ className="subtitle sidebar-content",
)
diff --git a/dashboard/components/installation_select.py b/dashboard/components/installation_select.py
index ae1aa8c..0a203db 100644
--- a/dashboard/components/installation_select.py
+++ b/dashboard/components/installation_select.py
@@ -1,17 +1,13 @@
from dash import dcc
-from ..queries import get_installations
+from dashboard.queries import BigQuery
-def InstallationSelect():
- installations = get_installations().to_dict(orient="records")
- options = [
- {"label": f"{row['reference']} (Turbine {row['turbine_id']})", "value": row["reference"]}
- for row in installations
- ]
+def InstallationSelect(current_installation_reference=None):
+ installations = BigQuery().get_installations()
+
return dcc.Dropdown(
- options=options,
- id="installation_select",
- value=installations[0]["reference"],
- className="sidebar-content",
+ options=installations,
+ id="installation-select",
+ value=current_installation_reference or installations[0]["value"],
)
diff --git a/dashboard/components/nav.py b/dashboard/components/nav.py
index a61a0a9..bbe21bc 100644
--- a/dashboard/components/nav.py
+++ b/dashboard/components/nav.py
@@ -1,16 +1,17 @@
from dash import dcc, html
-def Nav():
+def Nav(selected_tab="connection_statistics"):
return html.Div(
dcc.Tabs(
id="nav-tabs",
- value="about",
+ value=selected_tab,
children=[
- dcc.Tab(label="About", value="about"),
- dcc.Tab(label="Connection Stats", value="constats"),
- dcc.Tab(label="Pressures", value="pressures"),
+ dcc.Tab(label="Connection Stats", value="connection_statistics"),
+ dcc.Tab(label="Sensors", value="sensors"),
+ dcc.Tab(label="Pressure profile", value="pressure_profile"),
],
+ persistence=True,
),
className="sidebar-content",
)
diff --git a/dashboard/components/node_select.py b/dashboard/components/node_select.py
new file mode 100644
index 0000000..33a21f0
--- /dev/null
+++ b/dashboard/components/node_select.py
@@ -0,0 +1,9 @@
+from dash import dcc
+
+
+def NodeSelect():
+ return dcc.Dropdown(
+ options=["0"],
+ id="node-select",
+ persistence=True,
+ )
diff --git a/dashboard/components/sensor_select.py b/dashboard/components/sensor_select.py
new file mode 100644
index 0000000..1c86cfd
--- /dev/null
+++ b/dashboard/components/sensor_select.py
@@ -0,0 +1,18 @@
+from dash import dcc
+
+from dashboard.queries import BigQuery
+
+
+def SensorSelect():
+ sensor_types = [
+ sensor_type
+ for sensor_type in BigQuery().get_sensor_types()
+ if sensor_type not in {"microphone", "connection_statistics"}
+ ]
+
+ return dcc.Dropdown(
+ options=sensor_types,
+ id="y-axis-select",
+ value=sensor_types[0],
+ persistence=True,
+ )
diff --git a/dashboard/components/subtitle.py b/dashboard/components/subtitle.py
deleted file mode 100644
index e9992a9..0000000
--- a/dashboard/components/subtitle.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from dash import dcc
-
-
-def Subtitle():
- return dcc.Markdown(
- """
- A dashboard for exploring the Aerosense data lake, comprising ["gretaDB" (a GCP BigQuery instance)](https://link.com) and acoustic datafile stores.
-
- This dashboard is read-only; you can upload and edit data using the lower-level [aerosense-tools](https://link.com) (for querying and interactive plot visualisation) and [data-gateway](https://link.com) (for data ingress and installation/configuration management.
- """,
- className="subtitle sidebar-content",
- )
diff --git a/dashboard/components/time_range_select.py b/dashboard/components/time_range_select.py
new file mode 100644
index 0000000..f051f2b
--- /dev/null
+++ b/dashboard/components/time_range_select.py
@@ -0,0 +1,12 @@
+from dash import dcc
+
+from dashboard.utils import TIME_RANGE_OPTIONS
+
+
+def TimeRangeSelect():
+ return dcc.Dropdown(
+ options=list(TIME_RANGE_OPTIONS.keys()) + ["All time", "Custom"],
+ id="time-range-select",
+ value="Last day",
+ persistence=True,
+ )
diff --git a/dashboard/components/y_axis_select.py b/dashboard/components/y_axis_select.py
new file mode 100644
index 0000000..c6a5ad0
--- /dev/null
+++ b/dashboard/components/y_axis_select.py
@@ -0,0 +1,10 @@
+from dash import dcc
+
+
+def YAxisSelect():
+ return dcc.Dropdown(
+ options=["filtered_rssi", "raw_rssi", "tx_power", "allocated_heap_memory"],
+ id="y-axis-select",
+ value="tx_power",
+ persistence=True,
+ )
diff --git a/dashboard/graphs.py b/dashboard/graphs.py
new file mode 100644
index 0000000..efff4d2
--- /dev/null
+++ b/dashboard/graphs.py
@@ -0,0 +1,68 @@
+from plotly import express as px
+
+from dashboard.queries import BigQuery
+from dashboard.utils import generate_time_range, get_cleaned_sensor_column_names
+
+
+def plot_connections_statistics(
+ installation_reference,
+ node_id,
+ y_axis_column,
+ time_range,
+ custom_start_date,
+ custom_end_date,
+):
+ start, finish = generate_time_range(time_range, custom_start_date, custom_end_date)
+
+ df = BigQuery().get_aggregated_connection_statistics(
+ installation_reference,
+ node_id,
+ start=start,
+ finish=finish,
+ )
+
+ figure = px.line(df, x="datetime", y=y_axis_column)
+ figure.update_layout(xaxis_title="Date/time", yaxis_title="Raw value")
+ return figure
+
+
+def plot_sensors(installation_reference, node_id, sensor_name, time_range, custom_start_date, custom_end_date):
+ start, finish = generate_time_range(time_range, custom_start_date, custom_end_date)
+
+ df, data_limit_applied = BigQuery().get_sensor_data(
+ installation_reference,
+ node_id,
+ sensor_name,
+ start=start,
+ finish=finish,
+ )
+
+ original_sensor_names, cleaned_sensor_names = get_cleaned_sensor_column_names(df)
+
+ df.rename(
+ columns={
+ original_name: cleaned_name
+ for original_name, cleaned_name in zip(original_sensor_names, cleaned_sensor_names)
+ },
+ inplace=True,
+ )
+
+ figure = px.line(df, x="datetime", y=cleaned_sensor_names)
+ figure.update_layout(xaxis_title="Date/time", yaxis_title="Raw value")
+ return (figure, data_limit_applied)
+
+
+def plot_pressure_bar_chart(df, minimum, maximum):
+ original_sensor_names, cleaned_sensor_names = get_cleaned_sensor_column_names(df)
+ df_transposed = df[original_sensor_names].transpose()
+ df_transposed["Barometer number"] = cleaned_sensor_names
+
+ if len(df) == 0:
+ df_transposed["Raw value"] = 0
+ else:
+ df_transposed["Raw value"] = df_transposed.iloc[:, 0]
+
+ figure = px.line(df_transposed, x="Barometer number", y="Raw value")
+ figure.add_bar(x=df_transposed["Barometer number"], y=df_transposed["Raw value"])
+ figure.update_layout(showlegend=False, yaxis_range=[minimum, maximum])
+ return figure
diff --git a/dashboard/queries.py b/dashboard/queries.py
new file mode 100644
index 0000000..08dd1df
--- /dev/null
+++ b/dashboard/queries.py
@@ -0,0 +1,223 @@
+import datetime as dt
+
+from google.cloud import bigquery
+
+
+ROW_LIMIT = 10000
+
+
+# SCRATCH: MIGHT BE USEFUL, OTHERWISE GET RID:
+# ============================================
+# AND datetime > DATE_ADD(PARSE_DATETIME('%Y%m%d', @DS_START_DATE), INTERVAL @hour HOUR)
+# AND datetime < DATE_ADD(PARSE_DATETIME('%Y%m%d', @DS_START_DATE), INTERVAL @hour+1 HOUR)
+# AND IS_NAN(sensor_value[ORDINAL(1)]) IS FALSE
+# AND IS_NAN(sensor_value[ORDINAL(2)]) IS FALSE
+# AND IS_NAN(sensor_value[ORDINAL(3)]) IS FALSE
+# AND IS_NAN(sensor_value[ORDINAL(4)]) IS FALSE
+
+
+class BigQuery:
+ def __init__(self):
+ self.client = bigquery.Client()
+
+ def get_sensor_data(
+ self,
+ installation_reference,
+ node_id,
+ sensor_type_reference,
+ start=None,
+ finish=None,
+ ):
+ """Get sensor data for the given sensor type on the given node of the given installation over the given time
+ period. The time period defaults to the last day.
+
+ :param str installation_reference:
+ :param str|None node_id:
+ :param str sensor_type_reference:
+ :param datetime.datetime|None start:
+ :param datetime.datetime|None finish:
+ :param bool all_time:
+ :return pandas.Dataframe:
+ """
+ table_name = f"aerosense-twined.greta.sensor_data_{sensor_type_reference}"
+
+ conditions = """
+ WHERE datetime BETWEEN @start AND @finish
+ AND installation_reference = @installation_reference
+ AND node_id = @node_id
+ """
+
+ start, finish = self._get_time_period(start, finish)
+
+ query_config = bigquery.QueryJobConfig(
+ query_parameters=[
+ bigquery.ScalarQueryParameter("start", "DATETIME", start),
+ bigquery.ScalarQueryParameter("finish", "DATETIME", finish),
+ bigquery.ScalarQueryParameter("installation_reference", "STRING", installation_reference),
+ bigquery.ScalarQueryParameter("node_id", "STRING", node_id),
+ ]
+ )
+
+ count_query = f"""
+ SELECT COUNT(datetime)
+ FROM `{table_name}`
+ {conditions}
+ """
+
+ number_of_rows = list(self.client.query(count_query, job_config=query_config).result())[0][0]
+
+ data_query = f"""
+ SELECT *
+ FROM `{table_name}`
+ {conditions}
+ ORDER BY datetime
+ """
+
+ data_limit_applied = False
+
+ if number_of_rows > ROW_LIMIT:
+ data_query += f"\nLIMIT {ROW_LIMIT}"
+ data_limit_applied = True
+
+ return (self.client.query(data_query, job_config=query_config).to_dataframe(), data_limit_applied)
+
+ def get_sensor_data_at_datetime(
+ self,
+ installation_reference,
+ node_id,
+ sensor_type_reference,
+ datetime,
+ tolerance=1,
+ ):
+ """Get sensor data for the given sensor type on the given node of the given installation at the given datetime.
+ The first datetime within a tolerance of plus/minus half of `tolerance` is used.
+
+ :param str installation_reference:
+ :param str|None node_id:
+ :param str sensor_type_reference:
+ :param datetime.datetime|None datetime:
+ :param float tolerance: the tolerance on the given datetime in seconds
+ :return pandas.Dataframe:
+ """
+ table_name = f"aerosense-twined.greta.sensor_data_{sensor_type_reference}"
+
+ conditions = """
+ WHERE datetime >= @start_datetime
+ AND datetime < @finish_datetime
+ AND installation_reference = @installation_reference
+ AND node_id = @node_id
+ """
+
+ start_datetime = datetime - dt.timedelta(seconds=tolerance / 2)
+ finish_datetime = datetime + dt.timedelta(seconds=tolerance / 2)
+
+ query_config = bigquery.QueryJobConfig(
+ query_parameters=[
+ bigquery.ScalarQueryParameter("start_datetime", "DATETIME", start_datetime),
+ bigquery.ScalarQueryParameter("finish_datetime", "DATETIME", finish_datetime),
+ bigquery.ScalarQueryParameter("installation_reference", "STRING", installation_reference),
+ bigquery.ScalarQueryParameter("node_id", "STRING", node_id),
+ ]
+ )
+
+ query = f"""
+ SELECT *
+ FROM `{table_name}`
+ {conditions}
+ ORDER BY datetime
+ """
+
+ return self.client.query(query, job_config=query_config).to_dataframe()
+
+ def get_aggregated_connection_statistics(
+ self,
+ installation_reference,
+ node_id,
+ start=None,
+ finish=None,
+ ):
+ """Query for minute-wise aggregated connection statistics over a day, by default the day up to now.
+
+ :param [str] installation_reference: The installation reference to query for, e.g. "ost-wt-tests"
+ :param Union[datetime.datetime, None] up_to: The point in time, default now(), where results will
+ be delivered for the 24 hours prior.
+ """
+ connection_statistics_agg_sql = """
+ SELECT datetime, filtered_rssi, raw_rssi, tx_power, allocated_heap_memory
+ FROM `aerosense-twined.greta.connection_statistics_agg`
+ WHERE datetime BETWEEN @start AND @finish
+ AND installation_reference = @installation_reference
+ AND node_id = @node_id
+ ORDER BY datetime
+ """
+
+ start, finish = self._get_time_period(start, finish)
+
+ query_config = bigquery.QueryJobConfig(
+ query_parameters=[
+ bigquery.ScalarQueryParameter("start", "DATETIME", start),
+ bigquery.ScalarQueryParameter("finish", "DATETIME", finish),
+ bigquery.ScalarQueryParameter("installation_reference", "STRING", installation_reference),
+ bigquery.ScalarQueryParameter("node_id", "STRING", node_id),
+ ]
+ )
+
+ return self.client.query(connection_statistics_agg_sql, job_config=query_config).to_dataframe()
+
+ def get_installations(self):
+ """Query for all installations (without sensor coordinate data)"""
+ installations_sql = """
+ SELECT reference, turbine_id, location
+ FROM `aerosense-twined.greta.installation`
+ ORDER BY reference
+ """
+
+ installations = self.client.query(installations_sql).to_dataframe().to_dict(orient="records")
+
+ return [
+ {"label": f"{row['reference']} (Turbine {row['turbine_id']})", "value": row["reference"]}
+ for row in installations
+ ]
+
+ def get_sensor_types(self):
+ """Get the available sensor types.
+
+ :return list:
+ """
+ query = """
+ SELECT name
+ FROM `aerosense-twined.greta.sensor_type`
+ ORDER BY name
+ """
+
+ return self.client.query(query).to_dataframe()["name"].to_list()
+
+ def get_nodes(self, installation_reference):
+ """Get the IDs of the nodes available for the given installation.
+
+ :param str installation_reference:
+ :return list(str):
+ """
+ query = """
+ SELECT node_id FROM `aerosense-twined.greta.sensor_data`
+ WHERE installation_reference = @installation_reference
+ GROUP BY node_id
+ ORDER BY node_id
+ """
+
+ query_config = bigquery.QueryJobConfig(
+ query_parameters=[bigquery.ScalarQueryParameter("installation_reference", "STRING", installation_reference)]
+ )
+
+ return self.client.query(query, job_config=query_config).to_dataframe()["node_id"].to_list()
+
+ def _get_time_period(self, start=None, finish=None):
+ """Get the time period for the query. Defaults to the past day.
+
+ :param datetime.datetime|None start:
+ :param datetime.datetime|None finish:
+ :return (datetime.datetime, datetime.datetime):
+ """
+ finish = finish or dt.datetime.now()
+ start = start or finish - dt.timedelta(days=1)
+ return start, finish
diff --git a/dashboard/queries/__init__.py b/dashboard/queries/__init__.py
deleted file mode 100644
index 2d8ad65..0000000
--- a/dashboard/queries/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from .bigquery import get_connection_statistics_agg, get_installation, get_installations
-
-__all__ = ("get_connection_statistics_agg", "get_installation", "get_installations")
diff --git a/dashboard/queries/bigquery.py b/dashboard/queries/bigquery.py
deleted file mode 100644
index 039f9eb..0000000
--- a/dashboard/queries/bigquery.py
+++ /dev/null
@@ -1,69 +0,0 @@
-from datetime import datetime
-from google.cloud import bigquery
-
-
-bqclient = bigquery.Client()
-
-
-# SCRATCH: MIGHT BE USEFUL, OTHERWISE GET RID:
-# ============================================
-# AND datetime > DATE_ADD(PARSE_DATETIME('%Y%m%d', @DS_START_DATE), INTERVAL @hour HOUR)
-# AND datetime < DATE_ADD(PARSE_DATETIME('%Y%m%d', @DS_START_DATE), INTERVAL @hour+1 HOUR)
-# AND IS_NAN(sensor_value[ORDINAL(1)]) IS FALSE
-# AND IS_NAN(sensor_value[ORDINAL(2)]) IS FALSE
-# AND IS_NAN(sensor_value[ORDINAL(3)]) IS FALSE
-# AND IS_NAN(sensor_value[ORDINAL(4)]) IS FALSE
-
-
-connection_statistics_agg_sql = """
-SELECT datetime, filtered_rssi, raw_rssi, tx_power, allocated_heap_memory, installation_reference
-FROM `aerosense-twined.greta.connection_statistics_agg`
-WHERE datetime BETWEEN DATETIME_SUB(@up_to, INTERVAL 1 DAY) AND @up_to
-AND installation_reference = @installation_reference
-"""
-
-
-def get_connection_statistics_agg(installation_reference, up_to=None):
- """Query for minute-wise aggregated connection statistics over a day, by default the day up to now.
- :param [str] installation_reference: The installation reference to query for, e.g. "ost-wt-tests"
- :param Union[datetime.datetime, None] up_to: The point in time, default now(), where results will
- be delivered for the 24 hours prior.
- """
- print("Getting constats_agg", up_to, installation_reference)
- up_to = up_to if up_to is not None else datetime.now()
- query_config = bigquery.QueryJobConfig(
- query_parameters=[
- bigquery.ScalarQueryParameter("installation_reference", "STRING", installation_reference),
- bigquery.ScalarQueryParameter("up_to", "DATETIME", up_to),
- ]
- )
- return bqclient.query(connection_statistics_agg_sql, job_config=query_config).to_dataframe()
-
-
-installations_sql = """
-SELECT reference, turbine_id, location
-FROM `aerosense-twined.greta.installation`
-"""
-
-
-def get_installations():
- """Query for all installations (without sensor coordinate data)"""
- return bqclient.query(installations_sql).to_dataframe()
-
-
-installation_sql = """
-SELECT reference, turbine_id, sensor_coordinates, location
-FROM `aerosense-twined.greta.installation`
-WHERE installation_reference = @installation_reference
-"""
-
-
-def get_installation(installation_reference):
- """Query for an installation (with sensor coordinate data)
- May return multiple rows if the installation has had upgraded hardware
- :param [str] installation_reference: The installation reference to query for, e.g. "ost-wt-tests"
- """
- query_config = bigquery.QueryJobConfig(
- query_parameters=[bigquery.ScalarQueryParameter("installation_reference", "STRING", installation_reference)]
- )
- return bqclient.query(installation_sql, job_config=query_config).to_dataframe()
diff --git a/dashboard/utils.py b/dashboard/utils.py
new file mode 100644
index 0000000..5473bab
--- /dev/null
+++ b/dashboard/utils.py
@@ -0,0 +1,51 @@
+import datetime
+import re
+
+
+TIME_RANGE_OPTIONS = {
+ "Last minute": datetime.timedelta(minutes=1),
+ "Last hour": datetime.timedelta(hours=1),
+ "Last day": datetime.timedelta(days=1),
+ "Last week": datetime.timedelta(weeks=1),
+ "Last month": datetime.timedelta(days=31),
+ "Last year": datetime.timedelta(days=365),
+}
+
+
+def generate_time_range(time_range, custom_start_date=None, custom_end_date=None):
+ """Generate a convenient time range to plot. The options are:
+ - Last minute
+ - Last hour
+ - Last day
+ - Last week
+ - Last month
+ - Last year
+ - All time
+ - Custom
+
+ :param str time_range:
+ :param datetime.date|None custom_start_date:
+ :param datetime.date|None custom_end_date:
+ :return (datetime.datetime, datetime.datetime, bool): the start and finish datetimes
+ """
+ if time_range == "All time":
+ return datetime.datetime.min, datetime.datetime.now()
+
+ if time_range == "Custom":
+ return custom_start_date, custom_end_date
+
+ finish = datetime.datetime.now()
+ start = finish - TIME_RANGE_OPTIONS[time_range]
+ return start, finish
+
+
+def get_cleaned_sensor_column_names(dataframe):
+ """Get cleaned sensor column names for a dataframe when the columns are named like "f0_", "f1_"... "fn_" for `n`
+ sensors.
+
+ :param pandas.DataFrame dataframe: a dataframe containing columns of sensor data named like "f0_", "f1_"...
+ :return (list, list): the uncleaned and cleaned sensor names
+ """
+ original_names = [column for column in dataframe.columns if column.startswith("f") and column.endswith("_")]
+ cleaned_names = [re.findall(r"f(\d+)_", sensor_name)[0] for sensor_name in original_names]
+ return original_names, cleaned_names
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 3ef8523..7223c4a 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -10,11 +10,13 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
-import re
import os
+import re
import sys
+
import sphinx_rtd_theme
+
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
@@ -51,8 +53,8 @@
master_doc = "index"
# General information about the project.
-project = u"aerosense_dashboard"
-copyright = u"The Aerosense Research Partners"
+project = "aerosense_dashboard"
+copyright = "The Aerosense Research Partners"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -197,7 +199,7 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ("index", "aerosense_dashboard.tex", u"aerosense_dashboard", u"OST Aerosense", "manual"),
+ ("index", "aerosense_dashboard.tex", "aerosense_dashboard", "OST Aerosense", "manual"),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -225,7 +227,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
-man_pages = [("index", "aerosense_dashboard", u"aerosense_dashboard", [u"OST Aerosense"], 1)]
+man_pages = [("index", "aerosense_dashboard", "aerosense_dashboard", ["OST Aerosense"], 1)]
# If true, show URL addresses after external links.
# man_show_urls = False
@@ -240,8 +242,8 @@
(
"index",
"aerosense_dashboard",
- u"aerosense_dashboard",
- u"OST Aerosense",
+ "aerosense_dashboard",
+ "OST Aerosense",
"aerosense_dashboard",
"High level visualisation of Aerosense data.",
"Miscellaneous",
diff --git a/example/__init__.py b/example/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/example/callbacks.py b/example/callbacks.py
deleted file mode 100644
index 1cb52a3..0000000
--- a/example/callbacks.py
+++ /dev/null
@@ -1,168 +0,0 @@
-import numpy as np
-
-from example.old import CENTERS, EYES, TEXTS, UPS, xlist, ylist, zlist
-
-
-def make_graph(value):
- """Make 3d graph"""
-
- if value is None:
- value = 0
-
- if value in [0, 2, 3]:
- z_secondary_beginning = [z[1] for z in zlist if z[0] == "None"]
- z_secondary_end = [z[0] for z in zlist if z[0] != "None"]
- z_secondary = z_secondary_beginning + z_secondary_end
- x_secondary = ["3-month"] * len(z_secondary_beginning) + ["1-month"] * len(z_secondary_end)
- y_secondary = ylist
- opacity = 0.7
-
- elif value == 1:
- x_secondary = xlist
- y_secondary = [ylist[-1] for i in xlist]
- z_secondary = zlist[-1]
- opacity = 0.7
-
- elif value == 4:
- z_secondary = [z[8] for z in zlist]
- x_secondary = ["10-year" for i in z_secondary]
- y_secondary = ylist
- opacity = 0.25
-
- if value in range(0, 5):
-
- trace1 = dict(
- type="surface",
- x=xlist,
- y=ylist,
- z=zlist,
- hoverinfo="x+y+z",
- lighting={
- "ambient": 0.95,
- "diffuse": 0.99,
- "fresnel": 0.01,
- "roughness": 0.01,
- "specular": 0.01,
- },
- colorscale=[
- [0, "rgb(230,245,254)"],
- [0.4, "rgb(123,171,203)"],
- [0.8, "rgb(40,119,174)"],
- [1, "rgb(37,61,81)"],
- ],
- opacity=opacity,
- showscale=False,
- zmax=9.18,
- zmin=0,
- scene="scene",
- )
-
- trace2 = dict(
- type="scatter3d",
- mode="lines",
- x=x_secondary,
- y=y_secondary,
- z=z_secondary,
- hoverinfo="x+y+z",
- line=dict(color="#444444"),
- )
-
- data = [trace1, trace2]
-
- else:
-
- trace1 = dict(
- type="contour",
- x=ylist,
- y=xlist,
- z=np.array(zlist).T,
- colorscale=[
- [0, "rgb(230,245,254)"],
- [0.4, "rgb(123,171,203)"],
- [0.8, "rgb(40,119,174)"],
- [1, "rgb(37,61,81)"],
- ],
- showscale=False,
- zmax=9.18,
- zmin=0,
- line=dict(smoothing=1, color="rgba(40,40,40,0.15)"),
- contours=dict(coloring="heatmap"),
- )
-
- data = [trace1]
-
- layout = dict(
- autosize=True,
- font=dict(size=12, color="#CCCCCC"),
- margin=dict(t=5, l=5, b=5, r=5),
- showlegend=False,
- hovermode="closest",
- scene=dict(
- aspectmode="manual",
- aspectratio=dict(x=2, y=5, z=1.5),
- camera=dict(up=UPS[value], center=CENTERS[value], eye=EYES[value]),
- annotations=[
- dict(
- showarrow=False,
- y="2015-03-18",
- x="1-month",
- z=0.046,
- text="Point 1",
- xanchor="left",
- xshift=10,
- opacity=0.7,
- ),
- dict(
- y="2015-03-18",
- x="3-month",
- z=0.048,
- text="Point 2",
- textangle=0,
- ax=0,
- ay=-75,
- font=dict(color="black", size=12),
- arrowcolor="black",
- arrowsize=3,
- arrowwidth=1,
- arrowhead=1,
- ),
- ],
- xaxis={
- "showgrid": True,
- "title": "",
- "type": "category",
- "zeroline": False,
- "categoryorder": "array",
- "categoryarray": list(reversed(xlist)),
- },
- yaxis={"showgrid": True, "title": "", "type": "date", "zeroline": False},
- ),
- )
-
- figure = dict(data=data, layout=layout)
- return figure
-
-
-def make_text(value):
- """Make annotations"""
- if value is None:
- value = 0
-
- return TEXTS[value]
-
-
-def advance_slider(back, nxt, slider, last_history):
- """Button controls"""
- try:
- if back > last_history["back"]:
- last_history["back"] = back
- return max(0, slider - 1), last_history
-
- if nxt > last_history["next"]:
- last_history["next"] = nxt
- return min(5, slider + 1), last_history
-
- # if last_history store is None
- except Exception:
- last_history = {"back": 0, "next": 0}
- return slider, last_history
diff --git a/example/components.py b/example/components.py
deleted file mode 100644
index ff3e756..0000000
--- a/example/components.py
+++ /dev/null
@@ -1,49 +0,0 @@
-from dash import dcc, html
-
-
-def LearnMore():
- return html.Div(
- [
- html.A(
- html.Button("Learn More", className="learn-more-button"),
- href="https://plot.ly/dash/pricing/",
- target="_blank",
- )
- ],
- className="info-button",
- )
-
-
-def StepSlider():
- return html.Div(
- [
- dcc.Slider(
- min=0,
- max=5,
- value=0,
- marks={i: f"{i+1}" for i in range(6)},
- id="slider",
- ),
- ],
- className="timeline-slider",
- )
-
-
-def StepButtons():
- return html.Div(
- [
- html.Button(
- "Back",
- id="back",
- style={"display": "inline-block"},
- n_clicks=0,
- ),
- html.Button(
- "Next",
- id="next",
- style={"display": "inline-block", "marginLeft": "10px"},
- n_clicks=0,
- ),
- ],
- className="page-buttons",
- )
diff --git a/example/old.py b/example/old.py
deleted file mode 100644
index 78113bc..0000000
--- a/example/old.py
+++ /dev/null
@@ -1,141 +0,0 @@
-import pathlib
-import pandas as pd
-
-
-# get relative data folder
-PATH = pathlib.Path(__file__).parent
-DATA_PATH = PATH.resolve()
-
-
-df = pd.read_csv(DATA_PATH.joinpath("yield_curve.csv"))
-
-xlist = list(df["x"].dropna())
-ylist = list(df["y"].dropna())
-
-del df["x"]
-del df["y"]
-
-zlist = []
-for row in df.iterrows():
- index, data = row
- zlist.append(data.tolist())
-
-UPS = {
- 0: dict(x=0, y=0, z=1),
- 1: dict(x=0, y=0, z=1),
- 2: dict(x=0, y=0, z=1),
- 3: dict(x=0, y=0, z=1),
- 4: dict(x=0, y=0, z=1),
- 5: dict(x=0, y=0, z=1),
-}
-
-CENTERS = {
- 0: dict(x=0.3, y=0.8, z=-0.5),
- 1: dict(x=0, y=0, z=-0.37),
- 2: dict(x=0, y=1.1, z=-1.3),
- 3: dict(x=0, y=-0.7, z=0),
- 4: dict(x=0, y=-0.2, z=0),
- 5: dict(x=-0.11, y=-0.5, z=0),
-}
-
-EYES = {
- 0: dict(x=2.7, y=2.7, z=0.3),
- 1: dict(x=0.01, y=3.8, z=-0.37),
- 2: dict(x=1.3, y=3, z=0),
- 3: dict(x=2.6, y=-1.6, z=0),
- 4: dict(x=3, y=-0.2, z=0),
- 5: dict(x=-0.1, y=-0.5, z=2.66),
-}
-
-TEXTS = {
- 0: """
- ##### Yield curve 101
- The yield curve shows how much it costs the federal government to borrow
- money for a given amount of time, revealing the relationship between long-
- and short-term interest rates.
-
- It is, inherently, a forecast for what the economy holds in the future —
- how much inflation there will be, for example, and how healthy growth will
- be over the years ahead — all embodied in the price of money today,
- tomorrow and many years from now.
- """.replace(
- " ", ""
- ),
- 1: """
- ##### Where we stand
- On Wednesday, both short-term and long-term rates were lower than they have
- been for most of history – a reflection of the continuing hangover
- from the financial crisis.
-
- The yield curve is fairly flat, which is a sign that investors expect
- mediocre growth in the years ahead.
- """.replace(
- " ", ""
- ),
- 2: """
- ##### Deep in the valley
- In response to the last recession, the Federal Reserve has kept short-term
- rates very low — near zero — since 2008. (Lower interest rates stimulate
- the economy, by making it cheaper for people to borrow money, but also
- spark inflation.)
-
- Now, the Fed is getting ready to raise rates again, possibly as early as
- June.
- """.replace(
- " ", ""
- ),
- 3: """
- ##### Last time, a puzzle
- The last time the Fed started raising rates was in 2004. From 2004 to 2006,
- short-term rates rose steadily.
-
- But long-term rates didn't rise very much.
-
- The Federal Reserve chairman called this phenomenon a “conundrum," and it
- raised questions about the ability of the Fed to guide the economy.
- Part of the reason long-term rates failed to rise was because of strong
- foreign demand.
- """.replace(
- " ", ""
- ),
- 4: """
- ##### Long-term rates are low now, too
- Foreign buyers have helped keep long-term rates low recently, too — as have
- new rules encouraging banks to hold government debt and expectations that
- economic growth could be weak for a long time.
-
- The 10-year Treasury yield was as low as it has ever been in July 2012 and
- has risen only modestly since.
- Some economists refer to the economic pessimism as “the new normal.”
- """.replace(
- " ", ""
- ),
- 5: """
- ##### Long-term rates are low now, too
- Here is the same chart viewed from above.
- """.replace(
- " ", ""
- ),
-}
-
-ANNOTATIONS = {
- 0: [],
- 1: [
- dict(
- showarrow=False,
- x="1-month",
- y="2015-03-18",
- z=0.046,
- text="Short-term rates basically
follow the interest rates set
by the Federal Reserve.",
- xref="x",
- yref="y",
- zref="z",
- xanchor="left",
- yanchor="auto",
- )
- ],
- 2: [],
- 3: [],
- 4: [],
- 5: [],
-}
diff --git a/example/yield_curve.csv b/example/yield_curve.csv
deleted file mode 100644
index f4b6ffe..0000000
--- a/example/yield_curve.csv
+++ /dev/null
@@ -1,6308 +0,0 @@
-x,y,z[0],z[1],z[2],z[3],z[4],z[5],z[6],z[7],z[8],z[9],z[10]
-1-month,1990-01-02,None,7.83,7.89,7.81,7.87,7.9,7.87,7.98,7.94,None,8.0
-3-month,1990-01-03,None,7.89,7.94,7.85,7.94,7.96,7.92,8.04,7.99,None,8.04
-6-month,1990-01-04,None,7.84,7.9,7.82,7.92,7.93,7.91,8.02,7.98,None,8.04
-1-year,1990-01-05,None,7.79,7.85,7.79,7.9,7.94,7.92,8.03,7.99,None,8.06
-2-year,1990-01-08,None,7.79,7.88,7.81,7.9,7.95,7.92,8.05,8.02,None,8.09
-3-year,1990-01-09,None,7.8,7.82,7.78,7.91,7.94,7.92,8.05,8.02,None,8.1
-5-year,1990-01-10,None,7.75,7.78,7.77,7.91,7.95,7.92,8.0,8.03,None,8.11
-7-year,1990-01-11,None,7.8,7.8,7.77,7.91,7.95,7.94,8.01,8.04,None,8.11
-10-year,1990-01-12,None,7.74,7.81,7.76,7.93,7.98,7.99,8.07,8.1,None,8.17
-20-year,1990-01-16,None,7.89,7.99,7.92,8.1,8.13,8.11,8.18,8.2,None,8.25
-30-year,1990-01-17,None,7.97,7.97,7.91,8.09,8.11,8.11,8.17,8.19,None,8.25
-,1990-01-18,None,8.04,8.08,8.05,8.25,8.28,8.27,8.31,8.32,None,8.35
-,1990-01-19,None,8.0,8.01,8.0,8.2,8.23,8.2,8.24,8.26,None,8.29
-,1990-01-22,None,7.99,7.99,7.98,8.18,8.2,8.19,8.25,8.27,None,8.31
-,1990-01-23,None,7.93,7.97,7.97,8.18,8.2,8.18,8.23,8.26,None,8.29
-,1990-01-24,None,7.93,7.99,8.0,8.2,8.29,8.28,8.34,8.38,None,8.41
-,1990-01-25,None,7.95,8.01,8.03,8.24,8.32,8.31,8.39,8.42,None,8.46
-,1990-01-26,None,7.93,8.04,8.07,8.28,8.38,8.38,8.45,8.49,None,8.55
-,1990-01-29,None,8.0,8.09,8.08,8.3,8.39,8.39,8.45,8.5,None,8.54
-,1990-01-30,None,8.0,8.14,8.09,8.3,8.39,8.43,8.47,8.51,None,8.55
-,1990-01-31,None,8.0,8.13,8.08,8.28,8.36,8.35,8.39,8.43,None,8.46
-,1990-02-01,None,8.02,8.13,8.09,8.28,8.35,8.35,8.38,8.42,None,8.44
-,1990-02-02,None,8.07,8.17,8.13,8.37,8.43,8.42,8.46,8.5,None,8.51
-,1990-02-05,None,8.08,8.18,8.15,8.37,8.43,8.44,8.48,8.53,None,8.53
-,1990-02-06,None,8.09,8.17,8.15,8.42,8.43,8.49,8.52,8.57,None,8.58
-,1990-02-07,None,8.08,8.19,8.17,8.42,8.43,8.51,8.53,8.52,None,8.57
-,1990-02-08,None,8.08,8.18,8.13,8.37,8.39,8.45,8.48,8.49,None,8.5
-,1990-02-09,None,8.02,8.09,8.03,8.25,8.24,8.29,8.34,8.31,None,8.36
-,1990-02-12,None,7.99,8.11,8.06,8.32,8.32,8.37,8.41,8.4,None,8.43
-,1990-02-13,None,7.84,7.97,7.95,8.21,8.21,8.29,8.36,8.35,None,8.39
-,1990-02-14,None,7.87,8.0,8.03,8.27,8.27,8.34,8.36,8.36,None,8.41
-,1990-02-15,None,7.97,8.08,8.11,8.35,8.35,8.4,8.44,8.43,None,8.47
-,1990-02-16,None,7.94,8.07,8.09,8.36,8.34,8.41,8.43,8.42,None,8.46
-,1990-02-20,None,8.06,8.2,8.24,8.52,8.52,8.58,8.63,8.62,None,8.66
-,1990-02-21,None,8.01,8.19,8.22,8.5,8.52,8.6,8.63,8.62,None,8.66
-,1990-02-22,None,7.99,8.15,8.17,8.45,8.48,8.48,8.57,8.54,None,8.56
-,1990-02-23,None,7.93,8.09,8.11,8.43,8.45,8.47,8.56,8.53,None,8.56
-,1990-02-26,None,7.97,8.09,8.1,8.38,8.4,8.4,8.49,8.46,None,8.49
-,1990-02-27,None,7.99,8.1,8.06,8.34,8.34,8.34,8.43,8.41,None,8.45
-,1990-02-28,None,8.04,8.14,8.12,8.43,8.45,8.44,8.54,8.51,None,8.54
-,1990-03-01,None,8.08,8.19,8.21,8.53,8.53,8.53,8.62,8.59,None,8.61
-,1990-03-02,None,8.02,8.17,8.22,8.48,8.5,8.5,8.57,8.54,None,8.55
-,1990-03-05,None,8.09,8.27,8.31,8.55,8.59,8.58,8.69,8.65,None,8.66
-,1990-03-06,None,8.17,8.24,8.31,8.54,8.56,8.57,8.64,8.59,None,8.59
-,1990-03-07,None,8.18,8.22,8.29,8.54,8.55,8.56,8.63,8.58,None,8.58
-,1990-03-08,None,8.18,8.24,8.35,8.59,8.58,8.57,8.62,8.57,None,8.56
-,1990-03-09,None,8.26,8.33,8.46,8.73,8.71,8.68,8.71,8.65,None,8.63
-,1990-03-12,None,8.26,8.33,8.44,8.71,8.7,8.67,8.7,8.63,None,8.62
-,1990-03-13,None,8.26,8.34,8.48,8.77,8.77,8.75,8.78,8.73,None,8.72
-,1990-03-14,None,8.23,8.31,8.41,8.69,8.7,8.67,8.71,8.65,None,8.61
-,1990-03-15,None,8.21,8.32,8.41,8.71,8.7,8.69,8.73,8.66,None,8.63
-,1990-03-16,None,8.19,8.29,8.36,8.64,8.62,8.61,8.64,8.59,None,8.55
-,1990-03-19,None,8.22,8.32,8.38,8.68,8.66,8.65,8.66,8.59,None,8.54
-,1990-03-20,None,8.25,8.35,8.38,8.68,8.65,8.61,8.62,8.54,None,8.47
-,1990-03-21,None,8.23,8.34,8.39,8.69,8.66,8.62,8.63,8.55,None,8.47
-,1990-03-22,None,8.17,8.27,8.32,8.62,8.6,8.56,8.61,8.53,None,8.49
-,1990-03-23,None,8.15,8.26,8.29,8.61,8.59,8.54,8.59,8.52,None,8.48
-,1990-03-26,None,8.13,8.28,8.3,8.61,8.59,8.52,8.58,8.51,None,8.47
-,1990-03-27,None,8.17,8.3,8.35,8.59,8.6,8.55,8.59,8.52,None,8.48
-,1990-03-28,None,8.12,8.27,8.33,8.57,8.6,8.53,8.58,8.51,None,8.47
-,1990-03-29,None,8.1,8.28,8.36,8.62,8.65,8.6,8.66,8.6,None,8.58
-,1990-03-30,None,8.07,8.24,8.35,8.64,8.69,8.65,8.7,8.65,None,8.63
-,1990-04-02,None,8.05,8.23,8.34,8.62,8.67,8.65,8.69,8.65,None,8.63
-,1990-04-03,None,8.09,8.25,8.32,8.61,8.65,8.64,8.69,8.63,None,8.61
-,1990-04-04,None,8.01,8.17,8.27,8.54,8.59,8.56,8.62,8.55,None,8.52
-,1990-04-05,None,8.02,8.18,8.28,8.54,8.6,8.57,8.63,8.57,None,8.52
-,1990-04-06,None,8.02,8.16,8.26,8.52,8.58,8.55,8.61,8.56,None,8.52
-,1990-04-09,None,8.09,8.23,8.29,8.54,8.6,8.58,8.65,8.59,None,8.55
-,1990-04-10,None,8.05,8.21,8.29,8.54,8.59,8.58,8.65,8.6,None,8.57
-,1990-04-11,None,8.03,8.2,8.28,8.56,8.62,8.6,8.63,8.63,None,8.58
-,1990-04-12,None,8.02,8.2,8.29,8.57,8.63,8.62,8.65,8.64,None,8.6
-,1990-04-16,None,8.01,8.18,8.29,8.61,8.66,8.65,8.69,8.68,None,8.64
-,1990-04-17,None,8.03,8.23,8.38,8.7,8.75,8.73,8.78,8.77,None,8.74
-,1990-04-18,None,8.08,8.3,8.49,8.79,8.84,8.84,8.88,8.86,None,8.85
-,1990-04-19,None,8.06,8.28,8.46,8.81,8.86,8.84,8.88,8.87,None,8.86
-,1990-04-20,None,7.95,8.24,8.44,8.82,8.88,8.88,8.95,8.95,None,8.93
-,1990-04-23,None,8.0,8.31,8.5,8.87,8.91,8.92,8.97,8.98,None,8.96
-,1990-04-24,None,8.03,8.36,8.55,8.92,8.98,8.96,9.01,9.0,None,8.98
-,1990-04-25,None,8.06,8.4,8.57,8.95,9.01,9.0,9.03,9.01,None,8.98
-,1990-04-26,None,8.09,8.45,8.64,9.03,9.11,9.09,9.1,9.07,None,9.04
-,1990-04-27,None,8.05,8.38,8.57,8.98,9.07,9.06,9.09,9.06,None,9.04
-,1990-04-30,None,8.07,8.44,8.58,8.96,9.05,9.04,9.06,9.04,None,9.0
-,1990-05-01,None,8.19,8.49,8.56,9.02,9.09,9.08,9.09,9.08,None,9.04
-,1990-05-02,None,8.17,8.49,8.63,9.05,9.11,9.1,9.12,9.09,None,9.05
-,1990-05-03,None,8.15,8.45,8.62,8.98,9.05,9.04,9.05,9.04,None,8.99
-,1990-05-04,None,8.02,8.25,8.43,8.7,8.77,8.8,8.83,8.84,None,8.83
-,1990-05-07,None,8.09,8.26,8.44,8.74,8.82,8.83,8.86,8.87,None,8.85
-,1990-05-08,None,8.06,8.22,8.4,8.68,8.73,8.79,8.83,8.84,None,8.81
-,1990-05-09,None,8.01,8.2,8.4,8.75,8.79,8.87,8.92,8.88,None,8.9
-,1990-05-10,None,7.97,8.15,8.33,8.69,8.73,8.8,8.86,8.82,None,8.81
-,1990-05-11,None,7.88,8.04,8.21,8.55,8.58,8.64,8.68,8.64,None,8.64
-,1990-05-14,None,7.89,8.06,8.2,8.51,8.54,8.6,8.64,8.61,None,8.58
-,1990-05-15,None,7.91,8.09,8.23,8.54,8.58,8.64,8.68,8.65,None,8.62
-,1990-05-16,None,7.93,8.09,8.23,8.54,8.59,8.66,8.71,8.68,None,8.64
-,1990-05-17,None,7.93,8.1,8.24,8.56,8.6,8.69,8.73,8.69,None,8.65
-,1990-05-18,None,8.01,8.16,8.31,8.63,8.69,8.74,8.79,8.75,None,8.7
-,1990-05-21,None,8.02,8.18,8.3,8.61,8.66,8.74,8.77,8.74,None,8.69
-,1990-05-22,None,7.99,8.18,8.22,8.54,8.58,8.66,8.69,8.65,None,8.61
-,1990-05-23,None,7.91,8.11,8.17,8.51,8.55,8.61,8.65,8.61,None,8.59
-,1990-05-24,None,7.95,8.12,8.16,8.5,8.54,8.58,8.66,8.63,None,8.6
-,1990-05-25,None,8.01,8.18,8.23,8.53,8.59,8.61,8.71,8.69,None,8.67
-,1990-05-29,None,8.02,8.17,8.23,8.52,8.57,8.59,8.68,8.66,None,8.64
-,1990-05-30,None,8.03,8.09,8.2,8.48,8.54,8.56,8.65,8.62,None,8.6
-,1990-05-31,None,8.01,8.12,8.22,8.5,8.53,8.56,8.64,8.6,None,8.58
-,1990-06-01,None,7.94,8.01,8.06,8.33,8.36,8.38,8.47,8.44,None,8.43
-,1990-06-04,None,7.96,8.03,8.07,8.31,8.36,8.39,8.47,8.44,None,8.43
-,1990-06-05,None,7.96,8.03,8.09,8.34,8.38,8.42,8.51,8.47,None,8.46
-,1990-06-06,None,7.96,8.02,8.09,8.34,8.4,8.43,8.51,8.46,None,8.44
-,1990-06-07,None,7.96,8.01,8.07,8.34,8.38,8.41,8.49,8.46,None,8.43
-,1990-06-08,None,7.96,8.03,8.07,8.33,8.38,8.42,8.51,8.46,None,8.44
-,1990-06-11,None,7.99,8.07,8.09,8.36,8.41,8.43,8.52,8.48,None,8.45
-,1990-06-12,None,7.99,8.05,8.09,8.36,8.42,8.44,8.52,8.48,None,8.45
-,1990-06-13,None,7.93,7.99,8.02,8.27,8.32,8.35,8.44,8.4,None,8.39
-,1990-06-14,None,7.92,7.98,8.0,8.24,8.29,8.32,8.41,8.38,None,8.36
-,1990-06-15,None,7.95,8.04,8.05,8.33,8.37,8.41,8.49,8.46,None,8.43
-,1990-06-18,None,7.93,8.06,8.11,8.39,8.42,8.45,8.53,8.5,None,8.47
-,1990-06-19,None,8.0,8.07,8.15,8.41,8.45,8.47,8.55,8.51,None,8.48
-,1990-06-20,None,8.03,8.07,8.16,8.43,8.46,8.51,8.59,8.55,None,8.52
-,1990-06-21,None,8.03,8.08,8.14,8.41,8.44,8.48,8.57,8.52,None,8.5
-,1990-06-22,None,8.04,8.05,8.12,8.4,8.43,8.46,8.55,8.51,None,8.49
-,1990-06-25,None,8.05,8.09,8.19,8.45,8.48,8.53,8.62,8.58,None,8.56
-,1990-06-26,None,8.07,8.12,8.19,8.41,8.49,8.51,8.59,8.56,None,8.53
-,1990-06-27,None,8.05,8.1,8.14,8.37,8.43,8.47,8.56,8.52,None,8.49
-,1990-06-28,None,8.0,8.03,8.07,8.31,8.37,8.41,8.51,8.47,None,8.45
-,1990-06-29,None,8.0,8.02,8.05,8.24,8.32,8.35,8.46,8.43,None,8.41
-,1990-07-02,None,8.0,8.03,8.06,8.25,8.32,8.35,8.46,8.43,None,8.41
-,1990-07-03,None,7.96,8.0,8.01,8.2,8.28,8.32,8.44,8.4,None,8.4
-,1990-07-05,None,7.92,7.98,8.02,8.22,8.31,8.34,8.45,8.42,None,8.42
-,1990-07-06,None,8.01,8.08,8.14,8.32,8.41,8.44,8.56,8.51,None,8.51
-,1990-07-09,None,8.06,8.14,8.19,8.39,8.46,8.49,8.6,8.57,None,8.55
-,1990-07-10,None,8.07,8.17,8.21,8.4,8.48,8.5,8.61,8.57,None,8.56
-,1990-07-11,None,8.05,8.15,8.18,8.4,8.46,8.49,8.58,8.57,None,8.56
-,1990-07-12,None,7.94,7.98,7.98,8.2,8.31,8.37,8.49,8.5,None,8.5
-,1990-07-13,None,7.85,7.91,7.89,8.13,8.25,8.32,8.43,8.45,None,8.46
-,1990-07-16,None,7.86,7.91,7.89,8.15,8.26,8.31,8.43,8.44,None,8.46
-,1990-07-17,None,7.87,7.91,7.88,8.13,8.23,8.3,8.42,8.44,None,8.46
-,1990-07-18,None,7.8,7.88,7.87,8.13,8.24,8.34,8.47,8.5,None,8.55
-,1990-07-19,None,7.79,7.85,7.87,8.13,8.23,8.33,8.47,8.51,None,8.56
-,1990-07-20,None,7.79,7.84,7.84,8.08,8.18,8.28,8.43,8.48,None,8.54
-,1990-07-23,None,7.73,7.78,7.81,8.05,8.17,8.28,8.43,8.48,None,8.54
-,1990-07-24,None,7.78,7.82,7.88,8.12,8.25,8.35,8.48,8.53,None,8.59
-,1990-07-25,None,7.81,7.85,7.87,8.08,8.24,8.31,8.44,8.49,None,8.55
-,1990-07-26,None,7.83,7.86,7.9,8.08,8.24,8.31,8.45,8.49,None,8.54
-,1990-07-27,None,7.77,7.79,7.8,8.0,8.15,8.25,8.36,8.42,None,8.48
-,1990-07-30,None,7.74,7.74,7.75,7.93,8.05,8.14,8.28,8.34,None,8.4
-,1990-07-31,None,7.74,7.72,7.72,7.91,8.04,8.13,8.28,8.36,None,8.42
-,1990-08-01,None,7.67,7.65,7.63,7.85,7.96,8.06,8.2,8.29,None,8.36
-,1990-08-02,None,7.68,7.67,7.7,7.9,8.03,8.15,8.3,8.41,None,8.46
-,1990-08-03,None,7.52,7.55,7.56,7.79,7.98,8.11,8.32,8.43,None,8.55
-,1990-08-06,None,7.54,7.59,7.63,7.9,8.11,8.29,8.55,8.71,None,8.82
-,1990-08-07,None,7.61,7.73,7.75,8.04,8.19,8.41,8.65,8.78,None,8.86
-,1990-08-08,None,7.62,7.69,7.73,8.02,8.19,8.43,8.65,8.77,None,8.87
-,1990-08-09,None,7.66,7.69,7.72,7.99,8.13,8.33,8.55,8.66,None,8.75
-,1990-08-10,None,7.64,7.68,7.67,7.95,8.12,8.35,8.58,8.68,None,8.79
-,1990-08-13,None,7.66,7.7,7.65,7.94,8.08,8.36,8.59,8.71,None,8.83
-,1990-08-14,None,7.68,7.72,7.69,7.94,8.08,8.34,8.55,8.66,None,8.78
-,1990-08-15,None,7.7,7.73,7.68,7.94,8.08,8.33,8.54,8.64,None,8.76
-,1990-08-16,None,7.73,7.83,7.81,8.09,8.23,8.45,8.65,8.76,None,8.91
-,1990-08-17,None,7.72,7.82,7.8,8.11,8.27,8.49,8.68,8.8,None,8.94
-,1990-08-20,None,7.77,7.85,7.84,8.13,8.28,8.5,8.7,8.81,None,8.92
-,1990-08-21,None,7.83,7.88,7.9,8.19,8.32,8.56,8.74,8.84,None,8.94
-,1990-08-22,None,7.85,7.91,7.94,8.26,8.38,8.62,8.8,8.91,None,9.03
-,1990-08-23,None,7.79,7.91,7.99,8.26,8.44,8.69,8.88,9.0,None,9.11
-,1990-08-24,None,7.74,7.88,7.96,8.32,8.5,8.75,8.94,9.05,None,9.17
-,1990-08-27,None,7.78,7.89,7.89,8.21,8.34,8.61,8.8,8.9,None,9.02
-,1990-08-28,None,7.73,7.87,7.94,8.23,8.42,8.67,8.85,8.94,None,9.07
-,1990-08-29,None,7.72,7.84,7.85,8.16,8.33,8.52,8.75,8.84,None,8.95
-,1990-08-30,None,7.7,7.8,7.83,8.12,8.31,8.52,8.77,8.86,None,8.98
-,1990-08-31,None,7.63,7.74,7.76,8.07,8.26,8.5,8.77,8.86,None,8.99
-,1990-09-04,None,7.64,7.75,7.76,8.09,8.28,8.53,8.8,8.9,None,9.03
-,1990-09-05,None,7.61,7.71,7.74,8.04,8.23,8.47,8.75,8.86,None,8.98
-,1990-09-06,None,7.62,7.71,7.74,8.06,8.24,8.47,8.75,8.84,None,8.96
-,1990-09-07,None,7.63,7.73,7.73,8.04,8.22,8.45,8.72,8.81,None,8.92
-,1990-09-10,None,7.68,7.76,7.79,8.09,8.26,8.5,8.75,8.85,None,8.98
-,1990-09-11,None,7.67,7.76,7.81,8.1,8.27,8.48,8.73,8.83,None,8.96
-,1990-09-12,None,7.61,7.7,7.75,8.05,8.26,8.45,8.72,8.82,None,8.96
-,1990-09-13,None,7.59,7.65,7.7,8.01,8.19,8.44,8.71,8.82,None,8.96
-,1990-09-14,None,7.59,7.63,7.72,8.03,8.23,8.48,8.75,8.87,None,9.01
-,1990-09-17,None,7.61,7.66,7.73,8.05,8.23,8.49,8.78,8.9,None,9.06
-,1990-09-18,None,7.61,7.66,7.73,8.03,8.22,8.48,8.77,8.9,None,9.05
-,1990-09-19,None,7.64,7.69,7.79,8.08,8.24,8.51,8.78,8.88,None,9.02
-,1990-09-20,None,7.63,7.73,7.81,8.1,8.27,8.53,8.8,8.91,None,9.05
-,1990-09-21,None,7.6,7.71,7.77,8.12,8.31,8.58,8.87,8.99,None,9.13
-,1990-09-24,None,7.63,7.75,7.83,8.21,8.38,8.64,8.92,9.04,None,9.18
-,1990-09-25,None,7.59,7.78,7.85,8.18,8.4,8.64,8.91,9.02,None,9.15
-,1990-09-26,None,7.57,7.74,7.84,8.16,8.38,8.63,8.9,9.0,None,9.14
-,1990-09-27,None,7.47,7.61,7.72,8.05,8.28,8.52,8.81,8.91,None,9.05
-,1990-09-28,None,7.37,7.54,7.69,8.02,8.19,8.47,8.73,8.82,None,8.96
-,1990-10-01,None,7.37,7.53,7.63,7.94,8.12,8.38,8.63,8.71,None,8.84
-,1990-10-02,None,7.41,7.55,7.61,7.92,8.1,8.35,8.6,8.69,None,8.84
-,1990-10-03,None,7.38,7.53,7.57,7.88,8.09,8.33,8.6,8.71,None,8.85
-,1990-10-04,None,7.36,7.51,7.56,7.87,8.04,8.3,8.58,8.67,None,8.81
-,1990-10-05,None,7.27,7.44,7.51,7.81,8.0,8.27,8.54,8.65,None,8.79
-,1990-10-09,None,7.41,7.58,7.64,7.94,8.14,8.43,8.72,8.83,None,8.98
-,1990-10-10,None,7.44,7.6,7.64,7.99,8.19,8.49,8.78,8.89,None,9.03
-,1990-10-11,None,7.35,7.51,7.6,7.99,8.22,8.51,8.79,8.92,None,9.08
-,1990-10-12,None,7.37,7.52,7.59,7.94,8.16,8.44,8.7,8.84,None,8.98
-,1990-10-15,None,7.4,7.56,7.58,7.92,8.13,8.39,8.67,8.8,None,8.95
-,1990-10-16,None,7.39,7.58,7.58,7.92,8.13,8.39,8.66,8.79,None,8.94
-,1990-10-17,None,7.44,7.59,7.6,7.92,8.12,8.37,8.63,8.76,None,8.89
-,1990-10-18,None,7.49,7.57,7.59,7.91,8.08,8.32,8.59,8.71,None,8.85
-,1990-10-19,None,7.48,7.56,7.55,7.85,8.02,8.25,8.49,8.62,None,8.75
-,1990-10-22,None,7.47,7.55,7.53,7.85,8.03,8.25,8.5,8.63,None,8.76
-,1990-10-23,None,7.45,7.53,7.52,7.84,8.0,8.25,8.51,8.65,None,8.79
-,1990-10-24,None,7.46,7.53,7.52,7.84,8.0,8.26,8.52,8.66,None,8.79
-,1990-10-25,None,7.41,7.51,7.46,7.8,7.97,8.21,8.47,8.62,None,8.74
-,1990-10-26,None,7.36,7.45,7.46,7.8,7.97,8.23,8.48,8.63,None,8.76
-,1990-10-29,None,7.38,7.48,7.48,7.82,8.01,8.27,8.54,8.7,None,8.84
-,1990-10-30,None,7.37,7.51,7.48,7.79,8.02,8.28,8.56,8.7,None,8.83
-,1990-10-31,None,7.34,7.46,7.43,7.77,7.97,8.24,8.5,8.65,None,8.78
-,1990-11-01,None,7.28,7.38,7.32,7.68,7.88,8.15,8.42,8.57,None,8.7
-,1990-11-02,None,7.31,7.4,7.35,7.68,7.88,8.16,8.42,8.57,None,8.7
-,1990-11-05,None,7.31,7.39,7.33,7.63,7.84,8.1,8.36,8.5,None,8.63
-,1990-11-06,None,7.31,7.42,7.36,7.65,7.8,8.11,8.37,8.52,None,8.64
-,1990-11-07,None,7.32,7.43,7.36,7.67,7.82,8.16,8.44,8.57,None,8.71
-,1990-11-08,None,7.32,7.42,7.35,7.67,7.82,8.18,8.44,8.58,None,8.73
-,1990-11-09,None,7.27,7.39,7.33,7.61,7.75,8.1,8.36,8.49,None,8.63
-,1990-11-13,None,7.27,7.39,7.3,7.6,7.7,8.01,8.26,8.37,None,8.52
-,1990-11-14,None,7.3,7.38,7.31,7.58,7.7,8.01,8.25,8.36,None,8.51
-,1990-11-15,None,7.32,7.4,7.32,7.6,7.71,8.01,8.26,8.37,None,8.53
-,1990-11-16,None,7.31,7.37,7.27,7.58,7.69,7.96,8.2,8.3,None,8.46
-,1990-11-19,None,7.33,7.43,7.33,7.62,7.73,8.01,8.24,8.35,None,8.51
-,1990-11-20,None,7.32,7.42,7.34,7.62,7.72,7.98,8.21,8.31,None,8.47
-,1990-11-21,None,7.27,7.37,7.26,7.55,7.66,7.92,8.16,8.27,None,8.44
-,1990-11-23,None,7.25,7.32,7.23,7.53,7.63,7.92,8.16,8.28,None,8.44
-,1990-11-26,None,7.26,7.33,7.24,7.55,7.65,7.92,8.17,8.27,None,8.42
-,1990-11-27,None,7.27,7.34,7.28,7.5,7.66,7.94,8.18,8.28,None,8.44
-,1990-11-28,None,7.29,7.38,7.34,7.56,7.71,7.94,8.22,8.3,None,8.46
-,1990-11-29,None,7.26,7.38,7.34,7.58,7.72,7.96,8.23,8.32,None,8.47
-,1990-11-30,None,7.24,7.36,7.31,7.53,7.67,7.91,8.18,8.26,None,8.4
-,1990-12-03,None,7.28,7.37,7.31,7.51,7.65,7.88,8.14,8.22,None,8.36
-,1990-12-04,None,7.24,7.23,7.25,7.46,7.58,7.83,8.11,8.2,None,8.37
-,1990-12-05,None,7.23,7.21,7.24,7.46,7.58,7.82,8.09,8.16,None,8.32
-,1990-12-06,None,7.22,7.23,7.27,7.48,7.6,7.82,8.11,8.18,None,8.35
-,1990-12-07,None,7.1,7.08,7.12,7.33,7.45,7.67,7.96,8.03,None,8.19
-,1990-12-10,None,7.07,7.04,7.1,7.28,7.4,7.63,7.91,7.98,None,8.14
-,1990-12-11,None,7.06,7.06,7.07,7.26,7.38,7.6,7.87,7.94,None,8.1
-,1990-12-12,None,7.0,7.0,7.03,7.22,7.33,7.59,7.84,7.91,None,8.07
-,1990-12-13,None,7.05,7.04,7.11,7.31,7.42,7.68,7.91,7.98,None,8.14
-,1990-12-14,None,7.06,7.08,7.09,7.35,7.47,7.74,7.97,8.05,None,8.2
-,1990-12-17,None,7.02,7.07,7.06,7.31,7.45,7.71,7.96,8.02,None,8.18
-,1990-12-18,None,6.94,7.05,7.02,7.28,7.4,7.67,7.93,7.99,None,8.15
-,1990-12-19,None,6.83,6.91,6.89,7.21,7.37,7.64,7.92,8.0,None,8.19
-,1990-12-20,None,6.75,6.87,6.9,7.25,7.41,7.67,7.96,8.05,None,8.22
-,1990-12-21,None,6.79,6.94,6.95,7.3,7.46,7.75,8.03,8.11,None,8.28
-,1990-12-24,None,6.73,6.95,6.99,7.35,7.53,7.84,8.12,8.2,None,8.36
-,1990-12-26,None,6.68,6.91,6.94,7.27,7.5,7.78,8.07,8.15,None,8.3
-,1990-12-27,None,6.67,6.91,6.94,7.25,7.46,7.75,8.03,8.11,None,8.25
-,1990-12-28,None,6.64,6.85,6.91,7.25,7.48,7.78,8.08,8.14,None,8.31
-,1990-12-31,None,6.63,6.73,6.82,7.15,7.4,7.68,8.0,8.08,None,8.26
-,1991-01-02,None,6.66,6.73,6.74,7.08,7.3,7.59,7.9,7.97,None,8.14
-,1991-01-03,None,6.64,6.71,6.72,7.08,7.27,7.56,7.86,7.93,None,8.11
-,1991-01-04,None,6.73,6.82,6.83,7.17,7.37,7.65,7.94,8.02,None,8.2
-,1991-01-07,None,6.71,6.84,6.84,7.2,7.43,7.75,8.04,8.13,None,8.32
-,1991-01-08,None,6.64,6.74,6.75,7.15,7.39,7.74,8.06,8.16,None,8.37
-,1991-01-09,None,6.44,6.61,6.68,7.1,7.46,7.81,8.12,8.25,None,8.46
-,1991-01-10,None,6.4,6.57,6.64,7.14,7.39,7.76,8.02,8.16,None,8.37
-,1991-01-11,None,6.34,6.55,6.62,7.14,7.4,7.79,8.06,8.2,None,8.39
-,1991-01-14,None,6.24,6.47,6.6,7.18,7.44,7.82,8.09,8.23,None,8.41
-,1991-01-15,None,6.23,6.44,6.6,7.16,7.43,7.79,8.07,8.22,None,8.41
-,1991-01-16,None,6.22,6.46,6.61,7.21,7.47,7.83,8.09,8.24,None,8.4
-,1991-01-17,None,6.3,6.56,6.66,7.19,7.42,7.71,7.93,8.05,None,8.18
-,1991-01-18,None,6.24,6.51,6.61,7.14,7.38,7.68,7.92,8.03,None,8.17
-,1991-01-22,None,6.24,6.48,6.59,7.13,7.37,7.7,7.94,8.07,None,8.23
-,1991-01-23,None,6.32,6.49,6.59,7.08,7.36,7.67,7.91,8.04,None,8.21
-,1991-01-24,None,6.31,6.47,6.54,7.04,7.32,7.61,7.88,8.0,None,8.18
-,1991-01-25,None,6.35,6.52,6.61,7.1,7.36,7.67,7.93,8.06,None,8.24
-,1991-01-28,None,6.44,6.55,6.64,7.12,7.38,7.67,7.93,8.06,None,8.23
-,1991-01-29,None,6.41,6.55,6.59,7.1,7.35,7.64,7.9,8.03,None,8.2
-,1991-01-30,None,6.39,6.53,6.56,7.07,7.34,7.64,7.9,8.05,None,8.23
-,1991-01-31,None,6.37,6.49,6.51,7.05,7.3,7.62,7.89,8.03,None,8.21
-,1991-02-01,None,6.17,6.24,6.27,6.83,7.1,7.45,7.75,7.91,None,8.09
-,1991-02-04,None,6.15,6.23,6.24,6.82,7.07,7.43,7.72,7.88,None,8.05
-,1991-02-05,None,6.15,6.2,6.23,6.8,6.98,7.4,7.68,7.85,None,8.02
-,1991-02-06,None,6.08,6.14,6.22,6.82,6.99,7.4,7.68,7.79,None,8.02
-,1991-02-07,None,6.11,6.15,6.23,6.8,7.0,7.42,7.7,7.82,None,8.01
-,1991-02-08,None,6.09,6.15,6.21,6.8,6.99,7.4,7.66,7.77,None,7.95
-,1991-02-11,None,6.05,6.13,6.18,6.78,6.95,7.39,7.65,7.78,None,7.97
-,1991-02-12,None,6.02,6.13,6.18,6.78,6.97,7.39,7.66,7.78,None,7.96
-,1991-02-13,None,6.03,6.13,6.21,6.78,6.98,7.39,7.66,7.78,None,7.97
-,1991-02-14,None,6.02,6.1,6.19,6.77,6.98,7.38,7.67,7.8,None,7.99
-,1991-02-15,None,6.08,6.16,6.24,6.82,7.02,7.41,7.67,7.78,None,7.97
-,1991-02-19,None,6.13,6.2,6.3,6.87,7.07,7.46,7.7,7.8,None,7.99
-,1991-02-20,None,6.11,6.19,6.28,6.87,7.08,7.49,7.73,7.84,None,8.02
-,1991-02-21,None,6.09,6.17,6.29,6.9,7.13,7.51,7.77,7.88,None,8.04
-,1991-02-22,None,6.12,6.23,6.33,6.98,7.21,7.57,7.82,7.91,None,8.07
-,1991-02-25,None,6.16,6.25,6.33,6.99,7.2,7.57,7.79,7.91,None,8.05
-,1991-02-26,None,6.22,6.3,6.37,7.0,7.24,7.62,7.85,7.96,None,8.14
-,1991-02-27,None,6.21,6.28,6.36,7.02,7.25,7.64,7.87,7.98,None,8.15
-,1991-02-28,None,6.22,6.32,6.41,7.04,7.26,7.66,7.89,8.02,None,8.19
-,1991-03-01,None,6.27,6.38,6.52,7.18,7.41,7.78,8.0,8.12,None,8.28
-,1991-03-04,None,6.24,6.36,6.51,7.16,7.4,7.77,8.01,8.12,None,8.29
-,1991-03-05,None,6.25,6.32,6.48,7.13,7.35,7.73,7.98,8.08,None,8.25
-,1991-03-06,None,6.28,6.35,6.5,7.15,7.38,7.77,8.01,8.11,None,8.29
-,1991-03-07,None,6.27,6.36,6.5,7.12,7.34,7.73,7.97,8.07,None,8.23
-,1991-03-08,None,6.16,6.25,6.41,7.08,7.35,7.77,8.01,8.13,None,8.3
-,1991-03-11,None,6.08,6.21,6.37,7.05,7.3,7.71,7.94,8.06,None,8.23
-,1991-03-12,None,6.05,6.19,6.38,7.07,7.33,7.74,7.98,8.09,None,8.26
-,1991-03-13,None,6.02,6.12,6.3,7.0,7.23,7.67,7.91,8.02,None,8.2
-,1991-03-14,None,5.94,6.04,6.26,6.95,7.19,7.64,7.9,8.02,None,8.2
-,1991-03-15,None,5.98,6.1,6.3,7.01,7.26,7.73,7.98,8.1,None,8.3
-,1991-03-18,None,6.03,6.13,6.36,7.09,7.35,7.79,8.04,8.15,None,8.34
-,1991-03-19,None,6.08,6.23,6.48,7.22,7.48,7.93,8.14,8.25,None,8.42
-,1991-03-20,None,6.07,6.18,6.44,7.2,7.46,7.88,8.09,8.2,None,8.37
-,1991-03-21,None,6.06,6.15,6.39,7.13,7.4,7.82,8.04,8.16,None,8.34
-,1991-03-22,None,6.06,6.16,6.37,7.13,7.39,7.82,8.03,8.13,None,8.33
-,1991-03-25,None,6.07,6.17,6.35,7.14,7.39,7.83,8.03,8.13,None,8.32
-,1991-03-26,None,6.05,6.14,6.39,7.16,7.4,7.84,8.04,8.13,None,8.31
-,1991-03-27,None,5.99,6.08,6.33,7.07,7.36,7.76,7.99,8.08,None,8.26
-,1991-03-28,None,5.92,6.05,6.28,7.02,7.3,7.73,7.96,8.05,None,8.24
-,1991-04-01,None,5.94,6.04,6.27,7.01,7.3,7.74,7.97,8.07,None,8.25
-,1991-04-02,None,5.95,6.05,6.26,6.97,7.24,7.68,7.92,8.03,None,8.22
-,1991-04-03,None,5.95,6.06,6.28,6.99,7.27,7.71,7.94,8.05,None,8.24
-,1991-04-04,None,5.92,6.03,6.24,6.94,7.22,7.67,7.9,8.0,None,8.19
-,1991-04-05,None,5.89,6.01,6.24,6.92,7.2,7.65,7.89,7.99,None,8.18
-,1991-04-08,None,5.83,5.97,6.21,6.91,7.21,7.63,7.88,7.98,None,8.16
-,1991-04-09,None,5.79,5.95,6.23,6.94,7.23,7.68,7.93,8.03,None,8.2
-,1991-04-10,None,5.79,5.97,6.28,7.02,7.31,7.75,7.98,8.1,None,8.27
-,1991-04-11,None,5.74,5.91,6.23,6.95,7.25,7.74,7.97,8.09,None,8.27
-,1991-04-12,None,5.68,5.89,6.14,6.88,7.18,7.64,7.86,7.98,None,8.16
-,1991-04-15,None,5.77,5.96,6.22,6.9,7.17,7.64,7.84,7.95,None,8.12
-,1991-04-16,None,5.79,5.95,6.23,6.92,7.2,7.66,7.85,7.97,None,8.13
-,1991-04-17,None,5.73,5.89,6.2,6.9,7.17,7.64,7.83,7.95,None,8.11
-,1991-04-18,None,5.84,5.98,6.34,6.99,7.24,7.74,7.92,8.02,None,8.18
-,1991-04-19,None,5.93,6.04,6.31,7.03,7.27,7.8,7.99,8.1,None,8.24
-,1991-04-22,None,5.87,6.01,6.32,7.07,7.29,7.83,8.02,8.15,None,8.3
-,1991-04-23,None,5.89,6.03,6.28,7.05,7.28,7.78,7.99,8.12,None,8.28
-,1991-04-24,None,5.84,5.99,6.23,6.95,7.25,7.73,7.93,8.06,None,8.22
-,1991-04-25,None,5.78,5.96,6.19,6.93,7.22,7.7,7.95,8.07,None,8.24
-,1991-04-26,None,5.79,5.99,6.21,6.89,7.23,7.68,7.93,8.06,None,8.22
-,1991-04-29,None,5.77,5.98,6.22,6.9,7.22,7.7,7.93,8.07,None,8.23
-,1991-04-30,None,5.68,5.83,6.06,6.8,7.15,7.63,7.88,8.02,None,8.2
-,1991-05-01,None,5.71,5.84,6.09,6.8,7.14,7.63,7.87,8.01,None,8.18
-,1991-05-02,None,5.63,5.82,6.06,6.76,7.11,7.59,7.84,7.97,None,8.14
-,1991-05-03,None,5.64,5.83,6.1,6.8,7.16,7.67,7.91,8.04,None,8.22
-,1991-05-06,None,5.64,5.85,6.11,6.82,7.16,7.67,7.91,8.05,None,8.23
-,1991-05-07,None,5.67,5.91,6.15,6.82,7.1,7.67,7.92,8.06,None,8.24
-,1991-05-08,None,5.67,5.9,6.14,6.84,7.12,7.68,7.92,8.04,None,8.24
-,1991-05-09,None,5.65,5.89,6.13,6.84,7.12,7.68,7.92,8.02,None,8.21
-,1991-05-10,None,5.65,5.88,6.13,6.87,7.17,7.76,8.0,8.12,None,8.33
-,1991-05-13,None,5.65,5.86,6.11,6.84,7.13,7.72,7.96,8.07,None,8.27
-,1991-05-14,None,5.66,5.88,6.12,6.86,7.13,7.78,8.02,8.14,None,8.36
-,1991-05-15,None,5.62,5.86,6.13,6.84,7.12,7.77,8.02,8.13,None,8.34
-,1991-05-16,None,5.57,5.84,6.15,6.84,7.12,7.77,7.99,8.12,None,8.33
-,1991-05-17,None,5.57,5.83,6.16,6.86,7.14,7.77,7.98,8.08,None,8.28
-,1991-05-20,None,5.63,5.88,6.2,6.86,7.16,7.78,7.98,8.1,None,8.3
-,1991-05-21,None,5.67,5.92,6.18,6.84,7.13,7.74,7.95,8.06,None,8.26
-,1991-05-22,None,5.63,5.91,6.15,6.77,7.1,7.72,7.95,8.06,None,8.28
-,1991-05-23,None,5.57,5.88,6.13,6.74,7.1,7.71,7.96,8.1,None,8.31
-,1991-05-24,None,5.57,5.88,6.11,6.69,7.1,7.68,7.97,8.1,None,8.31
-,1991-05-28,None,5.59,5.87,6.12,6.66,7.07,7.66,7.93,8.07,None,8.28
-,1991-05-29,None,5.62,5.87,6.11,6.61,7.06,7.66,7.92,8.07,None,8.29
-,1991-05-30,None,5.62,5.87,6.13,6.6,7.03,7.63,7.89,8.02,None,8.22
-,1991-05-31,None,5.71,5.94,6.16,6.68,7.1,7.69,7.92,8.06,None,8.26
-,1991-06-03,None,5.79,6.0,6.27,6.79,7.21,7.8,8.01,8.14,None,8.34
-,1991-06-04,None,5.74,5.98,6.26,6.79,7.22,7.8,8.02,8.14,None,8.34
-,1991-06-05,None,5.76,6.0,6.28,6.83,7.26,7.84,8.07,8.19,None,8.39
-,1991-06-06,None,5.74,5.98,6.29,6.86,7.31,7.89,8.12,8.23,None,8.42
-,1991-06-07,None,5.74,6.01,6.39,6.98,7.43,7.96,8.18,8.29,None,8.48
-,1991-06-10,None,5.77,6.04,6.4,7.01,7.42,7.95,8.19,8.29,None,8.48
-,1991-06-11,None,5.74,6.05,6.39,6.99,7.42,7.96,8.19,8.29,None,8.48
-,1991-06-12,None,5.73,6.07,6.43,7.08,7.48,8.02,8.25,8.36,None,8.55
-,1991-06-13,None,5.76,6.08,6.4,7.08,7.47,8.0,8.24,8.34,None,8.53
-,1991-06-14,None,5.77,6.05,6.37,7.02,7.43,7.94,8.17,8.29,None,8.47
-,1991-06-17,None,5.78,6.08,6.38,7.02,7.43,7.96,8.19,8.3,None,8.49
-,1991-06-18,None,5.8,6.06,6.41,7.0,7.45,7.97,8.2,8.32,None,8.52
-,1991-06-19,None,5.74,6.02,6.37,6.95,7.41,7.97,8.21,8.33,None,8.52
-,1991-06-20,None,5.74,6.0,6.34,6.87,7.36,7.91,8.17,8.3,None,8.48
-,1991-06-21,None,5.75,6.02,6.37,6.94,7.41,7.95,8.2,8.32,None,8.51
-,1991-06-24,None,5.75,6.04,6.38,6.96,7.45,7.98,8.21,8.33,None,8.51
-,1991-06-25,None,5.75,6.03,6.39,7.04,7.45,7.99,8.22,8.33,None,8.51
-,1991-06-26,None,5.73,6.02,6.38,7.01,7.46,7.98,8.23,8.33,None,8.51
-,1991-06-27,None,5.73,6.0,6.35,7.0,7.43,7.97,8.21,8.32,None,8.49
-,1991-06-28,None,5.71,5.95,6.32,6.9,7.33,7.9,8.14,8.24,None,8.42
-,1991-07-01,None,5.76,5.99,6.38,6.97,7.39,7.93,8.17,8.26,None,8.44
-,1991-07-02,None,5.75,5.99,6.41,7.0,7.41,7.95,8.18,8.27,None,8.44
-,1991-07-03,None,5.73,5.96,6.39,6.97,7.4,7.92,8.15,8.26,None,8.42
-,1991-07-05,None,5.76,5.97,6.4,7.04,7.48,8.01,8.23,8.34,None,8.49
-,1991-07-08,None,5.75,5.94,6.36,7.0,7.48,8.0,8.25,8.34,None,8.51
-,1991-07-09,None,5.76,5.97,6.31,7.0,7.46,8.02,8.27,8.36,None,8.53
-,1991-07-10,None,5.75,5.96,6.28,6.97,7.47,8.0,8.23,8.35,None,8.53
-,1991-07-11,None,5.74,5.96,6.27,6.92,7.42,7.95,8.17,8.3,None,8.47
-,1991-07-12,None,5.72,5.94,6.26,6.88,7.36,7.9,8.13,8.26,None,8.44
-,1991-07-15,None,5.75,5.96,6.29,6.88,7.37,7.9,8.13,8.26,None,8.44
-,1991-07-16,None,5.76,5.99,6.32,6.9,7.35,7.91,8.14,8.27,None,8.46
-,1991-07-17,None,5.79,6.03,6.35,6.94,7.39,7.94,8.17,8.3,None,8.49
-,1991-07-18,None,5.77,6.01,6.34,6.91,7.42,7.95,8.17,8.31,None,8.5
-,1991-07-19,None,5.76,5.99,6.28,6.89,7.37,7.91,8.15,8.28,None,8.48
-,1991-07-22,None,5.76,6.02,6.31,6.91,7.39,7.92,8.15,8.28,None,8.48
-,1991-07-23,None,5.76,6.01,6.33,6.94,7.41,7.96,8.17,8.31,None,8.5
-,1991-07-24,None,5.75,5.97,6.28,6.88,7.33,7.86,8.1,8.24,None,8.42
-,1991-07-25,None,5.76,5.98,6.29,6.87,7.31,7.81,8.06,8.2,None,8.38
-,1991-07-26,None,5.76,5.96,6.24,6.85,7.3,7.82,8.06,8.2,None,8.39
-,1991-07-29,None,5.75,5.96,6.21,6.82,7.28,7.81,8.06,8.2,None,8.39
-,1991-07-30,None,5.73,5.95,6.23,6.84,7.27,7.81,8.06,8.21,None,8.39
-,1991-07-31,None,5.7,5.93,6.19,6.81,7.21,7.77,8.03,8.2,None,8.36
-,1991-08-01,None,5.72,5.94,6.23,6.84,7.22,7.78,8.05,8.2,None,8.38
-,1991-08-02,None,5.63,5.82,6.04,6.69,7.06,7.62,7.9,8.06,None,8.25
-,1991-08-05,None,5.68,5.84,6.04,6.69,7.05,7.62,7.89,8.04,None,8.24
-,1991-08-06,None,5.58,5.72,5.91,6.57,6.91,7.54,7.82,7.97,None,8.18
-,1991-08-07,None,5.55,5.69,5.85,6.54,6.9,7.51,7.8,7.93,None,8.17
-,1991-08-08,None,5.54,5.66,5.82,6.52,6.9,7.53,7.84,7.98,None,8.22
-,1991-08-09,None,5.48,5.62,5.8,6.49,6.86,7.51,7.82,7.98,None,8.23
-,1991-08-12,None,5.48,5.62,5.8,6.49,6.85,7.49,7.8,7.95,None,8.21
-,1991-08-13,None,5.45,5.64,5.8,6.48,6.84,7.46,7.76,7.91,None,8.17
-,1991-08-14,None,5.45,5.6,5.7,6.37,6.75,7.37,7.66,7.82,None,8.08
-,1991-08-15,None,5.46,5.59,5.67,6.33,6.73,7.37,7.68,7.84,None,8.09
-,1991-08-16,None,5.42,5.54,5.65,6.31,6.69,7.33,7.66,7.84,None,8.09
-,1991-08-19,None,5.27,5.43,5.52,6.24,6.63,7.31,7.65,7.83,None,8.11
-,1991-08-20,None,5.26,5.35,5.48,6.17,6.58,7.24,7.61,7.81,None,8.09
-,1991-08-21,None,5.44,5.52,5.63,6.27,6.65,7.27,7.63,7.8,None,8.07
-,1991-08-22,None,5.47,5.56,5.66,6.27,6.65,7.25,7.61,7.78,None,8.05
-,1991-08-23,None,5.56,5.71,5.82,6.46,6.78,7.39,7.71,7.88,None,8.13
-,1991-08-26,None,5.58,5.72,5.85,6.48,6.81,7.44,7.75,7.91,None,8.15
-,1991-08-27,None,5.55,5.68,5.8,6.41,6.76,7.42,7.74,7.89,None,8.14
-,1991-08-28,None,5.46,5.56,5.68,6.3,6.65,7.32,7.65,7.82,None,8.06
-,1991-08-29,None,5.43,5.53,5.65,6.25,6.59,7.24,7.58,7.74,None,7.99
-,1991-08-30,None,5.49,5.6,5.72,6.36,6.68,7.34,7.67,7.82,None,8.06
-,1991-09-03,None,5.51,5.61,5.72,6.33,6.67,7.32,7.66,7.81,None,8.05
-,1991-09-04,None,5.49,5.61,5.71,6.31,6.67,7.31,7.66,7.81,None,8.06
-,1991-09-05,None,5.48,5.61,5.71,6.31,6.67,7.32,7.67,7.83,None,8.09
-,1991-09-06,None,5.45,5.56,5.65,6.26,6.62,7.24,7.6,7.76,None,8.02
-,1991-09-09,None,5.44,5.53,5.61,6.23,6.58,7.2,7.56,7.73,None,8.0
-,1991-09-10,None,5.4,5.49,5.61,6.21,6.58,7.2,7.55,7.73,None,8.01
-,1991-09-11,None,5.42,5.5,5.61,6.23,6.58,7.21,7.56,7.74,None,8.02
-,1991-09-12,None,5.38,5.47,5.56,6.2,6.53,7.15,7.52,7.67,None,7.96
-,1991-09-13,None,5.31,5.42,5.53,6.18,6.51,7.13,7.48,7.66,None,7.95
-,1991-09-16,None,5.34,5.44,5.55,6.17,6.5,7.11,7.44,7.63,None,7.93
-,1991-09-17,None,5.35,5.46,5.56,6.18,6.5,7.1,7.43,7.62,None,7.92
-,1991-09-18,None,5.34,5.45,5.56,6.18,6.48,7.1,7.43,7.62,None,7.92
-,1991-09-19,None,5.36,5.48,5.59,6.2,6.47,7.1,7.43,7.61,None,7.92
-,1991-09-20,None,5.35,5.47,5.55,6.18,6.44,7.09,7.4,7.57,None,7.89
-,1991-09-23,None,5.37,5.47,5.54,6.17,6.42,7.09,7.38,7.55,None,7.88
-,1991-09-24,None,5.33,5.46,5.54,6.11,6.42,7.09,7.38,7.56,None,7.89
-,1991-09-25,None,5.33,5.45,5.53,6.12,6.42,7.06,7.4,7.58,None,7.91
-,1991-09-26,None,5.28,5.4,5.47,6.05,6.35,7.03,7.38,7.56,None,7.89
-,1991-09-27,None,5.28,5.36,5.43,6.02,6.31,6.95,7.31,7.49,None,7.83
-,1991-09-30,None,5.26,5.34,5.42,5.99,6.28,6.92,7.29,7.47,None,7.82
-,1991-10-01,None,5.25,5.35,5.42,5.99,6.26,6.9,7.27,7.45,None,7.81
-,1991-10-02,None,5.24,5.37,5.43,5.99,6.29,6.9,7.28,7.47,None,7.83
-,1991-10-03,None,5.19,5.33,5.39,5.98,6.25,6.88,7.26,7.47,None,7.84
-,1991-10-04,None,5.17,5.29,5.35,5.91,6.2,6.81,7.18,7.39,None,7.79
-,1991-10-07,None,5.18,5.3,5.35,5.93,6.2,6.81,7.18,7.4,None,7.79
-,1991-10-08,None,5.17,5.29,5.35,5.89,6.19,6.82,7.2,7.43,None,7.82
-,1991-10-09,None,5.16,5.28,5.36,5.93,6.23,6.87,7.24,7.51,None,7.91
-,1991-10-10,None,5.18,5.29,5.4,5.98,6.3,6.93,7.3,7.58,None,7.98
-,1991-10-11,None,5.14,5.23,5.33,5.91,6.22,6.84,7.19,7.49,None,7.9
-,1991-10-15,None,5.13,5.24,5.28,5.85,6.17,6.81,7.16,7.46,None,7.87
-,1991-10-16,None,5.12,5.22,5.27,5.86,6.17,6.79,7.15,7.45,None,7.88
-,1991-10-17,None,5.18,5.28,5.38,5.93,6.25,6.9,7.24,7.55,None,8.0
-,1991-10-18,None,5.18,5.28,5.39,5.95,6.24,6.88,7.22,7.53,None,7.97
-,1991-10-21,None,5.19,5.34,5.43,5.99,6.3,6.95,7.3,7.62,None,8.06
-,1991-10-22,None,5.21,5.35,5.44,6.02,6.33,6.99,7.35,7.67,None,8.1
-,1991-10-23,None,5.19,5.33,5.42,6.01,6.35,7.0,7.37,7.69,None,8.09
-,1991-10-24,None,5.12,5.25,5.32,5.93,6.25,6.91,7.33,7.65,None,8.03
-,1991-10-25,None,5.11,5.25,5.32,5.93,6.28,6.96,7.36,7.68,None,8.05
-,1991-10-28,None,5.09,5.2,5.29,5.88,6.24,6.91,7.32,7.65,None,8.03
-,1991-10-29,None,5.03,5.13,5.19,5.78,6.14,6.8,7.19,7.51,None,7.91
-,1991-10-30,None,4.98,5.07,5.13,5.73,6.12,6.77,7.18,7.48,None,7.9
-,1991-10-31,None,4.96,5.03,5.1,5.7,6.06,6.74,7.15,7.47,None,7.91
-,1991-11-01,None,4.89,4.98,5.03,5.65,6.02,6.71,7.16,7.48,None,7.93
-,1991-11-04,None,4.88,4.99,5.02,5.63,6.03,6.74,7.18,7.5,None,7.95
-,1991-11-05,None,4.9,5.01,5.07,5.7,6.04,6.79,7.21,7.56,None,8.02
-,1991-11-06,None,4.76,4.89,4.98,5.63,5.97,6.72,7.16,7.51,None,8.01
-,1991-11-07,None,4.76,4.88,4.96,5.62,5.95,6.65,7.08,7.43,None,7.92
-,1991-11-08,None,4.75,4.88,4.96,5.63,5.96,6.66,7.08,7.41,None,7.88
-,1991-11-12,None,4.77,4.89,4.98,5.65,5.97,6.65,7.05,7.37,None,7.8
-,1991-11-13,None,4.76,4.89,5.02,5.65,6.0,6.69,7.08,7.41,None,7.88
-,1991-11-14,None,4.76,4.86,4.95,5.6,5.93,6.62,7.02,7.35,None,7.82
-,1991-11-15,None,4.72,4.81,4.89,5.54,5.88,6.58,6.99,7.33,None,7.84
-,1991-11-18,None,4.71,4.82,4.89,5.55,5.88,6.57,6.98,7.33,None,7.84
-,1991-11-19,None,4.66,4.74,4.84,5.5,5.83,6.55,6.99,7.37,None,7.9
-,1991-11-20,None,4.62,4.73,4.83,5.52,5.84,6.56,7.01,7.38,None,7.92
-,1991-11-21,None,4.56,4.68,4.77,5.5,5.82,6.54,6.99,7.39,None,7.96
-,1991-11-22,None,4.55,4.67,4.75,5.49,5.82,6.56,7.02,7.44,None,7.99
-,1991-11-25,None,4.55,4.68,4.78,5.5,5.86,6.61,7.06,7.45,None,7.99
-,1991-11-26,None,4.52,4.63,4.75,5.45,5.81,6.53,7.04,7.42,None,7.95
-,1991-11-27,None,4.51,4.62,4.74,5.43,5.8,6.53,7.03,7.42,None,7.97
-,1991-11-29,None,4.47,4.57,4.69,5.38,5.76,6.48,6.99,7.38,None,7.94
-,1991-12-02,None,4.51,4.56,4.68,5.33,5.71,6.43,6.91,7.32,None,7.92
-,1991-12-03,None,4.48,4.53,4.64,5.29,5.67,6.39,6.86,7.28,None,7.9
-,1991-12-04,None,4.43,4.47,4.59,5.22,5.59,6.27,6.74,7.17,None,7.84
-,1991-12-05,None,4.43,4.48,4.6,5.22,5.6,6.3,6.78,7.21,None,7.86
-,1991-12-06,None,4.36,4.38,4.53,5.19,5.58,6.31,6.81,7.26,None,7.78
-,1991-12-09,None,4.28,4.33,4.44,5.09,5.48,6.23,6.75,7.22,None,7.78
-,1991-12-10,None,4.32,4.36,4.47,5.07,5.48,6.25,6.75,7.21,None,7.79
-,1991-12-11,None,4.26,4.32,4.46,5.04,5.44,6.26,6.76,7.22,None,7.81
-,1991-12-12,None,4.26,4.32,4.42,5.06,5.43,6.23,6.74,7.19,None,7.77
-,1991-12-13,None,4.26,4.33,4.43,5.09,5.46,6.3,6.79,7.22,None,7.79
-,1991-12-16,None,4.25,4.34,4.42,5.06,5.44,6.28,6.78,7.21,None,7.77
-,1991-12-17,None,4.22,4.32,4.38,5.02,5.39,6.24,6.75,7.18,None,7.75
-,1991-12-18,None,4.23,4.35,4.44,5.11,5.46,6.3,6.78,7.19,None,7.76
-,1991-12-19,None,4.15,4.29,4.39,5.05,5.4,6.19,6.73,7.11,None,7.68
-,1991-12-20,None,3.84,3.98,4.11,4.8,5.2,6.02,6.59,6.97,None,7.59
-,1991-12-23,None,3.87,4.01,4.13,4.79,5.17,6.0,6.51,6.88,None,7.53
-,1991-12-24,None,3.91,4.02,4.18,4.84,5.18,6.01,6.53,6.88,None,7.53
-,1991-12-26,None,3.92,4.06,4.19,4.85,5.17,6.0,6.51,6.85,None,7.51
-,1991-12-27,None,3.96,4.02,4.18,4.85,5.15,6.0,6.5,6.82,None,7.52
-,1991-12-30,None,3.97,4.02,4.14,4.8,5.14,5.97,6.44,6.76,None,7.45
-,1991-12-31,None,3.96,4.0,4.12,4.77,5.11,5.93,6.38,6.71,None,7.41
-,1992-01-02,None,3.96,4.01,4.13,4.77,5.13,5.98,6.46,6.78,None,7.46
-,1992-01-03,None,3.95,4.02,4.16,4.8,5.19,6.05,6.54,6.85,None,7.48
-,1992-01-06,None,3.92,3.96,4.12,4.76,5.14,6.02,6.51,6.82,None,7.44
-,1992-01-07,None,3.85,3.93,4.03,4.67,5.06,5.94,6.44,6.76,None,7.39
-,1992-01-08,None,3.82,3.9,4.0,4.66,5.05,5.96,6.42,6.77,None,7.41
-,1992-01-09,None,3.87,3.96,4.05,4.77,5.13,6.02,6.47,6.79,None,7.42
-,1992-01-10,None,3.92,4.0,4.11,4.85,5.22,6.1,6.54,6.85,None,7.47
-,1992-01-13,None,3.92,4.02,4.17,4.93,5.34,6.21,6.62,6.92,None,7.49
-,1992-01-14,None,3.92,4.01,4.16,5.0,5.44,6.34,6.77,7.03,None,7.54
-,1992-01-15,None,3.94,4.05,4.22,5.07,5.48,6.37,6.78,7.05,None,7.57
-,1992-01-16,None,3.89,4.02,4.18,5.07,5.51,6.41,6.84,7.13,None,7.65
-,1992-01-17,None,3.89,4.02,4.14,5.02,5.46,6.36,6.81,7.09,None,7.61
-,1992-01-21,None,3.86,3.97,4.1,4.97,5.36,6.27,6.71,7.03,None,7.57
-,1992-01-22,None,3.85,3.97,4.1,4.95,5.4,6.28,6.74,7.09,None,7.62
-,1992-01-23,None,3.87,3.98,4.15,5.02,5.51,6.32,6.84,7.2,None,7.71
-,1992-01-24,None,3.91,4.06,4.22,5.13,5.62,6.4,6.89,7.25,None,7.71
-,1992-01-27,None,3.93,4.07,4.24,5.15,5.66,6.41,6.88,7.24,None,7.71
-,1992-01-28,None,3.93,4.05,4.2,5.1,5.58,6.32,6.8,7.16,None,7.66
-,1992-01-29,None,3.96,4.07,4.22,5.15,5.67,6.42,6.89,7.25,None,7.75
-,1992-01-30,None,3.93,4.07,4.24,5.17,5.71,6.48,6.93,7.31,None,7.79
-,1992-01-31,None,3.94,4.07,4.23,5.11,5.65,6.44,6.92,7.31,None,7.77
-,1992-02-03,None,3.96,4.06,4.23,5.15,5.72,6.52,6.98,7.36,None,7.82
-,1992-02-04,None,3.94,4.04,4.21,5.12,5.67,6.46,6.91,7.29,None,7.76
-,1992-02-05,None,3.94,4.03,4.21,5.07,5.59,6.4,6.83,7.21,None,7.74
-,1992-02-06,None,3.91,4.02,4.2,5.05,5.56,6.4,6.81,7.2,None,7.75
-,1992-02-07,None,3.84,3.92,4.1,4.97,5.51,6.4,6.8,7.2,None,7.77
-,1992-02-10,None,3.83,3.93,4.08,4.94,5.52,6.38,6.79,7.21,None,7.79
-,1992-02-11,None,3.85,3.97,4.14,5.01,5.51,6.4,6.82,7.23,None,7.79
-,1992-02-12,None,3.85,3.97,4.16,5.08,5.55,6.46,6.88,7.3,None,7.81
-,1992-02-13,None,3.89,4.03,4.26,5.22,5.72,6.61,7.0,7.4,None,7.92
-,1992-02-14,None,3.89,4.04,4.32,5.27,5.76,6.65,7.02,7.41,None,7.91
-,1992-02-18,None,3.93,4.08,4.31,5.24,5.77,6.69,7.07,7.47,None,7.97
-,1992-02-19,None,3.95,4.11,4.33,5.28,5.78,6.67,7.05,7.42,None,7.93
-,1992-02-20,None,3.98,4.14,4.38,5.3,5.78,6.67,7.03,7.41,None,7.91
-,1992-02-21,None,4.03,4.2,4.47,5.46,5.93,6.77,7.1,7.45,None,7.95
-,1992-02-24,None,4.07,4.23,4.48,5.46,5.96,6.81,7.12,7.47,None,7.97
-,1992-02-25,None,4.07,4.22,4.47,5.43,5.92,6.78,7.09,7.44,None,7.94
-,1992-02-26,None,4.05,4.18,4.4,5.37,5.84,6.66,7.01,7.33,None,7.85
-,1992-02-27,None,4.04,4.14,4.36,5.34,5.84,6.67,7.02,7.35,None,7.86
-,1992-02-28,None,4.03,4.14,4.35,5.27,5.75,6.58,6.95,7.27,None,7.8
-,1992-03-02,None,4.14,4.28,4.5,5.45,5.94,6.73,7.07,7.38,None,7.9
-,1992-03-03,None,4.14,4.28,4.51,5.48,5.94,6.76,7.11,7.43,None,7.93
-,1992-03-04,None,4.13,4.27,4.52,5.5,5.98,6.76,7.1,7.43,None,7.9
-,1992-03-05,None,4.14,4.3,4.63,5.62,6.1,6.87,7.21,7.51,None,7.95
-,1992-03-06,None,4.14,4.29,4.6,5.6,6.05,6.85,7.18,7.48,None,7.93
-,1992-03-09,None,4.1,4.27,4.55,5.54,6.01,6.77,7.1,7.42,None,7.88
-,1992-03-10,None,4.11,4.29,4.58,5.56,6.02,6.78,7.11,7.43,None,7.89
-,1992-03-11,None,4.11,4.31,4.6,5.58,6.07,6.86,7.21,7.51,None,7.96
-,1992-03-12,None,4.12,4.33,4.69,5.74,6.22,7.01,7.33,7.62,None,8.04
-,1992-03-13,None,4.16,4.38,4.79,5.86,6.37,7.14,7.44,7.71,None,8.06
-,1992-03-16,None,4.18,4.41,4.78,5.87,6.37,7.12,7.43,7.69,None,8.07
-,1992-03-17,None,4.16,4.39,4.72,5.83,6.32,7.06,7.37,7.62,None,8.02
-,1992-03-18,None,4.15,4.4,4.74,5.84,6.33,7.06,7.36,7.62,None,8.01
-,1992-03-19,None,4.15,4.38,4.69,5.79,6.29,7.03,7.31,7.57,None,7.98
-,1992-03-20,None,4.16,4.4,4.74,5.86,6.36,7.12,7.38,7.64,None,8.05
-,1992-03-23,None,4.17,4.41,4.74,5.87,6.37,7.1,7.37,7.62,None,8.04
-,1992-03-24,None,4.15,4.34,4.66,5.78,6.26,7.0,7.27,7.53,None,7.94
-,1992-03-25,None,4.11,4.31,4.62,5.72,6.22,6.96,7.25,7.53,None,7.94
-,1992-03-26,None,4.11,4.3,4.6,5.69,6.23,6.98,7.29,7.57,None,7.99
-,1992-03-27,None,4.11,4.29,4.6,5.68,6.22,6.97,7.27,7.54,None,7.94
-,1992-03-30,None,4.16,4.33,4.56,5.61,6.19,6.93,7.25,7.54,None,7.95
-,1992-03-31,None,4.15,4.32,4.54,5.6,6.17,6.94,7.25,7.54,None,7.96
-,1992-04-01,None,4.11,4.26,4.48,5.53,6.07,6.82,7.17,7.46,None,7.9
-,1992-04-02,None,4.12,4.27,4.53,5.55,6.1,6.85,7.2,7.47,None,7.92
-,1992-04-03,None,4.06,4.17,4.4,5.37,5.93,6.76,7.13,7.42,None,7.88
-,1992-04-06,None,4.03,4.17,4.39,5.36,5.91,6.74,7.12,7.41,None,7.88
-,1992-04-07,None,3.96,4.12,4.35,5.34,5.89,6.73,7.12,7.41,None,7.9
-,1992-04-08,None,3.96,4.1,4.32,5.33,5.87,6.76,7.14,7.44,None,7.94
-,1992-04-09,None,3.75,3.87,4.08,5.09,5.65,6.59,7.02,7.35,None,7.85
-,1992-04-10,None,3.74,3.88,4.12,5.16,5.72,6.62,7.03,7.37,None,7.89
-,1992-04-13,None,3.7,3.85,4.08,5.11,5.69,6.58,6.98,7.33,None,7.86
-,1992-04-14,None,3.7,3.85,4.1,5.15,5.71,6.6,6.99,7.35,None,7.88
-,1992-04-15,None,3.7,3.84,4.14,5.22,5.77,6.66,7.02,7.37,None,7.87
-,1992-04-16,None,3.73,3.9,4.23,5.34,5.9,6.76,7.11,7.45,None,7.93
-,1992-04-20,None,3.79,4.01,4.34,5.45,6.03,6.9,7.25,7.59,None,8.02
-,1992-04-21,None,3.77,3.98,4.33,5.41,6.01,6.89,7.24,7.58,None,8.03
-,1992-04-22,None,3.77,3.98,4.33,5.41,6.01,6.89,7.23,7.57,None,8.04
-,1992-04-23,None,3.76,3.97,4.35,5.41,6.05,6.91,7.25,7.59,None,8.06
-,1992-04-24,None,3.76,3.94,4.27,5.33,5.99,6.85,7.21,7.55,None,8.06
-,1992-04-27,None,3.82,4.0,4.36,5.42,6.04,6.9,7.25,7.6,None,8.1
-,1992-04-28,None,3.8,3.97,4.34,5.4,6.03,6.87,7.23,7.57,None,8.06
-,1992-04-29,None,3.8,3.96,4.34,5.39,6.01,6.88,7.26,7.6,None,8.08
-,1992-04-30,None,3.79,3.97,4.4,5.46,6.05,6.91,7.26,7.61,None,8.06
-,1992-05-01,None,3.72,3.89,4.28,5.33,5.97,6.82,7.2,7.56,None,8.01
-,1992-05-04,None,3.71,3.91,4.28,5.32,5.95,6.82,7.21,7.58,None,8.03
-,1992-05-05,None,3.72,3.92,4.27,5.3,5.92,6.8,7.18,7.56,None,8.01
-,1992-05-06,None,3.7,3.88,4.22,5.25,5.9,6.76,7.15,7.46,None,7.97
-,1992-05-07,None,3.71,3.9,4.26,5.34,5.96,6.8,7.16,7.49,None,8.0
-,1992-05-08,None,3.72,3.88,4.22,5.29,5.88,6.73,7.09,7.41,None,7.9
-,1992-05-11,None,3.74,3.87,4.18,5.24,5.82,6.71,7.07,7.4,None,7.9
-,1992-05-12,None,3.7,3.84,4.15,5.19,5.78,6.66,7.02,7.36,None,7.86
-,1992-05-13,None,3.67,3.81,4.09,5.14,5.72,6.64,7.0,7.34,None,7.85
-,1992-05-14,None,3.65,3.82,4.09,5.13,5.72,6.63,7.0,7.34,None,7.87
-,1992-05-15,None,3.66,3.8,4.08,5.11,5.7,6.6,6.96,7.28,None,7.81
-,1992-05-18,None,3.69,3.83,4.08,5.12,5.69,6.59,6.96,7.28,None,7.82
-,1992-05-19,None,3.62,3.74,4.0,5.0,5.59,6.47,6.86,7.2,None,7.77
-,1992-05-20,None,3.65,3.79,4.08,5.13,5.66,6.55,6.93,7.25,None,7.79
-,1992-05-21,None,3.76,3.93,4.25,5.34,5.89,6.77,7.1,7.39,None,7.86
-,1992-05-22,None,3.77,3.91,4.19,5.24,5.81,6.69,7.05,7.35,None,7.83
-,1992-05-26,None,3.84,4.02,4.32,5.35,5.91,6.79,7.14,7.46,None,7.92
-,1992-05-27,None,3.79,3.98,4.27,5.28,5.86,6.74,7.11,7.44,None,7.91
-,1992-05-28,None,3.77,3.95,4.24,5.22,5.79,6.67,7.04,7.36,None,7.87
-,1992-05-29,None,3.79,3.96,4.24,5.19,5.75,6.61,7.0,7.33,None,7.84
-,1992-06-01,None,3.82,4.01,4.32,5.29,5.84,6.69,7.06,7.39,None,7.9
-,1992-06-02,None,3.83,4.0,4.3,5.23,5.78,6.61,7.02,7.35,None,7.87
-,1992-06-03,None,3.8,3.99,4.27,5.2,5.76,6.6,7.01,7.34,None,7.88
-,1992-06-04,None,3.78,3.98,4.26,5.22,5.76,6.6,7.01,7.34,None,7.88
-,1992-06-05,None,3.77,3.94,4.21,5.13,5.7,6.55,6.96,7.31,None,7.84
-,1992-06-08,None,3.78,3.95,4.2,5.11,5.69,6.56,6.97,7.31,None,7.84
-,1992-06-09,None,3.77,3.94,4.2,5.11,5.69,6.59,6.99,7.33,None,7.88
-,1992-06-10,None,3.77,3.95,4.2,5.13,5.69,6.59,7.01,7.35,None,7.9
-,1992-06-11,None,3.75,3.92,4.18,5.09,5.67,6.56,6.98,7.33,None,7.88
-,1992-06-12,None,3.75,3.88,4.14,5.06,5.61,6.49,6.94,7.29,None,7.85
-,1992-06-15,None,3.75,3.88,4.13,5.05,5.6,6.49,6.93,7.28,None,7.85
-,1992-06-16,None,3.72,3.86,4.12,5.02,5.56,6.44,6.88,7.24,None,7.84
-,1992-06-17,None,3.7,3.83,4.1,5.0,5.55,6.44,6.86,7.23,None,7.82
-,1992-06-18,None,3.69,3.82,4.08,4.94,5.5,6.39,6.81,7.19,None,7.8
-,1992-06-19,None,3.74,3.89,4.17,5.0,5.54,6.45,6.87,7.24,None,7.83
-,1992-06-22,None,3.75,3.88,4.15,4.99,5.55,6.45,6.86,7.24,None,7.84
-,1992-06-23,None,3.77,3.93,4.22,5.1,5.58,6.5,6.88,7.25,None,7.85
-,1992-06-24,None,3.72,3.85,4.11,4.96,5.47,6.39,6.83,7.2,None,7.83
-,1992-06-25,None,3.71,3.82,4.09,4.89,5.41,6.32,6.75,7.14,None,7.78
-,1992-06-26,None,3.71,3.83,4.11,4.88,5.42,6.33,6.78,7.15,None,7.79
-,1992-06-29,None,3.66,3.77,4.04,4.83,5.38,6.29,6.74,7.12,None,7.78
-,1992-06-30,None,3.65,3.77,4.05,4.83,5.39,6.29,6.76,7.14,None,7.79
-,1992-07-01,None,3.63,3.75,4.04,4.82,5.38,6.27,6.73,7.1,None,7.76
-,1992-07-02,None,3.31,3.45,3.7,4.55,5.15,6.02,6.53,6.93,None,7.63
-,1992-07-06,None,3.29,3.41,3.67,4.46,5.06,5.97,6.49,6.9,None,7.62
-,1992-07-07,None,3.28,3.38,3.63,4.4,4.98,5.91,6.45,6.87,None,7.61
-,1992-07-08,None,3.29,3.39,3.63,4.4,4.98,5.93,6.45,6.91,None,7.61
-,1992-07-09,None,3.28,3.37,3.63,4.4,4.97,5.93,6.45,6.91,None,7.61
-,1992-07-10,None,3.29,3.37,3.62,4.38,4.95,5.92,6.43,6.93,None,7.64
-,1992-07-13,None,3.29,3.4,3.62,4.4,4.97,5.94,6.46,6.97,None,7.67
-,1992-07-14,None,3.28,3.38,3.57,4.32,4.91,5.9,6.45,6.97,None,7.69
-,1992-07-15,None,3.25,3.33,3.48,4.25,4.82,5.8,6.37,6.9,None,7.64
-,1992-07-16,None,3.24,3.32,3.49,4.25,4.8,5.8,6.35,6.87,None,7.62
-,1992-07-17,None,3.23,3.32,3.5,4.27,4.83,5.82,6.38,6.9,None,7.68
-,1992-07-20,None,3.26,3.35,3.51,4.3,4.84,5.82,6.38,6.9,None,7.66
-,1992-07-21,None,3.26,3.36,3.55,4.34,4.87,5.82,6.37,6.89,None,7.67
-,1992-07-22,None,3.24,3.34,3.53,4.29,4.81,5.77,6.32,6.85,None,7.62
-,1992-07-23,None,3.23,3.33,3.52,4.2,4.71,5.62,6.18,6.72,None,7.54
-,1992-07-24,None,3.23,3.34,3.55,4.25,4.77,5.66,6.2,6.73,None,7.57
-,1992-07-27,None,3.26,3.38,3.58,4.27,4.78,5.66,6.16,6.69,None,7.53
-,1992-07-28,None,3.26,3.36,3.55,4.27,4.75,5.63,6.11,6.63,None,7.44
-,1992-07-29,None,3.25,3.36,3.54,4.25,4.76,5.62,6.09,6.6,None,7.43
-,1992-07-30,None,3.25,3.36,3.58,4.33,4.88,5.76,6.24,6.69,None,7.46
-,1992-07-31,None,3.25,3.38,3.62,4.42,4.97,5.84,6.27,6.72,None,7.46
-,1992-08-03,None,3.25,3.38,3.61,4.4,4.97,5.82,6.28,6.72,None,7.46
-,1992-08-04,None,3.24,3.36,3.57,4.31,4.88,5.72,6.2,6.66,None,7.43
-,1992-08-05,None,3.24,3.36,3.55,4.29,4.83,5.69,6.17,6.64,None,7.43
-,1992-08-06,None,3.23,3.35,3.54,4.29,4.82,5.67,6.18,6.65,None,7.45
-,1992-08-07,None,3.21,3.29,3.44,4.18,4.71,5.56,6.08,6.57,None,7.4
-,1992-08-10,None,3.2,3.3,3.42,4.12,4.67,5.5,6.01,6.52,None,7.37
-,1992-08-11,None,3.2,3.3,3.43,4.15,4.66,5.5,5.99,6.5,None,7.33
-,1992-08-12,None,3.19,3.3,3.45,4.19,4.71,5.54,6.02,6.48,None,7.33
-,1992-08-13,None,3.16,3.28,3.43,4.19,4.72,5.57,6.09,6.55,None,7.36
-,1992-08-14,None,3.13,3.26,3.4,4.14,4.67,5.54,6.06,6.53,None,7.33
-,1992-08-17,None,3.16,3.27,3.41,4.13,4.66,5.55,6.09,6.56,None,7.37
-,1992-08-18,None,3.14,3.22,3.36,4.04,4.56,5.44,6.0,6.48,None,7.33
-,1992-08-19,None,3.15,3.24,3.38,4.06,4.55,5.43,5.99,6.47,None,7.33
-,1992-08-20,None,3.15,3.25,3.4,4.04,4.54,5.42,5.98,6.46,None,7.32
-,1992-08-21,None,3.14,3.28,3.46,4.13,4.63,5.54,6.08,6.53,None,7.36
-,1992-08-24,None,3.23,3.36,3.57,4.27,4.8,5.72,6.25,6.68,None,7.44
-,1992-08-25,None,3.24,3.36,3.57,4.32,4.86,5.76,6.29,6.73,None,7.47
-,1992-08-26,None,3.23,3.34,3.5,4.26,4.81,5.7,6.25,6.68,None,7.43
-,1992-08-27,None,3.23,3.34,3.48,4.23,4.76,5.65,6.2,6.64,None,7.42
-,1992-08-28,None,3.23,3.34,3.47,4.16,4.72,5.6,6.18,6.63,None,7.42
-,1992-08-31,None,3.23,3.35,3.47,4.15,4.69,5.6,6.17,6.62,None,7.42
-,1992-09-01,None,3.22,3.32,3.45,4.12,4.64,5.52,6.11,6.56,None,7.38
-,1992-09-02,None,3.21,3.31,3.43,4.1,4.59,5.5,6.07,6.54,None,7.37
-,1992-09-03,None,3.21,3.29,3.43,4.09,4.59,5.5,6.07,6.54,None,7.37
-,1992-09-04,None,2.98,3.05,3.18,3.89,4.38,5.3,5.9,6.4,None,7.29
-,1992-09-08,None,2.96,3.01,3.14,3.83,4.31,5.21,5.8,6.29,None,7.23
-,1992-09-09,None,2.97,3.02,3.17,3.85,4.34,5.25,5.83,6.31,None,7.25
-,1992-09-10,None,2.97,3.02,3.17,3.83,4.34,5.26,5.84,6.31,None,7.24
-,1992-09-11,None,2.98,3.04,3.19,3.87,4.39,5.33,5.91,6.37,None,7.3
-,1992-09-14,None,2.95,2.99,3.13,3.8,4.33,5.28,5.86,6.32,None,7.26
-,1992-09-15,None,2.98,3.02,3.2,3.89,4.43,5.37,5.94,6.4,None,7.33
-,1992-09-16,None,2.96,3.01,3.17,3.87,4.42,5.4,5.95,6.41,None,7.35
-,1992-09-17,None,2.94,3.0,3.14,3.86,4.4,5.41,5.95,6.4,None,7.34
-,1992-09-18,None,2.94,2.99,3.13,3.86,4.4,5.41,5.97,6.41,None,7.32
-,1992-09-21,None,2.97,3.0,3.16,3.91,4.45,5.46,5.99,6.42,None,7.35
-,1992-09-22,None,2.98,3.04,3.2,3.98,4.49,5.52,6.07,6.5,None,7.45
-,1992-09-23,None,2.98,3.06,3.21,3.97,4.52,5.54,6.13,6.54,None,7.48
-,1992-09-24,None,2.95,3.01,3.17,3.91,4.45,5.47,6.06,6.48,None,7.42
-,1992-09-25,None,2.86,2.92,3.04,3.78,4.31,5.33,5.96,6.41,None,7.35
-,1992-09-28,None,2.79,2.93,3.04,3.77,4.29,5.28,5.91,6.37,None,7.34
-,1992-09-29,None,2.79,2.93,3.06,3.8,4.31,5.31,5.92,6.37,None,7.36
-,1992-09-30,None,2.75,2.92,3.06,3.8,4.34,5.33,5.94,6.37,None,7.38
-,1992-10-01,None,2.67,2.83,2.96,3.67,4.18,5.18,5.8,6.23,None,7.3
-,1992-10-02,None,2.69,2.87,2.98,3.71,4.2,5.22,5.84,6.26,None,7.33
-,1992-10-05,None,2.75,2.87,2.98,3.68,4.18,5.18,5.81,6.24,None,7.34
-,1992-10-06,None,2.79,2.92,3.05,3.74,4.24,5.25,5.89,6.3,None,7.41
-,1992-10-07,None,2.89,3.0,3.15,3.88,4.42,5.43,6.03,6.46,None,7.48
-,1992-10-08,None,2.85,2.97,3.08,3.83,4.36,5.37,5.99,6.41,None,7.45
-,1992-10-09,None,2.89,3.03,3.19,4.0,4.5,5.5,6.08,6.52,None,7.52
-,1992-10-13,None,2.95,3.06,3.22,3.99,4.52,5.49,6.07,6.51,None,7.53
-,1992-10-14,None,2.99,3.1,3.26,4.02,4.54,5.51,6.07,6.51,None,7.5
-,1992-10-15,None,2.98,3.11,3.27,4.02,4.56,5.52,6.08,6.53,None,7.51
-,1992-10-16,None,2.97,3.13,3.3,4.04,4.6,5.57,6.12,6.6,None,7.54
-,1992-10-19,None,3.04,3.23,3.41,4.15,4.74,5.71,6.23,6.69,None,7.57
-,1992-10-20,None,3.09,3.34,3.56,4.34,4.97,5.9,6.44,6.86,None,7.65
-,1992-10-21,None,2.99,3.25,3.47,4.29,4.91,5.82,6.35,6.8,None,7.63
-,1992-10-22,None,2.98,3.25,3.45,4.24,4.86,5.79,6.32,6.74,None,7.61
-,1992-10-23,None,3.0,3.3,3.52,4.37,4.98,5.91,6.41,6.83,None,7.65
-,1992-10-26,None,3.02,3.3,3.55,4.39,5.0,5.92,6.42,6.83,None,7.66
-,1992-10-27,None,3.0,3.29,3.48,4.32,4.9,5.82,6.34,6.78,None,7.62
-,1992-10-28,None,3.0,3.27,3.45,4.33,4.89,5.83,6.33,6.76,None,7.64
-,1992-10-29,None,3.02,3.27,3.48,4.33,4.87,5.79,6.27,6.71,None,7.6
-,1992-10-30,None,3.03,3.29,3.54,4.4,4.98,5.9,6.36,6.8,None,7.63
-,1992-11-02,None,3.08,3.35,3.62,4.47,5.07,5.96,6.46,6.88,None,7.66
-,1992-11-03,None,3.1,3.32,3.57,4.44,5.03,5.94,6.45,6.87,None,7.65
-,1992-11-04,None,3.09,3.32,3.56,4.44,5.01,5.94,6.46,6.89,None,7.69
-,1992-11-05,None,3.08,3.3,3.54,4.39,4.96,5.93,6.44,6.87,None,7.69
-,1992-11-06,None,3.13,3.37,3.6,4.48,5.07,6.02,6.54,6.97,None,7.76
-,1992-11-09,None,3.17,3.4,3.66,4.57,5.16,6.09,6.59,7.0,None,7.75
-,1992-11-10,None,3.15,3.38,3.62,4.5,5.1,6.01,6.5,6.91,None,7.68
-,1992-11-12,None,3.13,3.38,3.59,4.44,5.0,5.89,6.38,6.79,None,7.57
-,1992-11-13,None,3.15,3.42,3.68,4.54,5.09,5.99,6.44,6.82,None,7.57
-,1992-11-16,None,3.22,3.47,3.77,4.68,5.21,6.11,6.54,6.9,None,7.56
-,1992-11-17,None,3.24,3.48,3.73,4.67,5.21,6.08,6.51,6.86,None,7.55
-,1992-11-18,None,3.22,3.45,3.68,4.58,5.11,5.97,6.41,6.78,None,7.51
-,1992-11-19,None,3.22,3.46,3.72,4.59,5.12,6.0,6.44,6.81,None,7.54
-,1992-11-20,None,3.28,3.51,3.77,4.66,5.2,6.08,6.48,6.84,None,7.54
-,1992-11-23,None,3.34,3.55,3.77,4.69,5.22,6.1,6.51,6.86,None,7.56
-,1992-11-24,None,3.29,3.51,3.69,4.61,5.16,6.04,6.45,6.82,None,7.53
-,1992-11-25,None,3.31,3.54,3.75,4.7,5.23,6.12,6.5,6.84,None,7.54
-,1992-11-27,None,3.33,3.56,3.81,4.77,5.36,6.22,6.6,6.93,None,7.59
-,1992-11-30,None,3.38,3.58,3.83,4.79,5.36,6.23,6.61,6.95,None,7.59
-,1992-12-01,None,3.4,3.59,3.86,4.81,5.39,6.24,6.61,6.94,None,7.57
-,1992-12-02,None,3.42,3.58,3.84,4.81,5.39,6.23,6.61,6.93,None,7.57
-,1992-12-03,None,3.37,3.56,3.83,4.78,5.36,6.2,6.59,6.91,None,7.57
-,1992-12-04,None,3.32,3.48,3.73,4.7,5.27,6.11,6.51,6.84,None,7.5
-,1992-12-07,None,3.35,3.47,3.69,4.62,5.19,6.05,6.45,6.78,None,7.45
-,1992-12-08,None,3.33,3.44,3.66,4.59,5.13,5.99,6.39,6.73,None,7.44
-,1992-12-09,None,3.3,3.44,3.69,4.61,5.16,6.01,6.41,6.76,None,7.44
-,1992-12-10,None,3.29,3.47,3.72,4.67,5.19,6.04,6.42,6.77,None,7.42
-,1992-12-11,None,3.32,3.51,3.82,4.78,5.29,6.1,6.48,6.8,None,7.44
-,1992-12-14,None,3.33,3.54,3.85,4.8,5.34,6.15,6.52,6.83,None,7.45
-,1992-12-15,None,3.29,3.5,3.78,4.77,5.29,6.12,6.5,6.83,None,7.45
-,1992-12-16,None,3.28,3.46,3.73,4.67,5.21,6.06,6.44,6.77,None,7.44
-,1992-12-17,None,3.27,3.48,3.73,4.69,5.21,6.08,6.45,6.77,None,7.43
-,1992-12-18,None,3.23,3.43,3.69,4.66,5.2,6.07,6.44,6.76,None,7.43
-,1992-12-21,None,3.25,3.43,3.68,4.64,5.18,6.05,6.41,6.71,None,7.38
-,1992-12-22,None,3.27,3.41,3.63,4.64,5.12,6.02,6.36,6.65,None,7.34
-,1992-12-23,None,3.25,3.41,3.63,4.63,5.14,6.01,6.39,6.68,None,7.36
-,1992-12-24,None,3.23,3.41,3.63,4.6,5.13,6.02,6.4,6.69,None,7.36
-,1992-12-28,None,3.3,3.48,3.64,4.64,5.17,6.06,6.43,6.72,None,7.4
-,1992-12-29,None,3.27,3.45,3.64,4.61,5.15,6.04,6.42,6.69,None,7.37
-,1992-12-30,None,3.19,3.39,3.57,4.54,5.07,5.98,6.39,6.68,None,7.39
-,1992-12-31,None,3.15,3.38,3.61,4.56,5.12,6.04,6.43,6.7,None,7.4
-,1993-01-04,None,3.19,3.37,3.56,4.48,5.03,5.9,6.33,6.6,None,7.33
-,1993-01-05,None,3.18,3.36,3.58,4.48,5.0,5.9,6.32,6.61,None,7.33
-,1993-01-06,None,3.17,3.35,3.62,4.52,5.06,5.94,6.36,6.63,None,7.34
-,1993-01-07,None,3.19,3.38,3.7,4.64,5.17,6.05,6.49,6.76,None,7.45
-,1993-01-08,None,3.13,3.3,3.56,4.5,5.06,5.97,6.44,6.75,None,7.47
-,1993-01-11,None,3.12,3.28,3.54,4.48,5.01,5.93,6.4,6.71,None,7.47
-,1993-01-12,None,3.09,3.24,3.54,4.48,5.03,5.95,6.41,6.72,None,7.48
-,1993-01-13,None,3.06,3.24,3.51,4.46,5.02,5.93,6.36,6.71,None,7.45
-,1993-01-14,None,3.04,3.23,3.48,4.4,4.96,5.88,6.3,6.65,None,7.41
-,1993-01-15,None,3.0,3.17,3.42,4.31,4.88,5.8,6.24,6.6,None,7.35
-,1993-01-19,None,3.1,3.23,3.48,4.39,4.91,5.82,6.23,6.59,None,7.31
-,1993-01-20,None,3.08,3.22,3.51,4.41,4.95,5.85,6.26,6.61,None,7.32
-,1993-01-21,None,3.05,3.2,3.48,4.36,4.91,5.83,6.23,6.6,None,7.31
-,1993-01-22,None,3.03,3.15,3.41,4.3,4.85,5.77,6.18,6.57,None,7.3
-,1993-01-25,None,3.02,3.17,3.41,4.26,4.8,5.71,6.11,6.48,None,7.22
-,1993-01-26,None,3.01,3.18,3.45,4.3,4.83,5.75,6.13,6.5,None,7.26
-,1993-01-27,None,2.97,3.15,3.41,4.24,4.8,5.68,6.1,6.48,None,7.25
-,1993-01-28,None,2.96,3.14,3.38,4.2,4.73,5.61,6.05,6.44,None,7.23
-,1993-01-29,None,2.96,3.16,3.39,4.2,4.72,5.57,6.0,6.39,None,7.21
-,1993-02-01,None,3.01,3.17,3.4,4.19,4.69,5.55,5.97,6.38,None,7.21
-,1993-02-02,None,3.02,3.21,3.43,4.25,4.76,5.63,6.04,6.46,None,7.25
-,1993-02-03,None,2.99,3.21,3.44,4.27,4.77,5.62,6.04,6.45,None,7.23
-,1993-02-04,None,2.96,3.18,3.44,4.19,4.68,5.53,5.98,6.39,None,7.19
-,1993-02-05,None,2.96,3.15,3.36,4.07,4.58,5.42,5.88,6.32,None,7.17
-,1993-02-08,None,3.0,3.18,3.43,4.16,4.64,5.49,5.93,6.37,None,7.18
-,1993-02-09,None,2.99,3.19,3.47,4.2,4.72,5.55,5.98,6.41,None,7.2
-,1993-02-10,None,3.0,3.22,3.5,4.27,4.79,5.63,6.06,6.4,None,7.26
-,1993-02-11,None,2.98,3.18,3.44,4.2,4.72,5.58,6.02,6.37,None,7.15
-,1993-02-12,None,2.99,3.18,3.43,4.2,4.7,5.57,6.0,6.35,None,7.13
-,1993-02-16,None,3.0,3.18,3.44,4.14,4.64,5.52,5.98,6.34,None,7.14
-,1993-02-17,None,2.97,3.14,3.39,4.06,4.54,5.43,5.9,6.28,None,7.11
-,1993-02-18,None,2.95,3.09,3.3,3.95,4.43,5.29,5.75,6.17,None,7.02
-,1993-02-19,None,2.99,3.11,3.3,3.99,4.44,5.3,5.76,6.15,None,7.01
-,1993-02-22,None,3.01,3.14,3.32,3.99,4.44,5.28,5.7,6.09,None,6.95
-,1993-02-23,None,3.0,3.11,3.27,3.9,4.33,5.12,5.53,5.92,None,6.83
-,1993-02-24,None,3.02,3.14,3.32,3.97,4.4,5.2,5.64,6.01,None,6.88
-,1993-02-25,None,3.01,3.13,3.33,3.95,4.36,5.23,5.68,6.03,None,6.89
-,1993-02-26,None,3.01,3.14,3.32,3.92,4.37,5.21,5.67,6.03,None,6.9
-,1993-03-01,None,3.03,3.14,3.3,3.88,4.31,5.12,5.58,5.94,None,6.83
-,1993-03-02,None,3.03,3.14,3.31,3.88,4.31,5.13,5.58,5.95,None,6.84
-,1993-03-03,None,3.0,3.11,3.28,3.81,4.24,5.05,5.51,5.88,None,6.78
-,1993-03-04,None,2.97,3.09,3.24,3.75,4.19,5.0,5.46,5.83,None,6.73
-,1993-03-05,None,3.07,3.2,3.37,3.91,4.37,5.14,5.56,5.9,None,6.76
-,1993-03-08,None,3.05,3.19,3.39,3.97,4.37,5.15,5.54,5.85,None,6.72
-,1993-03-09,None,3.05,3.19,3.41,4.02,4.46,5.21,5.6,5.91,None,6.73
-,1993-03-10,None,3.04,3.19,3.4,4.05,4.49,5.24,5.65,5.97,None,6.75
-,1993-03-11,None,3.03,3.16,3.35,4.01,4.47,5.23,5.65,5.96,None,6.75
-,1993-03-12,None,3.04,3.19,3.39,4.11,4.56,5.35,5.8,6.11,None,6.86
-,1993-03-15,None,3.06,3.21,3.42,4.1,4.61,5.39,5.87,6.17,None,6.91
-,1993-03-16,None,3.04,3.19,3.38,4.02,4.5,5.27,5.76,6.06,None,6.87
-,1993-03-17,None,3.04,3.18,3.36,3.98,4.44,5.21,5.72,6.02,None,6.86
-,1993-03-18,None,3.01,3.13,3.3,3.91,4.35,5.11,5.63,5.93,None,6.8
-,1993-03-19,None,3.03,3.16,3.32,3.95,4.38,5.17,5.65,5.95,None,6.81
-,1993-03-22,None,2.99,3.13,3.29,3.92,4.37,5.18,5.65,5.96,None,6.81
-,1993-03-23,None,2.98,3.12,3.28,3.88,4.31,5.14,5.6,5.91,None,6.77
-,1993-03-24,None,2.98,3.11,3.31,3.93,4.38,5.19,5.64,5.95,None,6.81
-,1993-03-25,None,2.97,3.09,3.29,3.92,4.38,5.19,5.67,5.98,None,6.83
-,1993-03-26,None,3.0,3.13,3.33,4.02,4.5,5.32,5.78,6.09,None,6.94
-,1993-03-29,None,3.0,3.12,3.33,3.95,4.44,5.25,5.75,6.06,None,6.9
-,1993-03-30,None,2.97,3.09,3.29,3.91,4.38,5.2,5.71,6.02,None,6.91
-,1993-03-31,None,2.95,3.09,3.32,3.96,4.42,5.24,5.72,6.03,None,6.93
-,1993-04-01,None,2.96,3.09,3.32,3.94,4.41,5.24,5.74,6.06,None,6.97
-,1993-04-02,None,2.97,3.09,3.32,3.99,4.48,5.31,5.83,6.16,None,7.06
-,1993-04-05,None,2.97,3.09,3.3,3.96,4.45,5.27,5.79,6.13,None,7.04
-,1993-04-06,None,2.98,3.09,3.35,3.93,4.39,5.22,5.73,6.08,None,6.97
-,1993-04-07,None,2.98,3.13,3.33,3.93,4.39,5.23,5.72,6.07,None,6.96
-,1993-04-08,None,2.96,3.1,3.25,3.85,4.3,5.13,5.62,5.97,None,6.85
-,1993-04-12,None,2.94,3.09,3.23,3.82,4.27,5.09,5.57,5.92,None,6.79
-,1993-04-13,None,2.91,3.07,3.22,3.82,4.27,5.1,5.55,5.93,None,6.8
-,1993-04-14,None,2.88,3.04,3.19,3.78,4.24,5.07,5.51,5.9,None,6.76
-,1993-04-15,None,2.9,3.05,3.22,3.79,4.24,5.06,5.49,5.88,None,6.73
-,1993-04-16,None,2.9,3.05,3.21,3.8,4.26,5.08,5.51,5.89,None,6.76
-,1993-04-19,None,2.87,3.03,3.21,3.78,4.25,5.07,5.49,5.87,None,6.73
-,1993-04-20,None,2.85,3.0,3.19,3.78,4.24,5.07,5.49,5.87,None,6.76
-,1993-04-21,None,2.86,3.0,3.17,3.77,4.23,5.05,5.48,5.86,None,6.75
-,1993-04-22,None,2.88,3.01,3.17,3.75,4.21,5.04,5.46,5.85,None,6.75
-,1993-04-23,None,2.9,3.03,3.18,3.75,4.21,5.06,5.49,5.89,None,6.79
-,1993-04-26,None,2.95,3.05,3.23,3.79,4.25,5.09,5.53,5.94,None,6.83
-,1993-04-27,None,2.97,3.09,3.27,3.88,4.33,5.19,5.62,6.02,None,6.9
-,1993-04-28,None,2.98,3.08,3.27,3.86,4.35,5.18,5.64,6.03,None,6.91
-,1993-04-29,None,2.96,3.07,3.24,3.79,4.28,5.1,5.58,5.99,None,6.88
-,1993-04-30,None,2.97,3.07,3.26,3.83,4.3,5.14,5.63,6.05,None,6.95
-,1993-05-03,None,2.93,3.06,3.22,3.75,4.23,5.06,5.54,5.96,None,6.86
-,1993-05-04,None,2.93,3.06,3.23,3.75,4.23,5.04,5.49,5.92,None,6.81
-,1993-05-05,None,2.95,3.08,3.26,3.8,4.27,5.07,5.51,5.93,None,6.82
-,1993-05-06,None,2.92,3.05,3.22,3.8,4.24,5.03,5.52,5.89,None,6.8
-,1993-05-07,None,2.93,3.06,3.23,3.79,4.25,5.04,5.57,5.92,None,6.85
-,1993-05-10,None,2.95,3.08,3.22,3.79,4.24,5.02,5.53,5.89,None,6.81
-,1993-05-11,None,2.95,3.09,3.23,3.79,4.25,5.03,5.51,5.89,None,6.82
-,1993-05-12,None,2.96,3.09,3.26,3.82,4.28,5.07,5.57,5.96,None,6.86
-,1993-05-13,None,2.99,3.11,3.3,3.91,4.35,5.15,5.63,6.02,None,6.96
-,1993-05-14,None,3.03,3.15,3.33,3.97,4.38,5.21,5.67,6.03,None,6.95
-,1993-05-17,None,3.08,3.21,3.41,4.05,4.47,5.27,5.72,6.07,None,6.97
-,1993-05-18,None,3.08,3.2,3.4,4.08,4.49,5.3,5.78,6.15,None,7.02
-,1993-05-19,None,3.03,3.17,3.37,4.03,4.45,5.26,5.73,6.11,None,6.98
-,1993-05-20,None,3.03,3.16,3.39,4.03,4.45,5.25,5.71,6.09,None,6.99
-,1993-05-21,None,3.07,3.21,3.45,4.14,4.53,5.34,5.78,6.16,None,7.03
-,1993-05-24,None,3.15,3.31,3.52,4.19,4.59,5.37,5.79,6.16,None,6.99
-,1993-05-25,None,3.14,3.3,3.52,4.19,4.59,5.38,5.81,6.17,None,7.01
-,1993-05-26,None,3.12,3.28,3.51,4.2,4.57,5.35,5.76,6.12,None,6.94
-,1993-05-27,None,3.13,3.32,3.58,4.22,4.6,5.35,5.76,6.11,None,6.93
-,1993-05-28,None,3.13,3.32,3.62,4.24,4.63,5.37,5.8,6.16,None,6.98
-,1993-06-01,None,3.14,3.3,3.55,4.16,4.54,5.28,5.71,6.07,None,6.88
-,1993-06-02,None,3.14,3.3,3.56,4.18,4.57,5.27,5.69,6.06,None,6.88
-,1993-06-03,None,3.1,3.27,3.53,4.14,4.52,5.23,5.64,6.02,None,6.86
-,1993-06-04,None,3.18,3.39,3.67,4.31,4.67,5.36,5.75,6.11,None,6.91
-,1993-06-07,None,3.2,3.4,3.65,4.3,4.66,5.34,5.73,6.08,None,6.88
-,1993-06-08,None,3.2,3.4,3.66,4.33,4.7,5.35,5.74,6.09,None,6.91
-,1993-06-09,None,3.18,3.37,3.62,4.29,4.67,5.33,5.72,6.07,None,6.87
-,1993-06-10,None,3.18,3.36,3.62,4.29,4.67,5.34,5.72,6.07,None,6.88
-,1993-06-11,None,3.12,3.28,3.51,4.15,4.53,5.22,5.61,5.97,None,6.8
-,1993-06-14,None,3.13,3.28,3.5,4.13,4.52,5.2,5.6,5.97,None,6.81
-,1993-06-15,None,3.12,3.25,3.48,4.11,4.49,5.19,5.59,5.96,None,6.83
-,1993-06-16,None,3.11,3.25,3.47,4.09,4.47,5.18,5.59,5.96,None,6.82
-,1993-06-17,None,3.1,3.24,3.46,4.08,4.47,5.17,5.57,5.93,None,6.81
-,1993-06-18,None,3.13,3.28,3.52,4.16,4.53,5.23,5.62,5.97,None,6.82
-,1993-06-21,None,3.17,3.28,3.52,4.16,4.51,5.2,5.57,5.92,None,6.78
-,1993-06-22,None,3.16,3.27,3.51,4.15,4.51,5.21,5.58,5.91,None,6.78
-,1993-06-23,None,3.19,3.32,3.56,4.2,4.54,5.2,5.59,5.91,None,6.77
-,1993-06-24,None,3.17,3.3,3.54,4.15,4.49,5.16,5.55,5.88,None,6.74
-,1993-06-25,None,3.15,3.28,3.5,4.1,4.45,5.13,5.51,5.84,None,6.71
-,1993-06-28,None,3.11,3.23,3.47,4.06,4.41,5.08,5.47,5.8,None,6.67
-,1993-06-29,None,3.1,3.21,3.45,4.03,4.37,5.05,5.45,5.79,None,6.67
-,1993-06-30,None,3.1,3.22,3.45,4.03,4.39,5.05,5.46,5.8,None,6.68
-,1993-07-01,None,3.06,3.19,3.41,3.99,4.37,5.04,5.46,5.8,None,6.69
-,1993-07-02,None,3.02,3.15,3.34,3.93,4.31,4.98,5.42,5.76,None,6.67
-,1993-07-06,None,3.12,3.22,3.42,4.0,4.38,5.04,5.47,5.8,None,6.68
-,1993-07-07,None,3.11,3.2,3.43,4.0,4.38,5.04,5.47,5.8,None,6.68
-,1993-07-08,None,3.09,3.21,3.42,4.0,4.35,5.02,5.45,5.78,None,6.66
-,1993-07-09,None,3.09,3.21,3.41,3.98,4.34,5.0,5.42,5.76,None,6.64
-,1993-07-12,None,3.1,3.22,3.4,3.99,4.33,5.0,5.41,5.75,None,6.62
-,1993-07-13,None,3.11,3.25,3.44,4.04,4.39,5.03,5.43,5.78,None,6.62
-,1993-07-14,None,3.08,3.22,3.4,3.97,4.32,4.98,5.37,5.72,None,6.56
-,1993-07-15,None,3.08,3.23,3.41,3.99,4.34,4.99,5.37,5.72,None,6.55
-,1993-07-16,None,3.08,3.23,3.41,3.99,4.34,4.99,5.36,5.71,None,6.54
-,1993-07-19,None,3.12,3.24,3.42,3.99,4.35,5.0,5.37,5.71,None,6.54
-,1993-07-20,None,3.13,3.28,3.48,4.09,4.42,5.08,5.42,5.75,None,6.55
-,1993-07-21,None,3.14,3.29,3.52,4.15,4.49,5.17,5.53,5.83,None,6.62
-,1993-07-22,None,3.16,3.34,3.61,4.22,4.59,5.24,5.6,5.9,None,6.65
-,1993-07-23,None,3.16,3.34,3.62,4.25,4.62,5.28,5.66,5.95,None,6.71
-,1993-07-26,None,3.17,3.33,3.59,4.22,4.58,5.25,5.62,5.93,None,6.68
-,1993-07-27,None,3.17,3.36,3.61,4.25,4.59,5.26,5.62,5.92,None,6.68
-,1993-07-28,None,3.15,3.34,3.59,4.21,4.57,5.23,5.58,5.9,None,6.66
-,1993-07-29,None,3.09,3.28,3.51,4.12,4.46,5.13,5.47,5.81,None,6.57
-,1993-07-30,None,3.1,3.28,3.53,4.13,4.5,5.16,5.5,5.83,None,6.57
-,1993-08-02,None,3.17,3.35,3.58,4.19,4.55,5.2,5.55,5.85,None,6.56
-,1993-08-03,None,3.15,3.32,3.56,4.17,4.55,5.19,5.51,5.83,None,6.53
-,1993-08-04,None,3.15,3.32,3.57,4.16,4.55,5.2,5.54,5.87,None,6.54
-,1993-08-05,None,3.12,3.3,3.54,4.12,4.5,5.18,5.52,5.86,None,6.53
-,1993-08-06,None,3.11,3.28,3.52,4.09,4.48,5.16,5.52,5.86,None,6.53
-,1993-08-09,None,3.11,3.26,3.48,4.06,4.45,5.12,5.48,5.82,None,6.47
-,1993-08-10,None,3.1,3.27,3.51,4.1,4.48,5.14,5.49,5.82,None,6.45
-,1993-08-11,None,3.09,3.25,3.5,4.1,4.47,5.13,5.46,5.75,None,6.44
-,1993-08-12,None,3.08,3.23,3.47,4.06,4.43,5.13,5.47,5.77,None,6.37
-,1993-08-13,None,3.09,3.22,3.43,4.0,4.38,5.08,5.41,5.72,None,6.35
-,1993-08-16,None,3.1,3.21,3.42,3.98,4.35,5.05,5.36,5.68,None,6.31
-,1993-08-17,None,3.08,3.21,3.43,4.02,4.39,5.07,5.39,5.7,None,6.31
-,1993-08-18,None,3.05,3.19,3.41,3.98,4.36,5.04,5.37,5.69,None,6.26
-,1993-08-19,None,3.05,3.2,3.39,3.93,4.29,4.97,5.32,5.64,None,6.21
-,1993-08-20,None,3.06,3.2,3.39,3.93,4.29,4.96,5.28,5.61,None,6.22
-,1993-08-23,None,3.08,3.21,3.4,3.97,4.3,4.98,5.28,5.6,None,6.22
-,1993-08-24,None,3.05,3.18,3.36,3.89,4.24,4.9,5.21,5.54,None,6.2
-,1993-08-25,None,3.04,3.18,3.35,3.85,4.2,4.86,5.17,5.51,None,6.18
-,1993-08-26,None,3.06,3.19,3.34,3.82,4.16,4.78,5.1,5.42,None,6.09
-,1993-08-27,None,3.09,3.21,3.38,3.87,4.2,4.83,5.13,5.48,None,6.13
-,1993-08-30,None,3.08,3.19,3.35,3.86,4.18,4.78,5.1,5.44,None,6.12
-,1993-08-31,None,3.08,3.21,3.38,3.88,4.2,4.8,5.11,5.45,None,6.09
-,1993-09-01,None,3.08,3.19,3.36,3.88,4.21,4.81,5.12,5.46,None,6.09
-,1993-09-02,None,3.05,3.18,3.34,3.83,4.16,4.76,5.09,5.41,None,6.04
-,1993-09-03,None,3.0,3.12,3.25,3.71,4.04,4.65,5.01,5.31,None,5.95
-,1993-09-07,None,3.01,3.12,3.26,3.7,4.01,4.6,4.96,5.23,None,5.88
-,1993-09-08,None,3.02,3.15,3.32,3.78,4.07,4.63,4.96,5.23,None,5.86
-,1993-09-09,None,3.04,3.18,3.37,3.88,4.18,4.74,5.06,5.35,None,5.96
-,1993-09-10,None,3.02,3.15,3.32,3.8,4.11,4.67,5.01,5.29,None,5.89
-,1993-09-13,None,3.04,3.16,3.33,3.82,4.13,4.66,4.99,5.26,None,5.86
-,1993-09-14,None,3.05,3.18,3.41,3.91,4.23,4.77,5.12,5.37,None,5.97
-,1993-09-15,None,3.02,3.16,3.39,3.89,4.19,4.75,5.14,5.39,None,6.0
-,1993-09-16,None,3.01,3.16,3.39,3.88,4.19,4.74,5.12,5.37,None,6.01
-,1993-09-17,None,3.01,3.17,3.39,3.89,4.19,4.75,5.11,5.38,None,6.04
-,1993-09-20,None,3.0,3.16,3.41,3.92,4.23,4.79,5.13,5.42,None,6.08
-,1993-09-21,None,2.98,3.14,3.38,3.9,4.21,4.8,5.19,5.47,None,6.14
-,1993-09-22,None,2.98,3.15,3.39,3.9,4.22,4.81,5.17,5.45,None,6.1
-,1993-09-23,None,2.99,3.15,3.39,3.87,4.22,4.8,5.15,5.42,None,6.06
-,1993-09-24,None,2.99,3.15,3.39,3.9,4.22,4.81,5.14,5.42,None,6.06
-,1993-09-27,None,2.96,3.1,3.32,3.81,4.12,4.69,5.01,5.3,None,5.97
-,1993-09-28,None,2.96,3.12,3.32,3.79,4.11,4.67,4.98,5.28,None,5.94
-,1993-09-29,None,2.99,3.15,3.36,3.84,4.19,4.74,5.03,5.35,None,6.0
-,1993-09-30,None,2.98,3.13,3.39,3.89,4.24,4.79,5.11,5.4,None,6.04
-,1993-10-01,None,2.98,3.11,3.35,3.84,4.18,4.72,5.03,5.34,6.12,5.98
-,1993-10-04,None,3.02,3.17,3.35,3.85,4.16,4.71,5.04,5.34,6.1,5.99
-,1993-10-05,None,3.06,3.2,3.38,3.86,4.18,4.72,5.05,5.35,6.12,6.01
-,1993-10-06,None,3.04,3.19,3.36,3.85,4.16,4.7,5.05,5.35,6.12,6.01
-,1993-10-07,None,3.05,3.17,3.35,3.83,4.15,4.69,5.05,5.33,6.11,6.01
-,1993-10-08,None,3.05,3.16,3.33,3.78,4.09,4.61,4.96,5.26,6.02,5.92
-,1993-10-12,None,3.12,3.21,3.36,3.82,4.11,4.64,4.97,5.27,6.02,5.92
-,1993-10-13,None,3.1,3.2,3.36,3.84,4.11,4.64,4.98,5.27,6.03,5.92
-,1993-10-14,None,3.08,3.18,3.36,3.82,4.09,4.61,4.93,5.23,5.98,5.86
-,1993-10-15,None,3.08,3.18,3.35,3.81,4.06,4.57,4.9,5.19,5.91,5.78
-,1993-10-18,None,3.13,3.23,3.39,3.84,4.14,4.66,4.99,5.27,5.99,5.85
-,1993-10-19,None,3.13,3.24,3.39,3.86,4.14,4.66,5.0,5.27,5.98,5.85
-,1993-10-20,None,3.11,3.22,3.38,3.86,4.13,4.64,4.98,5.26,5.97,5.83
-,1993-10-21,None,3.12,3.25,3.4,3.89,4.19,4.72,5.07,5.35,6.06,5.92
-,1993-10-22,None,3.11,3.25,3.42,3.91,4.23,4.76,5.15,5.42,6.13,5.98
-,1993-10-25,None,3.14,3.28,3.45,3.95,4.26,4.82,5.21,5.47,6.17,6.02
-,1993-10-26,None,3.16,3.29,3.45,3.93,4.25,4.79,5.17,5.43,6.14,6.0
-,1993-10-27,None,3.15,3.29,3.47,3.99,4.28,4.82,5.19,5.44,6.15,6.0
-,1993-10-28,None,3.11,3.28,3.47,3.97,4.29,4.83,5.17,5.41,6.11,5.97
-,1993-10-29,None,3.1,3.28,3.47,3.99,4.3,4.83,5.19,5.43,6.12,5.96
-,1993-11-01,None,3.18,3.36,3.53,4.11,4.42,4.96,5.32,5.56,6.19,6.02
-,1993-11-02,None,3.19,3.38,3.59,4.16,4.49,5.02,5.41,5.63,6.28,6.07
-,1993-11-03,None,3.16,3.35,3.56,4.13,4.46,5.01,5.39,5.67,6.32,6.11
-,1993-11-04,None,3.15,3.34,3.55,4.13,4.47,5.03,5.42,5.67,6.34,6.19
-,1993-11-05,None,3.13,3.36,3.58,4.2,4.53,5.11,5.5,5.75,6.4,6.22
-,1993-11-08,None,3.17,3.35,3.55,4.13,4.47,5.04,5.44,5.7,6.38,6.22
-,1993-11-09,None,3.18,3.36,3.54,4.12,4.47,5.02,5.41,5.64,6.31,6.16
-,1993-11-10,None,3.19,3.36,3.56,4.17,4.51,5.08,5.45,5.72,6.38,6.21
-,1993-11-12,None,3.18,3.35,3.54,4.11,4.45,5.02,5.39,5.66,6.33,6.15
-,1993-11-15,None,3.18,3.36,3.56,4.11,4.49,5.02,5.4,5.69,6.36,6.17
-,1993-11-16,None,3.16,3.34,3.56,4.1,4.45,4.98,5.35,5.66,6.35,6.17
-,1993-11-17,None,3.16,3.33,3.55,4.09,4.42,4.99,5.35,5.65,6.35,6.19
-,1993-11-18,None,3.18,3.35,3.59,4.15,4.49,5.06,5.43,5.72,6.4,6.23
-,1993-11-19,None,3.2,3.38,3.64,4.22,4.58,5.16,5.54,5.84,6.5,6.34
-,1993-11-22,None,3.21,3.4,3.65,4.26,4.61,5.2,5.6,5.89,6.53,6.36
-,1993-11-23,None,3.19,3.37,3.6,4.19,4.55,5.14,5.52,5.82,6.46,6.3
-,1993-11-24,None,3.19,3.36,3.6,4.18,4.54,5.11,5.54,5.84,6.47,6.31
-,1993-11-26,None,3.18,3.36,3.58,4.16,4.52,5.08,5.49,5.78,6.43,6.26
-,1993-11-29,None,3.2,3.37,3.6,4.17,4.49,5.08,5.46,5.76,6.4,6.23
-,1993-11-30,None,3.21,3.4,3.65,4.22,4.55,5.15,5.53,5.83,6.46,6.29
-,1993-12-01,None,3.19,3.37,3.62,4.2,4.54,5.14,5.52,5.82,6.44,6.28
-,1993-12-02,None,3.18,3.36,3.62,4.22,4.55,5.16,5.52,5.81,6.42,6.27
-,1993-12-03,None,3.18,3.37,3.62,4.24,4.59,5.16,5.52,5.8,6.39,6.25
-,1993-12-06,None,3.18,3.36,3.57,4.19,4.5,5.09,5.43,5.72,6.31,6.17
-,1993-12-07,None,3.16,3.36,3.6,4.17,4.52,5.1,5.43,5.71,6.31,6.17
-,1993-12-08,None,3.15,3.35,3.6,4.18,4.5,5.09,5.41,5.71,6.31,6.17
-,1993-12-09,None,3.13,3.34,3.6,4.18,4.49,5.07,5.38,5.68,6.29,6.15
-,1993-12-10,None,3.12,3.34,3.62,4.21,4.53,5.13,5.45,5.73,6.34,6.19
-,1993-12-13,None,3.12,3.36,3.62,4.23,4.56,5.16,5.5,5.78,6.4,6.24
-,1993-12-14,None,3.11,3.35,3.63,4.25,4.59,5.2,5.54,5.82,6.46,6.29
-,1993-12-15,None,3.1,3.34,3.61,4.22,4.58,5.19,5.55,5.83,6.46,6.29
-,1993-12-16,None,3.1,3.33,3.6,4.23,4.58,5.2,5.56,5.84,6.47,6.31
-,1993-12-17,None,3.09,3.32,3.58,4.2,4.54,5.17,5.52,5.81,6.44,6.29
-,1993-12-20,None,3.15,3.36,3.61,4.22,4.58,5.2,5.54,5.83,6.45,6.3
-,1993-12-21,None,3.14,3.34,3.62,4.26,4.58,5.22,5.56,5.85,6.47,6.32
-,1993-12-22,None,3.13,3.3,3.59,4.19,4.5,5.13,5.46,5.74,6.37,6.22
-,1993-12-23,None,3.13,3.29,3.59,4.18,4.49,5.1,5.42,5.72,6.36,6.22
-,1993-12-27,None,3.13,3.31,3.61,4.2,4.5,5.09,5.42,5.72,6.36,6.23
-,1993-12-28,None,3.13,3.32,3.6,4.2,4.49,5.1,5.42,5.72,6.36,6.24
-,1993-12-29,None,3.08,3.3,3.6,4.2,4.51,5.12,5.44,5.74,6.38,6.25
-,1993-12-30,None,3.04,3.31,3.62,4.25,4.58,5.2,5.53,5.82,6.47,6.34
-,1993-12-31,None,3.07,3.3,3.63,4.25,4.58,5.21,5.53,5.83,6.48,6.35
-,1994-01-03,None,3.16,3.39,3.67,4.3,4.66,5.29,5.66,5.92,6.54,6.41
-,1994-01-04,None,3.15,3.37,3.65,4.29,4.63,5.26,5.62,5.88,6.51,6.37
-,1994-01-05,None,3.14,3.36,3.66,4.31,4.66,5.27,5.64,5.9,6.54,6.4
-,1994-01-06,None,3.12,3.33,3.65,4.24,4.59,5.21,5.57,5.84,6.48,6.36
-,1994-01-07,None,3.07,3.25,3.54,4.09,4.43,5.03,5.39,5.7,6.35,6.24
-,1994-01-10,None,3.06,3.25,3.53,4.08,4.41,5.01,5.36,5.67,6.35,6.24
-,1994-01-11,None,3.04,3.25,3.51,4.08,4.41,5.0,5.34,5.67,6.34,6.25
-,1994-01-12,None,3.02,3.21,3.47,4.05,4.36,4.95,5.29,5.6,6.26,6.17
-,1994-01-13,None,3.01,3.22,3.52,4.13,4.47,5.08,5.41,5.71,6.36,6.26
-,1994-01-14,None,3.03,3.23,3.55,4.17,4.51,5.12,5.46,5.78,6.41,6.3
-,1994-01-18,None,3.04,3.23,3.53,4.14,4.48,5.09,5.43,5.74,6.38,6.28
-,1994-01-19,None,3.03,3.22,3.52,4.12,4.47,5.08,5.43,5.76,6.4,6.3
-,1994-01-20,None,3.01,3.19,3.47,4.07,4.41,5.02,5.38,5.71,6.36,6.27
-,1994-01-21,None,3.01,3.21,3.5,4.09,4.44,5.05,5.39,5.73,6.36,6.29
-,1994-01-24,None,3.01,3.23,3.5,4.09,4.44,5.06,5.4,5.74,6.38,6.3
-,1994-01-25,None,2.99,3.23,3.51,4.11,4.46,5.08,5.43,5.78,6.4,6.34
-,1994-01-26,None,2.98,3.22,3.53,4.13,4.46,5.09,5.41,5.77,6.39,6.33
-,1994-01-27,None,2.98,3.22,3.52,4.11,4.45,5.04,5.37,5.73,6.33,6.27
-,1994-01-28,None,2.99,3.2,3.49,4.08,4.4,4.99,5.3,5.68,6.27,6.21
-,1994-01-31,None,3.05,3.25,3.53,4.12,4.44,5.02,5.34,5.7,6.29,6.23
-,1994-02-01,None,3.1,3.29,3.6,4.2,4.53,5.1,5.43,5.77,6.37,6.31
-,1994-02-02,None,3.13,3.3,3.61,4.2,4.53,5.11,5.43,5.77,6.36,6.29
-,1994-02-03,None,3.2,3.37,3.73,4.28,4.6,5.17,5.48,5.81,6.38,6.31
-,1994-02-04,None,3.3,3.49,3.84,4.42,4.75,5.32,5.62,5.94,6.49,6.37
-,1994-02-07,None,3.31,3.49,3.83,4.41,4.78,5.36,5.65,5.96,6.5,6.38
-,1994-02-08,None,3.32,3.51,3.86,4.44,4.82,5.38,5.7,6.01,6.55,6.44
-,1994-02-09,None,3.32,3.49,3.85,4.43,4.8,5.35,5.67,5.92,6.52,6.43
-,1994-02-10,None,3.33,3.52,3.86,4.45,4.83,5.36,5.68,5.91,6.53,6.45
-,1994-02-11,None,3.33,3.51,3.84,4.44,4.8,5.34,5.66,5.88,6.5,6.41
-,1994-02-14,None,3.34,3.52,3.85,4.44,4.81,5.36,5.67,5.9,6.53,6.45
-,1994-02-15,None,3.34,3.51,3.85,4.44,4.8,5.34,5.66,5.88,6.53,6.45
-,1994-02-16,None,3.34,3.52,3.86,4.44,4.8,5.35,5.67,5.89,6.53,6.46
-,1994-02-17,None,3.35,3.55,3.89,4.5,4.88,5.45,5.77,6.0,6.62,6.54
-,1994-02-18,None,3.36,3.59,3.93,4.57,4.94,5.52,5.87,6.09,6.7,6.63
-,1994-02-22,None,3.4,3.64,3.93,4.57,4.93,5.5,5.84,6.05,6.67,6.6
-,1994-02-23,None,3.46,3.7,4.01,4.67,5.02,5.59,5.92,6.13,6.73,6.65
-,1994-02-24,None,3.44,3.72,4.03,4.72,5.07,5.66,6.01,6.22,6.82,6.75
-,1994-02-25,None,3.44,3.72,4.05,4.72,5.08,5.65,6.0,6.21,6.8,6.73
-,1994-02-28,None,3.47,3.72,4.03,4.67,5.04,5.6,5.94,6.15,6.75,6.67
-,1994-03-01,None,3.58,3.82,4.16,4.81,5.19,5.74,6.08,6.28,6.86,6.79
-,1994-03-02,None,3.55,3.8,4.15,4.79,5.2,5.74,6.09,6.3,6.87,6.79
-,1994-03-03,None,3.56,3.83,4.21,4.83,5.21,5.79,6.14,6.35,6.92,6.84
-,1994-03-04,None,3.62,3.87,4.26,4.88,5.29,5.82,6.16,6.38,6.92,6.85
-,1994-03-07,None,3.61,3.88,4.23,4.87,5.25,5.77,6.12,6.32,6.87,6.8
-,1994-03-08,None,3.63,3.9,4.28,4.92,5.31,5.84,6.17,6.38,6.92,6.85
-,1994-03-09,None,3.61,3.9,4.29,4.96,5.33,5.84,6.17,6.38,6.93,6.85
-,1994-03-10,None,3.57,3.9,4.3,4.96,5.36,5.9,6.28,6.48,7.02,6.94
-,1994-03-11,None,3.58,3.91,4.28,4.95,5.34,5.89,6.25,6.46,6.99,6.91
-,1994-03-14,None,3.66,3.97,4.32,4.99,5.39,5.94,6.3,6.5,7.01,6.93
-,1994-03-15,None,3.66,3.95,4.32,4.99,5.38,5.91,6.25,6.47,6.99,6.9
-,1994-03-16,None,3.61,3.92,4.28,4.96,5.34,5.86,6.18,6.4,6.9,6.82
-,1994-03-17,None,3.55,3.92,4.28,4.94,5.34,5.88,6.19,6.4,6.91,6.82
-,1994-03-18,None,3.57,3.97,4.35,5.03,5.42,5.97,6.3,6.49,6.99,6.9
-,1994-03-21,None,3.7,4.02,4.41,5.09,5.49,6.03,6.36,6.55,7.03,6.94
-,1994-03-22,None,3.6,3.94,4.33,5.03,5.38,5.92,6.24,6.44,6.94,6.85
-,1994-03-23,None,3.54,3.9,4.32,5.0,5.38,5.92,6.22,6.44,6.95,6.85
-,1994-03-24,None,3.53,3.92,4.37,5.08,5.5,6.05,6.39,6.58,7.09,6.98
-,1994-03-25,None,3.57,3.92,4.38,5.1,5.52,6.08,6.42,6.61,7.1,6.99
-,1994-03-28,None,3.57,3.97,4.41,5.12,5.55,6.1,6.43,6.63,7.09,6.98
-,1994-03-29,None,3.59,3.98,4.46,5.19,5.62,6.19,6.52,6.71,7.17,7.06
-,1994-03-30,None,3.57,3.93,4.45,5.19,5.65,6.24,6.59,6.78,7.23,7.1
-,1994-03-31,None,3.56,3.92,4.5,5.21,5.66,6.23,6.59,6.77,7.23,7.11
-,1994-04-04,None,3.82,4.19,4.83,5.57,6.06,6.64,7.01,7.16,7.55,7.43
-,1994-04-05,None,3.75,4.14,4.72,5.45,5.93,6.47,6.79,6.97,7.41,7.28
-,1994-04-06,None,3.67,4.09,4.67,5.4,5.88,6.42,6.76,6.93,7.38,7.25
-,1994-04-07,None,3.61,4.07,4.64,5.37,5.84,6.38,6.72,6.86,7.33,7.21
-,1994-04-08,None,3.65,4.1,4.68,5.43,5.91,6.46,6.79,6.94,7.4,7.26
-,1994-04-11,None,3.68,4.14,4.69,5.43,5.9,6.46,6.78,6.92,7.37,7.24
-,1994-04-12,None,3.64,4.11,4.66,5.4,5.84,6.4,6.72,6.87,7.32,7.2
-,1994-04-13,None,3.64,4.13,4.69,5.43,5.91,6.47,6.79,6.93,7.39,7.26
-,1994-04-14,None,3.66,4.14,4.72,5.49,5.94,6.51,6.82,6.97,7.43,7.29
-,1994-04-15,None,3.68,4.15,4.73,5.51,5.95,6.5,6.79,6.97,7.42,7.29
-,1994-04-18,None,3.84,4.34,4.91,5.7,6.15,6.7,6.99,7.14,7.55,7.41
-,1994-04-19,None,3.83,4.36,4.92,5.7,6.14,6.68,6.92,7.1,7.5,7.37
-,1994-04-20,None,3.83,4.34,4.91,5.67,6.1,6.62,6.88,7.05,7.46,7.33
-,1994-04-21,None,3.83,4.33,4.87,5.59,6.0,6.49,6.71,6.91,7.33,7.22
-,1994-04-22,None,3.84,4.36,4.9,5.62,6.04,6.53,6.73,6.93,7.34,7.21
-,1994-04-25,None,3.94,4.4,4.91,5.61,6.01,6.48,6.68,6.86,7.26,7.14
-,1994-04-26,None,3.97,4.41,4.93,5.59,5.99,6.46,6.66,6.86,7.24,7.12
-,1994-04-28,None,3.98,4.45,5.05,5.75,6.14,6.65,6.86,7.04,7.41,7.29
-,1994-04-29,None,3.97,4.45,5.07,5.73,6.16,6.64,6.88,7.06,7.44,7.31
-,1994-05-02,None,4.1,4.57,5.12,5.81,6.2,6.69,6.93,7.09,7.45,7.33
-,1994-05-03,None,4.12,4.62,5.19,5.86,6.26,6.73,6.96,7.13,7.48,7.35
-,1994-05-04,None,4.15,4.63,5.22,5.89,6.28,6.74,6.97,7.14,7.49,7.35
-,1994-05-05,None,4.13,4.62,5.21,5.88,6.25,6.7,6.94,7.11,7.46,7.33
-,1994-05-06,None,4.3,4.82,5.4,6.12,6.5,6.95,7.19,7.35,7.67,7.53
-,1994-05-09,None,4.44,5.02,5.55,6.26,6.64,7.09,7.33,7.49,7.76,7.63
-,1994-05-10,None,4.35,4.95,5.48,6.13,6.52,6.93,7.14,7.33,7.62,7.5
-,1994-05-11,None,4.32,4.96,5.52,6.2,6.59,7.02,7.26,7.4,7.73,7.6
-,1994-05-12,None,4.24,4.9,5.48,6.13,6.53,6.97,7.22,7.36,7.69,7.57
-,1994-05-13,None,4.24,4.86,5.41,6.05,6.43,6.89,7.14,7.29,7.63,7.5
-,1994-05-16,None,4.31,4.87,5.41,6.03,6.4,6.85,7.08,7.24,7.58,7.46
-,1994-05-17,None,4.3,4.77,5.29,5.88,6.23,6.66,6.85,7.03,7.39,7.27
-,1994-05-18,None,4.29,4.73,5.21,5.83,6.18,6.61,6.85,7.03,7.41,7.27
-,1994-05-19,None,4.24,4.65,5.12,5.73,6.07,6.52,6.76,6.96,7.37,7.24
-,1994-05-20,None,4.26,4.71,5.14,5.8,6.14,6.59,6.82,7.02,7.44,7.3
-,1994-05-23,None,4.35,4.82,5.28,5.94,6.3,6.76,6.99,7.19,7.58,7.44
-,1994-05-24,None,4.32,4.79,5.28,5.94,6.28,6.75,6.96,7.17,7.54,7.41
-,1994-05-25,None,4.28,4.76,5.28,5.95,6.31,6.74,6.93,7.14,7.51,7.37
-,1994-05-26,None,4.27,4.76,5.28,5.92,6.27,6.69,6.9,7.09,7.51,7.37
-,1994-05-27,None,4.3,4.82,5.35,5.97,6.32,6.73,6.92,7.12,7.55,7.4
-,1994-05-31,None,4.31,4.87,5.38,6.01,6.36,6.77,6.99,7.17,7.58,7.44
-,1994-06-01,None,4.28,4.83,5.36,5.98,6.33,6.74,6.95,7.12,7.52,7.39
-,1994-06-02,None,4.24,4.76,5.29,5.93,6.28,6.68,6.89,7.07,7.49,7.35
-,1994-06-03,None,4.23,4.72,5.22,5.84,6.19,6.59,6.78,6.98,7.39,7.26
-,1994-06-06,None,4.25,4.69,5.15,5.78,6.1,6.49,6.7,6.91,7.34,7.21
-,1994-06-07,None,4.22,4.68,5.16,5.8,6.14,6.53,6.75,6.95,7.37,7.26
-,1994-06-08,None,4.21,4.66,5.13,5.78,6.11,6.53,6.75,6.96,7.39,7.28
-,1994-06-09,None,4.23,4.67,5.15,5.8,6.13,6.54,6.76,6.98,7.39,7.28
-,1994-06-10,None,4.22,4.7,5.2,5.85,6.17,6.6,6.82,7.03,7.44,7.32
-,1994-06-13,None,4.24,4.7,5.22,5.91,6.25,6.66,6.87,7.07,7.47,7.36
-,1994-06-14,None,4.21,4.64,5.14,5.81,6.15,6.58,6.79,7.0,7.41,7.31
-,1994-06-15,None,4.23,4.66,5.19,5.88,6.23,6.67,6.88,7.1,7.53,7.41
-,1994-06-16,None,4.22,4.64,5.15,5.83,6.19,6.65,6.86,7.07,7.49,7.38
-,1994-06-17,None,4.23,4.66,5.2,5.88,6.24,6.71,6.93,7.14,7.58,7.45
-,1994-06-20,None,4.28,4.73,5.24,5.92,6.28,6.74,6.96,7.16,7.58,7.46
-,1994-06-21,None,4.3,4.77,5.31,6.04,6.37,6.82,7.02,7.22,7.63,7.51
-,1994-06-22,None,4.28,4.75,5.28,5.97,6.31,6.75,6.94,7.13,7.52,7.41
-,1994-06-23,None,4.26,4.74,5.29,5.94,6.26,6.7,6.9,7.1,7.51,7.4
-,1994-06-24,None,4.28,4.78,5.37,6.06,6.38,6.81,7.05,7.22,7.63,7.52
-,1994-06-27,None,4.28,4.73,5.37,6.05,6.36,6.79,7.0,7.18,7.57,7.46
-,1994-06-28,None,4.28,4.75,5.48,6.13,6.46,6.88,7.09,7.26,7.65,7.53
-,1994-06-29,None,4.25,4.74,5.47,6.12,6.45,6.87,7.08,7.24,7.63,7.51
-,1994-06-30,None,4.26,4.83,5.51,6.19,6.52,6.97,7.18,7.34,7.75,7.63
-,1994-07-01,None,4.32,4.84,5.5,6.19,6.53,6.95,7.19,7.34,7.74,7.62
-,1994-07-05,None,4.42,4.92,5.48,6.14,6.48,6.93,7.17,7.31,7.71,7.6
-,1994-07-06,None,4.39,4.92,5.46,6.11,6.47,6.92,7.16,7.32,7.72,7.61
-,1994-07-07,None,4.36,4.9,5.45,6.11,6.44,6.89,7.13,7.3,7.71,7.6
-,1994-07-08,None,4.49,5.04,5.58,6.25,6.59,7.04,7.27,7.42,7.81,7.7
-,1994-07-11,None,4.61,5.13,5.61,6.29,6.65,7.09,7.33,7.47,7.84,7.73
-,1994-07-12,None,4.56,5.08,5.55,6.24,6.6,7.03,7.26,7.43,7.8,7.69
-,1994-07-13,None,4.52,5.02,5.52,6.22,6.58,7.02,7.23,7.41,7.79,7.68
-,1994-07-14,None,4.41,4.88,5.38,6.05,6.42,6.85,7.06,7.25,7.63,7.54
-,1994-07-15,None,4.38,4.87,5.37,6.04,6.41,6.84,7.06,7.25,7.64,7.55
-,1994-07-18,None,4.4,4.87,5.34,5.99,6.35,6.79,7.01,7.2,7.6,7.51
-,1994-07-19,None,4.37,4.82,5.3,5.94,6.28,6.73,6.95,7.15,7.56,7.47
-,1994-07-20,None,4.41,4.9,5.4,6.06,6.39,6.84,7.06,7.25,7.64,7.55
-,1994-07-21,None,4.44,4.92,5.5,6.11,6.45,6.89,7.09,7.27,7.64,7.55
-,1994-07-22,None,4.5,4.96,5.53,6.15,6.49,6.92,7.1,7.29,7.65,7.56
-,1994-07-25,None,4.53,5.01,5.53,6.13,6.49,6.9,7.1,7.27,7.61,7.53
-,1994-07-26,None,4.52,5.01,5.53,6.16,6.49,6.9,7.09,7.28,7.63,7.55
-,1994-07-27,None,4.57,5.07,5.57,6.22,6.55,6.99,7.18,7.34,7.69,7.6
-,1994-07-28,None,4.54,5.04,5.56,6.21,6.53,6.94,7.13,7.29,7.62,7.55
-,1994-07-29,None,4.39,4.87,5.37,5.99,6.33,6.73,6.92,7.12,7.46,7.39
-,1994-08-01,None,4.45,4.93,5.4,6.03,6.35,6.75,6.94,7.13,7.47,7.41
-,1994-08-02,None,4.44,4.92,5.35,5.98,6.32,6.73,6.91,7.11,7.46,7.4
-,1994-08-03,None,4.44,4.9,5.34,5.96,6.29,6.7,6.91,7.09,7.44,7.38
-,1994-08-04,None,4.43,4.9,5.36,5.98,6.31,6.72,6.93,7.12,7.47,7.4
-,1994-08-05,None,4.59,5.1,5.59,6.18,6.55,6.93,7.11,7.28,7.62,7.54
-,1994-08-08,None,4.59,5.13,5.6,6.22,6.56,6.93,7.11,7.28,7.61,7.53
-,1994-08-09,None,4.56,5.14,5.62,6.26,6.61,6.97,7.14,7.33,7.65,7.57
-,1994-08-10,None,4.49,5.1,5.58,6.21,6.57,6.95,7.14,7.3,7.66,7.58
-,1994-08-11,None,4.46,5.12,5.62,6.26,6.61,7.0,7.18,7.36,7.72,7.56
-,1994-08-12,None,4.51,5.1,5.6,6.22,6.57,6.94,7.12,7.27,7.66,7.48
-,1994-08-15,None,4.72,5.19,5.64,6.26,6.58,6.96,7.14,7.3,7.68,7.51
-,1994-08-16,None,4.74,5.17,5.62,6.21,6.52,6.86,7.02,7.19,7.56,7.39
-,1994-08-17,None,4.69,5.11,5.56,6.14,6.45,6.81,6.99,7.15,7.55,7.39
-,1994-08-18,None,4.71,5.15,5.68,6.23,6.56,6.93,7.12,7.28,7.67,7.5
-,1994-08-19,None,4.69,5.13,5.64,6.23,6.55,6.92,7.1,7.27,7.67,7.5
-,1994-08-22,None,4.73,5.17,5.66,6.27,6.59,6.97,7.14,7.31,7.73,7.56
-,1994-08-23,None,4.69,5.13,5.63,6.26,6.55,6.94,7.12,7.28,7.71,7.54
-,1994-08-24,None,4.66,5.09,5.57,6.18,6.47,6.87,7.04,7.22,7.63,7.47
-,1994-08-25,None,4.68,5.09,5.59,6.24,6.53,6.93,7.12,7.29,7.71,7.55
-,1994-08-26,None,4.68,5.07,5.58,6.21,6.48,6.87,7.07,7.24,7.65,7.49
-,1994-08-29,None,4.73,5.12,5.58,6.2,6.48,6.87,7.05,7.24,7.66,7.5
-,1994-08-30,None,4.71,5.09,5.56,6.18,6.46,6.83,7.03,7.2,7.62,7.47
-,1994-08-31,None,4.68,5.03,5.56,6.17,6.44,6.81,7.0,7.19,7.6,7.46
-,1994-09-01,None,4.67,4.99,5.56,6.15,6.44,6.81,7.01,7.19,7.6,7.46
-,1994-09-02,None,4.67,5.04,5.55,6.17,6.45,6.82,7.01,7.21,7.64,7.5
-,1994-09-06,None,4.69,5.06,5.58,6.22,6.5,6.88,7.08,7.27,7.71,7.55
-,1994-09-07,None,4.66,5.05,5.6,6.22,6.51,6.92,7.11,7.29,7.73,7.58
-,1994-09-08,None,4.67,5.06,5.59,6.22,6.51,6.92,7.1,7.3,7.73,7.58
-,1994-09-09,None,4.7,5.14,5.7,6.35,6.66,7.06,7.26,7.44,7.88,7.71
-,1994-09-12,None,4.75,5.19,5.72,6.37,6.67,7.08,7.27,7.46,7.89,7.72
-,1994-09-13,None,4.72,5.17,5.7,6.35,6.65,7.05,7.26,7.44,7.87,7.7
-,1994-09-14,None,4.7,5.15,5.68,6.33,6.63,7.02,7.23,7.41,7.83,7.68
-,1994-09-15,None,4.7,5.14,5.69,6.28,6.58,6.97,7.19,7.35,7.8,7.64
-,1994-09-16,None,4.73,5.23,5.79,6.42,6.72,7.13,7.34,7.52,7.95,7.78
-,1994-09-19,None,4.72,5.23,5.78,6.39,6.71,7.11,7.32,7.49,7.9,7.75
-,1994-09-20,None,4.74,5.29,5.82,6.44,6.75,7.15,7.37,7.53,7.93,7.78
-,1994-09-21,None,4.92,5.4,5.9,6.52,6.81,7.2,7.4,7.56,7.95,7.8
-,1994-09-22,None,4.92,5.4,5.88,6.5,6.8,7.2,7.39,7.56,7.94,7.79
-,1994-09-23,None,4.91,5.42,5.89,6.52,6.83,7.2,7.4,7.57,7.95,7.8
-,1994-09-26,None,4.92,5.44,5.91,6.54,6.83,7.21,7.41,7.57,7.95,7.8
-,1994-09-27,None,4.83,5.4,5.89,6.52,6.83,7.24,7.44,7.61,8.01,7.85
-,1994-09-28,None,4.66,5.37,5.88,6.51,6.83,7.21,7.42,7.57,7.97,7.81
-,1994-09-29,None,4.7,5.44,5.95,6.6,6.92,7.29,7.48,7.64,8.02,7.86
-,1994-09-30,None,4.8,5.43,5.96,6.62,6.92,7.28,7.46,7.62,7.98,7.82
-,1994-10-03,None,5.05,5.61,6.06,6.69,7.01,7.35,7.52,7.66,8.02,7.86
-,1994-10-04,None,5.09,5.6,6.06,6.68,7.01,7.37,7.55,7.7,8.06,7.89
-,1994-10-05,None,5.09,5.61,6.1,6.73,7.05,7.42,7.61,7.77,8.12,7.95
-,1994-10-06,None,5.11,5.62,6.1,6.71,7.06,7.43,7.62,7.78,8.12,7.95
-,1994-10-07,None,5.02,5.55,6.01,6.65,6.97,7.34,7.54,7.7,8.07,7.91
-,1994-10-11,None,5.06,5.56,6.01,6.63,6.95,7.3,7.48,7.65,8.02,7.86
-,1994-10-12,None,5.12,5.57,6.05,6.67,6.99,7.34,7.52,7.69,8.04,7.89
-,1994-10-13,None,5.05,5.5,6.07,6.63,6.96,7.3,7.48,7.64,7.99,7.84
-,1994-10-14,None,5.0,5.48,6.01,6.57,6.91,7.26,7.45,7.61,7.98,7.83
-,1994-10-17,None,5.04,5.55,6.04,6.61,6.92,7.28,7.47,7.62,7.97,7.83
-,1994-10-18,None,5.04,5.55,6.04,6.61,6.92,7.29,7.47,7.64,8.01,7.86
-,1994-10-19,None,5.05,5.58,6.07,6.66,6.99,7.34,7.52,7.68,8.04,7.9
-,1994-10-20,None,5.14,5.67,6.18,6.77,7.1,7.46,7.63,7.8,8.14,8.0
-,1994-10-21,None,5.15,5.68,6.19,6.8,7.11,7.46,7.63,7.81,8.12,7.99
-,1994-10-24,None,5.22,5.74,6.24,6.84,7.17,7.52,7.68,7.86,8.17,8.04
-,1994-10-25,None,5.2,5.75,6.25,6.87,7.18,7.54,7.72,7.88,8.18,8.06
-,1994-10-26,None,5.13,5.71,6.23,6.9,7.17,7.55,7.72,7.88,8.19,8.06
-,1994-10-27,None,5.12,5.7,6.23,6.89,7.16,7.55,7.72,7.88,8.17,8.05
-,1994-10-28,None,5.16,5.67,6.17,6.82,7.1,7.48,7.65,7.82,8.09,7.96
-,1994-10-31,None,5.2,5.72,6.18,6.84,7.1,7.48,7.65,7.81,8.09,7.97
-,1994-11-01,None,5.22,5.75,6.25,6.93,7.21,7.58,7.75,7.91,8.2,8.06
-,1994-11-02,None,5.23,5.76,6.28,6.96,7.25,7.63,7.79,7.96,8.22,8.09
-,1994-11-03,None,5.25,5.77,6.31,6.98,7.28,7.65,7.8,7.96,8.24,8.11
-,1994-11-04,None,5.33,5.87,6.39,7.05,7.37,7.72,7.88,8.04,8.3,8.16
-,1994-11-07,None,5.42,5.93,6.42,7.06,7.39,7.73,7.89,8.05,8.3,8.16
-,1994-11-08,None,5.37,5.89,6.39,7.02,7.39,7.69,7.85,8.01,8.24,8.12
-,1994-11-09,None,5.34,5.86,6.37,7.01,7.35,7.64,7.79,7.94,8.21,8.09
-,1994-11-10,None,5.38,5.88,6.5,7.06,7.4,7.69,7.84,7.98,8.27,8.15
-,1994-11-14,None,5.46,5.97,6.49,7.06,7.37,7.66,7.8,7.94,8.2,8.09
-,1994-11-15,None,5.53,6.03,6.55,7.1,7.41,7.69,7.78,7.92,8.15,8.05
-,1994-11-16,None,5.52,6.04,6.59,7.15,7.45,7.73,7.86,7.97,8.22,8.09
-,1994-11-17,None,5.51,6.05,6.62,7.21,7.52,7.79,7.9,8.03,8.27,8.14
-,1994-11-18,None,5.5,6.04,6.64,7.23,7.52,7.79,7.91,8.01,8.26,8.14
-,1994-11-21,None,5.53,6.09,6.68,7.3,7.57,7.83,7.92,8.03,8.26,8.14
-,1994-11-22,None,5.49,6.08,6.67,7.29,7.56,7.82,7.9,8.0,8.23,8.11
-,1994-11-23,None,5.44,5.98,6.57,7.18,7.43,7.64,7.71,7.81,8.06,7.96
-,1994-11-25,None,5.45,5.99,6.58,7.19,7.44,7.65,7.71,7.8,8.04,7.94
-,1994-11-28,None,5.6,6.12,6.74,7.35,7.59,7.77,7.8,7.88,8.1,7.99
-,1994-11-29,None,5.69,6.18,6.85,7.44,7.68,7.86,7.88,7.95,8.15,8.05
-,1994-11-30,None,5.72,6.22,6.91,7.4,7.62,7.79,7.84,7.91,8.1,7.99
-,1994-12-01,None,5.71,6.26,6.94,7.42,7.63,7.8,7.87,7.92,8.12,8.02
-,1994-12-02,None,5.79,6.39,7.01,7.44,7.59,7.71,7.77,7.81,8.01,7.92
-,1994-12-05,None,6.03,6.63,7.15,7.58,7.67,7.78,7.8,7.83,8.04,7.94
-,1994-12-06,None,5.94,6.5,7.01,7.44,7.57,7.65,7.7,7.73,7.93,7.84
-,1994-12-07,None,5.82,6.44,7.01,7.48,7.62,7.74,7.78,7.81,8.01,7.9
-,1994-12-08,None,5.83,6.47,7.17,7.51,7.67,7.77,7.77,7.79,7.99,7.88
-,1994-12-09,None,5.82,6.46,7.15,7.53,7.67,7.74,7.77,7.79,7.97,7.86
-,1994-12-12,None,5.93,6.62,7.24,7.62,7.77,7.82,7.84,7.85,8.04,7.92
-,1994-12-13,None,5.95,6.67,7.32,7.71,7.8,7.84,7.84,7.83,7.97,7.86
-,1994-12-14,None,5.84,6.57,7.2,7.59,7.69,7.74,7.79,7.8,8.0,7.86
-,1994-12-15,None,5.7,6.48,7.09,7.54,7.66,7.73,7.79,7.79,7.99,7.86
-,1994-12-16,None,5.71,6.52,7.14,7.59,7.71,7.76,7.8,7.81,7.98,7.86
-,1994-12-19,None,5.75,6.57,7.13,7.59,7.72,7.77,7.8,7.81,7.96,7.84
-,1994-12-20,None,5.63,6.47,7.06,7.56,7.68,7.76,7.8,7.81,7.98,7.85
-,1994-12-21,None,5.56,6.43,7.04,7.58,7.68,7.75,7.8,7.8,7.96,7.84
-,1994-12-22,None,5.61,6.5,7.17,7.7,7.81,7.83,7.83,7.84,7.99,7.87
-,1994-12-23,None,5.68,6.5,7.2,7.74,7.82,7.86,7.86,7.85,7.96,7.85
-,1994-12-27,None,5.74,6.54,7.18,7.67,7.76,7.78,7.77,7.76,7.87,7.76
-,1994-12-28,None,5.68,6.56,7.25,7.71,7.78,7.81,7.79,7.8,7.96,7.83
-,1994-12-29,None,5.66,6.51,7.2,7.69,7.8,7.83,7.82,7.82,7.99,7.85
-,1994-12-30,None,5.68,6.51,7.2,7.69,7.8,7.83,7.84,7.84,8.02,7.89
-,1995-01-03,None,5.95,6.66,7.23,7.73,7.84,7.88,7.91,7.88,8.07,7.93
-,1995-01-04,None,5.85,6.57,7.15,7.62,7.75,7.81,7.82,7.82,7.98,7.85
-,1995-01-05,None,5.88,6.61,7.32,7.66,7.83,7.87,7.89,7.88,8.03,7.91
-,1995-01-06,None,5.9,6.61,7.26,7.64,7.81,7.87,7.89,7.87,8.0,7.87
-,1995-01-09,None,6.0,6.67,7.27,7.68,7.84,7.9,7.92,7.89,8.03,7.9
-,1995-01-10,None,5.91,6.62,7.21,7.63,7.78,7.85,7.87,7.84,8.0,7.87
-,1995-01-11,None,5.79,6.51,7.13,7.58,7.73,7.8,7.82,7.79,7.98,7.85
-,1995-01-12,None,5.78,6.48,7.08,7.56,7.73,7.8,7.84,7.8,8.02,7.88
-,1995-01-13,None,5.72,6.38,6.89,7.39,7.55,7.64,7.71,7.69,7.93,7.8
-,1995-01-17,None,5.89,6.44,6.99,7.44,7.6,7.68,7.72,7.7,7.92,7.78
-,1995-01-18,None,5.87,6.46,7.03,7.48,7.64,7.71,7.72,7.71,7.91,7.78
-,1995-01-19,None,5.87,6.47,7.03,7.49,7.65,7.74,7.76,7.74,7.95,7.82
-,1995-01-20,None,5.91,6.5,7.04,7.5,7.7,7.8,7.84,7.82,8.02,7.9
-,1995-01-23,None,5.97,6.51,7.02,7.5,7.69,7.8,7.86,7.83,8.02,7.91
-,1995-01-24,None,5.98,6.53,7.04,7.57,7.71,7.82,7.87,7.86,8.05,7.93
-,1995-01-25,None,5.94,6.46,6.96,7.5,7.61,7.76,7.81,7.8,7.99,7.88
-,1995-01-26,None,5.94,6.44,6.9,7.39,7.54,7.7,7.75,7.76,7.95,7.85
-,1995-01-27,None,5.92,6.41,6.82,7.29,7.46,7.6,7.63,7.66,7.83,7.75
-,1995-01-30,None,5.96,6.39,6.8,7.23,7.4,7.55,7.62,7.65,7.86,7.76
-,1995-01-31,None,6.0,6.4,6.84,7.26,7.39,7.54,7.58,7.6,7.81,7.71
-,1995-02-01,None,6.07,6.49,6.97,7.33,7.44,7.56,7.65,7.66,7.85,7.75
-,1995-02-02,None,6.02,6.47,7.01,7.4,7.53,7.63,7.67,7.68,7.85,7.76
-,1995-02-03,None,5.96,6.34,6.77,7.14,7.3,7.4,7.44,7.49,7.7,7.61
-,1995-02-06,None,5.98,6.36,6.79,7.18,7.35,7.43,7.49,7.53,7.72,7.64
-,1995-02-07,None,5.98,6.36,6.78,7.19,7.36,7.44,7.49,7.52,7.73,7.65
-,1995-02-08,None,5.94,6.33,6.74,7.18,7.34,7.43,7.5,7.53,7.74,7.66
-,1995-02-09,None,5.95,6.36,6.79,7.23,7.43,7.5,7.54,7.58,7.78,7.65
-,1995-02-10,None,5.97,6.4,6.85,7.33,7.47,7.55,7.61,7.62,7.81,7.68
-,1995-02-13,None,5.98,6.4,6.85,7.32,7.45,7.54,7.6,7.61,7.8,7.67
-,1995-02-14,None,5.96,6.36,6.77,7.21,7.34,7.45,7.5,7.51,7.75,7.61
-,1995-02-15,None,5.94,6.31,6.68,7.12,7.24,7.37,7.43,7.45,7.7,7.58
-,1995-02-16,None,5.85,6.25,6.58,7.02,7.16,7.29,7.39,7.4,7.7,7.57
-,1995-02-17,None,5.86,6.26,6.62,7.07,7.2,7.33,7.41,7.43,7.71,7.59
-,1995-02-21,None,5.92,6.29,6.66,7.09,7.22,7.35,7.42,7.44,7.74,7.61
-,1995-02-22,None,5.85,6.17,6.49,6.92,7.04,7.2,7.29,7.34,7.67,7.54
-,1995-02-23,None,5.88,6.18,6.52,6.92,7.03,7.2,7.3,7.34,7.68,7.56
-,1995-02-24,None,5.88,6.18,6.5,6.89,7.0,7.16,7.3,7.33,7.66,7.54
-,1995-02-27,None,5.92,6.16,6.43,6.79,6.9,7.06,7.19,7.24,7.61,7.49
-,1995-02-28,None,5.94,6.19,6.44,6.79,6.9,7.06,7.15,7.22,7.58,7.46
-,1995-03-01,None,5.94,6.21,6.44,6.81,6.92,7.06,7.17,7.23,7.57,7.45
-,1995-03-02,None,5.93,6.21,6.53,6.88,7.0,7.15,7.23,7.3,7.62,7.5
-,1995-03-03,None,5.91,6.23,6.53,6.89,7.03,7.19,7.29,7.36,7.68,7.56
-,1995-03-06,None,5.94,6.28,6.59,6.96,7.1,7.24,7.36,7.41,7.73,7.59
-,1995-03-07,None,5.96,6.3,6.6,7.0,7.12,7.28,7.37,7.44,7.78,7.64
-,1995-03-08,None,5.95,6.26,6.56,6.93,7.05,7.2,7.29,7.36,7.69,7.56
-,1995-03-09,None,5.91,6.21,6.47,6.83,6.97,7.11,7.22,7.3,7.65,7.53
-,1995-03-10,None,5.96,6.22,6.49,6.83,6.94,7.07,7.15,7.23,7.57,7.46
-,1995-03-13,None,5.94,6.2,6.44,6.76,6.88,7.01,7.1,7.19,7.56,7.45
-,1995-03-14,None,5.93,6.18,6.39,6.69,6.8,6.93,7.0,7.09,7.45,7.35
-,1995-03-15,None,5.92,6.18,6.41,6.71,6.8,6.93,7.01,7.09,7.47,7.36
-,1995-03-16,None,5.92,6.16,6.35,6.68,6.76,6.89,6.98,7.05,7.45,7.33
-,1995-03-17,None,5.92,6.16,6.37,6.69,6.81,6.97,7.06,7.12,7.48,7.37
-,1995-03-20,None,5.93,6.18,6.37,6.69,6.81,6.98,7.07,7.12,7.52,7.4
-,1995-03-21,None,5.92,6.17,6.38,6.71,6.84,7.01,7.1,7.16,7.57,7.43
-,1995-03-22,None,5.91,6.15,6.4,6.75,6.87,7.05,7.16,7.21,7.58,7.46
-,1995-03-23,None,5.89,6.14,6.38,6.75,6.87,7.06,7.15,7.21,7.6,7.47
-,1995-03-24,None,5.85,6.11,6.31,6.64,6.75,6.93,7.04,7.09,7.5,7.38
-,1995-03-27,None,5.82,6.04,6.27,6.62,6.72,6.9,7.0,7.05,7.44,7.33
-,1995-03-28,None,5.89,6.11,6.38,6.73,6.85,7.02,7.1,7.16,7.52,7.41
-,1995-03-29,None,5.84,6.04,6.35,6.73,6.83,6.98,7.12,7.16,7.5,7.4
-,1995-03-30,None,5.88,6.1,6.43,6.76,6.88,7.05,7.14,7.18,7.54,7.43
-,1995-03-31,None,5.88,6.13,6.49,6.8,6.92,7.08,7.17,7.2,7.54,7.44
-,1995-04-03,None,5.94,6.18,6.45,6.75,6.86,7.0,7.08,7.14,7.49,7.39
-,1995-04-04,None,5.91,6.15,6.4,6.71,6.82,6.96,7.02,7.12,7.48,7.38
-,1995-04-05,None,5.88,6.13,6.38,6.7,6.81,6.97,7.05,7.12,7.48,7.38
-,1995-04-06,None,5.85,6.09,6.33,6.66,6.77,6.92,7.01,7.09,7.47,7.36
-,1995-04-07,None,5.86,6.1,6.33,6.65,6.76,6.93,7.03,7.11,7.5,7.39
-,1995-04-10,None,5.85,6.08,6.33,6.66,6.77,6.94,7.03,7.12,7.49,7.39
-,1995-04-11,None,5.84,6.07,6.31,6.65,6.76,6.92,7.0,7.09,7.47,7.37
-,1995-04-12,None,5.82,6.04,6.28,6.61,6.72,6.89,6.98,7.06,7.46,7.36
-,1995-04-13,None,5.75,5.99,6.19,6.51,6.64,6.82,6.91,7.03,7.42,7.34
-,1995-04-17,None,5.8,6.0,6.19,6.48,6.6,6.8,6.91,7.04,7.48,7.39
-,1995-04-18,None,5.79,5.95,6.17,6.44,6.56,6.77,6.9,7.04,7.49,7.4
-,1995-04-19,None,5.8,5.98,6.2,6.51,6.62,6.82,6.93,7.06,7.46,7.37
-,1995-04-20,None,5.77,5.97,6.15,6.43,6.56,6.76,6.87,7.02,7.43,7.35
-,1995-04-21,None,5.79,5.98,6.15,6.44,6.55,6.77,6.87,7.01,7.42,7.34
-,1995-04-24,None,5.83,6.0,6.17,6.46,6.58,6.77,6.86,7.01,7.39,7.32
-,1995-04-25,None,5.85,6.01,6.19,6.48,6.61,6.79,6.87,7.01,7.41,7.33
-,1995-04-26,None,5.85,6.02,6.21,6.5,6.62,6.79,6.88,7.01,7.4,7.32
-,1995-04-27,None,5.87,6.06,6.3,6.55,6.67,6.84,6.92,7.04,7.42,7.33
-,1995-04-28,None,5.87,6.08,6.32,6.6,6.72,6.88,6.95,7.07,7.42,7.34
-,1995-05-01,None,5.91,6.11,6.32,6.62,6.75,6.9,6.96,7.09,7.43,7.35
-,1995-05-02,None,5.89,6.05,6.26,6.55,6.67,6.83,6.92,7.04,7.41,7.33
-,1995-05-03,None,5.84,5.97,6.16,6.47,6.56,6.73,6.82,6.96,7.32,7.25
-,1995-05-04,None,5.78,5.9,6.1,6.35,6.46,6.63,6.72,6.85,7.22,7.15
-,1995-05-05,None,5.74,5.85,5.96,6.16,6.27,6.42,6.55,6.69,7.07,7.02
-,1995-05-08,None,5.81,5.91,6.01,6.18,6.3,6.44,6.55,6.7,7.08,7.02
-,1995-05-09,None,5.81,5.9,5.96,6.08,6.19,6.33,6.44,6.61,6.99,6.94
-,1995-05-10,None,5.82,5.9,5.96,6.11,6.23,6.39,6.5,6.66,7.04,6.97
-,1995-05-11,None,5.84,5.95,6.02,6.2,6.3,6.45,6.54,6.68,7.05,6.99
-,1995-05-12,None,5.87,5.96,6.03,6.2,6.31,6.46,6.55,6.67,7.05,7.0
-,1995-05-15,None,5.88,5.95,5.99,6.16,6.26,6.41,6.49,6.62,7.0,6.95
-,1995-05-16,None,5.87,5.91,5.96,6.11,6.22,6.36,6.43,6.57,6.92,6.87
-,1995-05-17,None,5.86,5.91,5.95,6.11,6.21,6.35,6.4,6.53,6.91,6.86
-,1995-05-18,None,5.87,5.95,6.01,6.18,6.28,6.44,6.5,6.61,6.96,6.91
-,1995-05-19,None,5.87,5.95,6.01,6.19,6.28,6.43,6.5,6.61,6.96,6.91
-,1995-05-22,None,5.91,5.99,6.03,6.19,6.3,6.46,6.51,6.63,6.98,6.92
-,1995-05-23,None,5.91,5.96,5.97,6.15,6.22,6.37,6.46,6.57,6.93,6.87
-,1995-05-24,None,5.87,5.89,5.86,6.01,6.08,6.2,6.32,6.44,6.81,6.77
-,1995-05-25,None,5.84,5.89,5.89,5.99,6.06,6.18,6.27,6.39,6.78,6.73
-,1995-05-26,None,5.84,5.89,5.87,5.97,6.05,6.18,6.28,6.4,6.8,6.75
-,1995-05-30,None,5.81,5.85,5.83,5.89,5.96,6.08,6.18,6.3,6.72,6.67
-,1995-05-31,None,5.81,5.83,5.8,5.89,5.95,6.08,6.18,6.3,6.72,6.67
-,1995-06-01,None,5.67,5.71,5.68,5.71,5.78,5.94,6.04,6.2,6.64,6.61
-,1995-06-02,None,5.58,5.55,5.51,5.54,5.64,5.8,5.92,6.1,6.55,6.52
-,1995-06-05,None,5.68,5.61,5.52,5.54,5.63,5.79,5.92,6.08,6.54,6.51
-,1995-06-06,None,5.69,5.63,5.56,5.57,5.67,5.83,5.94,6.08,6.54,6.51
-,1995-06-07,None,5.74,5.75,5.71,5.74,5.84,5.95,6.06,6.2,6.56,6.53
-,1995-06-08,None,5.76,5.79,5.78,5.82,5.91,6.02,6.12,6.22,6.59,6.57
-,1995-06-09,None,5.77,5.86,5.89,6.01,6.08,6.21,6.31,6.4,6.76,6.72
-,1995-06-12,None,5.73,5.81,5.83,5.96,6.04,6.16,6.27,6.37,6.76,6.71
-,1995-06-13,None,5.61,5.63,5.57,5.63,5.73,5.88,6.01,6.14,6.58,6.56
-,1995-06-14,None,5.61,5.64,5.6,5.67,5.74,5.88,6.01,6.15,6.59,6.57
-,1995-06-15,None,5.65,5.71,5.65,5.73,5.81,5.93,6.07,6.18,6.64,6.61
-,1995-06-16,None,5.66,5.7,5.66,5.77,5.83,5.96,6.09,6.21,6.64,6.62
-,1995-06-19,None,5.63,5.64,5.59,5.65,5.74,5.87,6.01,6.13,6.59,6.56
-,1995-06-20,None,5.65,5.68,5.64,5.72,5.8,5.92,6.05,6.16,6.58,6.57
-,1995-06-21,None,5.6,5.65,5.62,5.68,5.76,5.89,6.02,6.13,6.56,6.55
-,1995-06-22,None,5.54,5.6,5.53,5.61,5.67,5.8,5.92,6.04,6.47,6.48
-,1995-06-23,None,5.54,5.61,5.56,5.64,5.69,5.83,5.94,6.06,6.51,6.51
-,1995-06-26,None,5.52,5.57,5.6,5.71,5.76,5.9,6.01,6.11,6.55,6.54
-,1995-06-27,None,5.59,5.61,5.64,5.7,5.8,5.94,6.04,6.15,6.57,6.56
-,1995-06-28,None,5.57,5.57,5.58,5.67,5.76,5.88,5.99,6.1,6.53,6.52
-,1995-06-29,None,5.67,5.65,5.76,5.89,5.95,6.07,6.18,6.28,6.69,6.65
-,1995-06-30,None,5.6,5.59,5.65,5.79,5.88,5.98,6.12,6.21,6.64,6.63
-,1995-07-03,None,5.68,5.7,5.63,5.79,5.87,5.97,6.16,6.21,6.68,6.63
-,1995-07-05,None,5.68,5.69,5.62,5.78,5.84,5.95,6.12,6.19,6.64,6.61
-,1995-07-06,None,5.53,5.5,5.43,5.56,5.64,5.75,5.97,6.05,6.53,6.51
-,1995-07-07,None,5.54,5.5,5.42,5.54,5.61,5.74,5.94,6.04,6.52,6.52
-,1995-07-10,None,5.53,5.53,5.43,5.56,5.63,5.74,5.93,6.04,6.51,6.51
-,1995-07-11,None,5.56,5.57,5.47,5.59,5.69,5.8,5.99,6.09,6.57,6.57
-,1995-07-12,None,5.55,5.55,5.44,5.59,5.7,5.8,6.0,6.1,6.55,6.55
-,1995-07-13,None,5.55,5.55,5.46,5.61,5.7,5.8,6.0,6.09,6.56,6.55
-,1995-07-14,None,5.59,5.61,5.53,5.7,5.78,5.89,6.07,6.15,6.61,6.6
-,1995-07-17,None,5.63,5.63,5.55,5.77,5.86,5.97,6.15,6.22,6.69,6.67
-,1995-07-18,None,5.61,5.63,5.57,5.77,5.88,6.01,6.21,6.25,6.74,6.73
-,1995-07-19,None,5.58,5.65,5.6,5.89,5.99,6.15,6.37,6.43,6.9,6.89
-,1995-07-20,None,5.6,5.68,5.71,5.91,6.02,6.15,6.37,6.43,6.89,6.87
-,1995-07-21,None,5.61,5.7,5.75,5.95,6.11,6.26,6.4,6.53,6.98,6.96
-,1995-07-24,None,5.61,5.68,5.75,5.97,6.08,6.2,6.4,6.46,6.91,6.9
-,1995-07-25,None,5.62,5.68,5.75,5.94,6.07,6.19,6.37,6.43,6.86,6.84
-,1995-07-26,None,5.63,5.68,5.75,5.97,6.1,6.24,6.42,6.48,6.92,6.9
-,1995-07-27,None,5.58,5.6,5.66,5.91,6.03,6.18,6.36,6.43,6.86,6.84
-,1995-07-28,None,5.58,5.61,5.69,5.92,6.09,6.22,6.4,6.49,6.93,6.91
-,1995-07-31,None,5.6,5.63,5.67,5.88,6.02,6.16,6.35,6.45,6.88,6.86
-,1995-08-01,None,5.61,5.67,5.71,5.94,6.08,6.22,6.4,6.5,6.95,6.92
-,1995-08-02,None,5.59,5.63,5.66,5.86,6.03,6.15,6.34,6.44,6.88,6.86
-,1995-08-03,None,5.59,5.67,5.7,5.94,6.09,6.24,6.42,6.53,6.95,6.93
-,1995-08-04,None,5.58,5.64,5.68,5.91,6.06,6.2,6.39,6.5,6.92,6.9
-,1995-08-07,None,5.57,5.63,5.67,5.9,6.03,6.18,6.37,6.48,6.91,6.89
-,1995-08-08,None,5.55,5.63,5.68,5.9,6.01,6.17,6.36,6.47,6.9,6.89
-,1995-08-09,None,5.56,5.63,5.69,5.93,6.05,6.21,6.4,6.47,6.93,6.93
-,1995-08-10,None,5.57,5.65,5.7,5.95,6.07,6.25,6.43,6.51,6.97,6.9
-,1995-08-11,None,5.59,5.71,5.8,6.05,6.19,6.37,6.54,6.59,7.06,6.98
-,1995-08-14,None,5.6,5.69,5.81,6.05,6.19,6.36,6.54,6.59,7.06,6.96
-,1995-08-15,None,5.62,5.72,5.86,6.11,6.21,6.37,6.52,6.57,7.0,6.92
-,1995-08-16,None,5.6,5.7,5.84,6.07,6.18,6.32,6.49,6.54,6.97,6.89
-,1995-08-17,None,5.61,5.73,5.89,6.12,6.24,6.37,6.52,6.57,6.99,6.9
-,1995-08-18,None,5.61,5.72,5.88,6.13,6.24,6.36,6.51,6.57,7.0,6.91
-,1995-08-21,None,5.62,5.7,5.84,6.08,6.18,6.31,6.47,6.54,6.95,6.87
-,1995-08-22,None,5.63,5.7,5.88,6.1,6.21,6.35,6.51,6.57,6.98,6.89
-,1995-08-23,None,5.6,5.69,5.87,6.11,6.24,6.37,6.53,6.6,7.01,6.92
-,1995-08-24,None,5.52,5.6,5.77,6.0,6.12,6.26,6.42,6.5,6.92,6.84
-,1995-08-25,None,5.5,5.6,5.7,5.9,6.01,6.13,6.3,6.38,6.8,6.72
-,1995-08-28,None,5.48,5.56,5.66,5.85,5.97,6.1,6.26,6.34,6.77,6.7
-,1995-08-29,None,5.5,5.61,5.71,5.93,6.03,6.15,6.29,6.36,6.79,6.72
-,1995-08-30,None,5.46,5.55,5.66,5.88,5.98,6.1,6.25,6.33,6.77,6.7
-,1995-08-31,None,5.45,5.53,5.65,5.85,5.95,6.07,6.21,6.28,6.72,6.65
-,1995-09-01,None,5.45,5.52,5.6,5.78,5.89,6.0,6.14,6.22,6.67,6.61
-,1995-09-05,None,5.49,5.55,5.6,5.77,5.85,5.96,6.09,6.18,6.63,6.57
-,1995-09-06,None,5.48,5.55,5.6,5.76,5.84,5.95,6.1,6.17,6.63,6.57
-,1995-09-07,None,5.5,5.57,5.65,5.8,5.89,6.0,6.14,6.21,6.66,6.6
-,1995-09-08,None,5.52,5.58,5.67,5.85,5.95,6.04,6.17,6.24,6.66,6.6
-,1995-09-11,None,5.5,5.58,5.67,5.83,5.93,6.05,6.15,6.24,6.67,6.6
-,1995-09-12,None,5.47,5.54,5.61,5.77,5.84,5.96,6.09,6.16,6.6,6.51
-,1995-09-13,None,5.47,5.54,5.63,5.8,5.88,5.99,6.12,6.18,6.63,6.52
-,1995-09-14,None,5.44,5.48,5.51,5.68,5.76,5.87,6.01,6.08,6.56,6.45
-,1995-09-15,None,5.46,5.51,5.55,5.71,5.8,5.91,6.05,6.11,6.58,6.47
-,1995-09-18,None,5.41,5.47,5.56,5.77,5.86,5.97,6.11,6.17,6.64,6.53
-,1995-09-19,None,5.36,5.45,5.54,5.75,5.83,5.94,6.08,6.14,6.61,6.49
-,1995-09-20,None,5.34,5.43,5.52,5.73,5.81,5.92,6.05,6.1,6.57,6.46
-,1995-09-21,None,5.4,5.53,5.62,5.83,5.91,6.03,6.15,6.21,6.66,6.56
-,1995-09-22,None,5.35,5.52,5.63,5.85,5.93,6.06,6.19,6.25,6.7,6.59
-,1995-09-25,None,5.33,5.51,5.65,5.89,5.95,6.08,6.2,6.26,6.7,6.58
-,1995-09-26,None,5.45,5.63,5.71,5.88,5.98,6.11,6.21,6.28,6.71,6.58
-,1995-09-27,None,5.42,5.6,5.7,5.92,6.01,6.08,6.25,6.3,6.76,6.61
-,1995-09-28,None,5.44,5.61,5.73,5.92,6.0,6.1,6.22,6.28,6.71,6.59
-,1995-09-29,None,5.4,5.57,5.65,5.83,5.91,6.01,6.11,6.17,6.6,6.49
-,1995-10-02,None,5.53,5.64,5.65,5.82,5.89,5.98,6.1,6.15,6.61,6.48
-,1995-10-03,None,5.51,5.61,5.63,5.8,5.87,5.96,6.07,6.13,6.57,6.46
-,1995-10-04,None,5.47,5.57,5.6,5.75,5.82,5.91,6.04,6.12,6.54,6.44
-,1995-10-05,None,5.44,5.57,5.59,5.72,5.8,5.88,6.0,6.06,6.53,6.43
-,1995-10-06,None,5.47,5.59,5.59,5.73,5.81,5.89,6.0,6.06,6.51,6.43
-,1995-10-10,None,5.47,5.57,5.61,5.74,5.81,5.91,6.0,6.07,6.51,6.43
-,1995-10-11,None,5.47,5.57,5.61,5.75,5.82,5.91,6.02,6.09,6.5,6.44
-,1995-10-12,None,5.46,5.57,5.61,5.72,5.8,5.88,5.99,6.07,6.48,6.41
-,1995-10-13,None,5.45,5.56,5.58,5.67,5.72,5.8,5.88,5.97,6.37,6.3
-,1995-10-16,None,5.49,5.58,5.59,5.67,5.73,5.8,5.89,5.97,6.38,6.32
-,1995-10-17,None,5.43,5.55,5.57,5.65,5.71,5.8,5.89,5.97,6.36,6.3
-,1995-10-18,None,5.41,5.55,5.58,5.67,5.74,5.83,5.92,5.99,6.38,6.32
-,1995-10-19,None,5.41,5.55,5.58,5.67,5.73,5.83,5.92,5.98,6.37,6.31
-,1995-10-20,None,5.43,5.57,5.62,5.72,5.79,5.9,5.99,6.04,6.42,6.35
-,1995-10-23,None,5.38,5.57,5.65,5.76,5.82,5.92,6.01,6.07,6.44,6.38
-,1995-10-24,None,5.38,5.56,5.6,5.68,5.76,5.85,5.95,6.02,6.37,6.33
-,1995-10-25,None,5.39,5.55,5.56,5.64,5.72,5.8,5.9,6.0,6.37,6.32
-,1995-10-26,None,5.38,5.5,5.52,5.61,5.72,5.81,5.93,6.06,6.44,6.38
-,1995-10-27,None,5.41,5.53,5.56,5.64,5.73,5.83,5.95,6.05,6.4,6.35
-,1995-10-30,None,5.47,5.55,5.55,5.62,5.72,5.82,5.94,6.04,6.41,6.35
-,1995-10-31,None,5.48,5.55,5.55,5.61,5.7,5.81,5.92,6.03,6.4,6.34
-,1995-11-01,None,5.48,5.49,5.46,5.52,5.62,5.74,5.86,5.98,6.36,6.29
-,1995-11-02,None,5.47,5.46,5.41,5.46,5.56,5.68,5.8,5.92,6.31,6.25
-,1995-11-03,None,5.47,5.49,5.43,5.49,5.58,5.7,5.82,5.94,6.33,6.28
-,1995-11-06,None,5.52,5.53,5.46,5.51,5.62,5.73,5.84,5.96,6.34,6.29
-,1995-11-07,None,5.53,5.54,5.48,5.54,5.65,5.77,5.88,5.99,6.37,6.31
-,1995-11-08,None,5.52,5.49,5.41,5.47,5.58,5.69,5.8,5.92,6.3,6.25
-,1995-11-09,None,5.55,5.53,5.43,5.49,5.59,5.72,5.85,5.97,6.35,6.29
-,1995-11-10,None,5.58,5.54,5.47,5.52,5.64,5.76,5.89,6.0,6.39,6.33
-,1995-11-13,None,5.59,5.56,5.44,5.49,5.61,5.72,5.85,5.98,6.34,6.28
-,1995-11-14,None,5.55,5.52,5.43,5.47,5.58,5.71,5.85,5.97,6.36,6.3
-,1995-11-15,None,5.56,5.55,5.47,5.53,5.63,5.77,5.9,6.0,6.37,6.3
-,1995-11-16,None,5.52,5.5,5.42,5.46,5.56,5.68,5.83,5.93,6.32,6.24
-,1995-11-17,None,5.51,5.49,5.4,5.46,5.54,5.66,5.81,5.92,6.33,6.23
-,1995-11-20,None,5.5,5.48,5.41,5.46,5.53,5.66,5.82,5.93,6.33,6.25
-,1995-11-21,None,5.52,5.5,5.45,5.49,5.56,5.7,5.85,5.92,6.36,6.27
-,1995-11-22,None,5.52,5.51,5.46,5.51,5.58,5.72,5.85,5.93,6.37,6.28
-,1995-11-24,None,5.48,5.48,5.43,5.49,5.56,5.7,5.84,5.91,6.36,6.25
-,1995-11-27,None,5.5,5.49,5.41,5.46,5.53,5.67,5.81,5.88,6.31,6.23
-,1995-11-28,None,5.53,5.52,5.44,5.45,5.54,5.67,5.8,5.88,6.31,6.24
-,1995-11-29,None,5.5,5.49,5.42,5.42,5.49,5.6,5.8,5.85,6.29,6.22
-,1995-11-30,None,5.48,5.46,5.36,5.36,5.41,5.53,5.68,5.76,6.2,6.14
-,1995-12-01,None,5.45,5.44,5.33,5.32,5.37,5.49,5.63,5.71,6.16,6.1
-,1995-12-04,None,5.46,5.43,5.32,5.27,5.33,5.43,5.54,5.63,6.07,6.01
-,1995-12-05,None,5.47,5.42,5.33,5.29,5.34,5.45,5.57,5.65,6.09,6.04
-,1995-12-06,None,5.48,5.41,5.34,5.32,5.38,5.49,5.59,5.67,6.09,6.03
-,1995-12-07,None,5.5,5.43,5.35,5.39,5.42,5.54,5.65,5.72,6.13,6.07
-,1995-12-08,None,5.5,5.45,5.39,5.39,5.45,5.56,5.67,5.73,6.12,6.06
-,1995-12-11,None,5.45,5.43,5.35,5.38,5.41,5.53,5.65,5.71,6.11,6.04
-,1995-12-12,None,5.41,5.42,5.36,5.39,5.42,5.55,5.65,5.72,6.11,6.05
-,1995-12-13,None,5.42,5.43,5.37,5.39,5.45,5.56,5.66,5.74,6.12,6.07
-,1995-12-14,None,5.42,5.42,5.35,5.38,5.42,5.55,5.66,5.74,6.14,6.08
-,1995-12-15,None,5.35,5.36,5.32,5.36,5.41,5.55,5.66,5.75,6.15,6.09
-,1995-12-18,None,5.32,5.4,5.38,5.43,5.51,5.66,5.77,5.85,6.26,6.2
-,1995-12-19,None,5.24,5.31,5.28,5.36,5.45,5.58,5.71,5.81,6.21,6.14
-,1995-12-20,None,5.15,5.29,5.27,5.33,5.42,5.55,5.67,5.76,6.18,6.11
-,1995-12-21,None,5.05,5.3,5.29,5.33,5.41,5.53,5.68,5.77,6.19,6.11
-,1995-12-22,None,5.04,5.27,5.26,5.28,5.37,5.5,5.62,5.71,6.12,6.06
-,1995-12-26,None,5.05,5.26,5.26,5.27,5.34,5.48,5.62,5.69,6.1,6.04
-,1995-12-27,None,5.04,5.23,5.23,5.23,5.31,5.46,5.58,5.66,6.07,6.01
-,1995-12-28,None,4.98,5.11,5.18,5.2,5.27,5.43,5.56,5.63,6.04,5.98
-,1995-12-29,None,5.1,5.17,5.18,5.18,5.25,5.38,5.49,5.58,6.01,5.96
-,1996-01-02,None,5.2,5.25,5.17,5.18,5.26,5.39,5.51,5.6,6.03,5.97
-,1996-01-03,None,5.2,5.22,5.16,5.17,5.21,5.36,5.49,5.58,6.01,5.96
-,1996-01-04,None,5.19,5.23,5.19,5.17,5.26,5.39,5.55,5.65,6.08,6.03
-,1996-01-05,None,5.19,5.22,5.19,5.2,5.29,5.42,5.59,5.69,6.11,6.05
-,1996-01-08,None,5.18,5.22,5.19,5.2,5.27,5.41,5.56,5.68,6.1,6.04
-,1996-01-09,None,5.18,5.2,5.16,5.18,5.27,5.41,5.58,5.7,6.12,6.06
-,1996-01-10,None,5.19,5.19,5.19,5.22,5.33,5.5,5.67,5.8,6.23,6.16
-,1996-01-11,None,5.19,5.19,5.16,5.22,5.31,5.47,5.67,5.78,6.22,6.16
-,1996-01-12,None,5.18,5.18,5.14,5.17,5.26,5.4,5.64,5.75,6.22,6.16
-,1996-01-16,None,5.14,5.08,5.06,5.08,5.19,5.37,5.55,5.66,6.14,6.09
-,1996-01-17,None,5.14,5.05,5.04,5.05,5.14,5.29,5.46,5.58,6.05,6.0
-,1996-01-18,None,5.11,5.02,5.01,5.01,5.09,5.25,5.42,5.53,6.03,5.98
-,1996-01-19,None,5.1,5.06,5.02,5.03,5.1,5.27,5.43,5.54,6.02,5.97
-,1996-01-22,None,5.14,5.1,5.06,5.08,5.17,5.34,5.5,5.61,6.09,6.04
-,1996-01-23,None,5.12,5.11,5.06,5.09,5.18,5.37,5.55,5.66,6.14,6.09
-,1996-01-24,None,5.12,5.1,5.03,5.07,5.16,5.3,5.5,5.62,6.08,6.02
-,1996-01-25,None,5.12,5.12,5.06,5.11,5.23,5.41,5.58,5.7,6.16,6.11
-,1996-01-26,None,5.11,5.11,5.02,5.08,5.18,5.34,5.54,5.65,6.1,6.04
-,1996-01-29,None,5.17,5.12,5.05,5.1,5.21,5.37,5.56,5.69,6.14,6.09
-,1996-01-30,None,5.14,5.05,4.98,5.02,5.13,5.3,5.51,5.63,6.08,6.04
-,1996-01-31,None,5.05,4.97,4.9,4.93,5.06,5.25,5.46,5.6,6.07,6.03
-,1996-02-01,None,5.03,4.98,4.88,4.93,5.05,5.24,5.47,5.63,6.11,6.08
-,1996-02-02,None,4.99,4.94,4.85,4.9,5.04,5.24,5.49,5.66,6.16,6.15
-,1996-02-05,None,5.0,4.98,4.88,4.95,5.09,5.3,5.54,5.7,6.17,6.15
-,1996-02-06,None,4.98,4.97,4.87,4.93,5.03,5.28,5.5,5.68,6.15,6.14
-,1996-02-07,None,4.94,4.95,4.86,4.92,5.03,5.27,5.51,5.66,6.17,6.15
-,1996-02-08,None,4.92,4.93,4.84,4.9,5.01,5.27,5.51,5.66,6.17,6.09
-,1996-02-09,None,4.93,4.91,4.82,4.85,4.98,5.25,5.49,5.66,6.17,6.11
-,1996-02-12,None,4.93,4.9,4.8,4.83,4.94,5.17,5.42,5.61,6.1,6.05
-,1996-02-13,None,4.93,4.86,4.79,4.8,4.89,5.14,5.39,5.58,6.08,6.02
-,1996-02-14,None,4.94,4.9,4.8,4.82,4.91,5.17,5.43,5.62,6.13,6.07
-,1996-02-15,None,4.92,4.92,4.84,4.87,4.95,5.23,5.5,5.7,6.22,6.16
-,1996-02-16,None,4.89,4.9,4.84,4.9,5.01,5.29,5.58,5.76,6.27,6.23
-,1996-02-20,None,4.99,5.09,5.09,5.18,5.3,5.53,5.83,6.01,6.45,6.39
-,1996-02-21,None,4.96,5.03,5.05,5.16,5.3,5.56,5.81,5.98,6.47,6.39
-,1996-02-22,None,4.95,4.98,4.99,5.11,5.23,5.47,5.76,5.92,6.43,6.36
-,1996-02-23,None,4.97,4.99,5.02,5.13,5.29,5.53,5.82,5.97,6.5,6.42
-,1996-02-26,None,4.98,4.98,5.05,5.18,5.33,5.56,5.85,6.01,6.54,6.45
-,1996-02-27,None,5.01,5.02,5.12,5.28,5.41,5.63,5.9,6.06,6.56,6.47
-,1996-02-28,None,5.01,5.05,5.22,5.43,5.51,5.73,5.97,6.11,6.58,6.48
-,1996-02-29,None,5.02,5.05,5.23,5.44,5.56,5.73,5.99,6.13,6.57,6.48
-,1996-03-01,None,4.98,4.94,5.07,5.26,5.4,5.6,5.86,5.99,6.48,6.38
-,1996-03-04,None,5.02,4.98,5.02,5.21,5.32,5.52,5.78,5.92,6.43,6.34
-,1996-03-05,None,5.02,5.01,5.07,5.28,5.4,5.6,5.84,5.96,6.48,6.39
-,1996-03-06,None,5.03,5.05,5.13,5.36,5.48,5.68,5.93,6.05,6.54,6.44
-,1996-03-07,None,5.03,5.06,5.14,5.4,5.53,5.71,5.96,6.07,6.56,6.46
-,1996-03-08,None,5.01,5.2,5.39,5.73,5.88,6.05,6.28,6.41,6.84,6.7
-,1996-03-11,None,5.09,5.18,5.38,5.71,5.86,6.0,6.24,6.33,6.76,6.63
-,1996-03-12,None,5.09,5.19,5.41,5.78,5.92,6.04,6.28,6.36,6.79,6.66
-,1996-03-13,None,5.09,5.18,5.39,5.73,5.86,6.03,6.28,6.35,6.83,6.68
-,1996-03-14,None,5.11,5.16,5.38,5.7,5.84,6.03,6.28,6.36,6.83,6.68
-,1996-03-15,None,5.14,5.24,5.51,5.87,6.01,6.19,6.4,6.46,6.9,6.75
-,1996-03-18,None,5.17,5.27,5.51,5.89,6.02,6.16,6.38,6.43,6.86,6.71
-,1996-03-19,None,5.19,5.26,5.47,5.85,5.99,6.15,6.35,6.41,6.86,6.7
-,1996-03-20,None,5.16,5.22,5.41,5.76,5.86,6.05,6.26,6.34,6.81,6.65
-,1996-03-21,None,5.07,5.21,5.4,5.72,5.82,6.01,6.23,6.28,6.78,6.62
-,1996-03-22,None,5.1,5.22,5.41,5.74,5.85,6.05,6.26,6.32,6.8,6.65
-,1996-03-25,None,5.13,5.16,5.38,5.69,5.81,6.0,6.2,6.26,6.74,6.58
-,1996-03-26,None,5.13,5.18,5.38,5.72,5.82,6.0,6.19,6.25,6.73,6.59
-,1996-03-27,None,5.17,5.19,5.45,5.81,5.93,6.12,6.3,6.34,6.84,6.68
-,1996-03-28,None,5.19,5.23,5.48,5.88,5.99,6.2,6.38,6.41,6.9,6.73
-,1996-03-29,None,5.13,5.2,5.41,5.79,5.91,6.1,6.3,6.34,6.83,6.67
-,1996-04-01,None,5.2,5.26,5.41,5.79,5.91,6.09,6.28,6.31,6.82,6.66
-,1996-04-02,None,5.16,5.25,5.44,5.74,5.86,6.02,6.23,6.25,6.77,6.62
-,1996-04-03,None,5.15,5.25,5.46,5.77,5.89,6.06,6.26,6.27,6.8,6.63
-,1996-04-04,None,5.11,5.25,5.48,5.83,5.95,6.12,6.32,6.33,6.83,6.66
-,1996-04-05,None,5.15,5.36,5.63,6.09,6.22,6.4,6.57,6.57,7.01,6.83
-,1996-04-08,None,5.16,5.39,5.67,6.11,6.27,6.46,6.62,6.63,7.07,6.88
-,1996-04-09,None,5.1,5.32,5.6,6.06,6.21,6.37,6.56,6.56,7.04,6.84
-,1996-04-10,None,5.08,5.31,5.64,6.1,6.24,6.44,6.63,6.63,7.1,6.91
-,1996-04-11,None,5.08,5.32,5.65,6.12,6.33,6.5,6.68,6.68,7.15,6.95
-,1996-04-12,None,5.07,5.28,5.53,5.96,6.12,6.31,6.49,6.52,7.0,6.81
-,1996-04-15,None,4.97,5.21,5.47,5.93,6.07,6.27,6.46,6.47,6.98,6.79
-,1996-04-16,None,4.95,5.21,5.48,5.91,6.06,6.28,6.46,6.48,6.95,6.78
-,1996-04-17,None,4.96,5.24,5.53,5.96,6.12,6.33,6.49,6.52,6.99,6.81
-,1996-04-18,None,4.98,5.26,5.56,6.02,6.18,6.39,6.56,6.58,7.02,6.84
-,1996-04-19,None,5.01,5.24,5.5,5.95,6.1,6.32,6.48,6.53,7.0,6.8
-,1996-04-22,None,5.09,5.22,5.48,5.92,6.06,6.28,6.44,6.48,6.95,6.75
-,1996-04-23,None,5.1,5.23,5.48,5.93,6.1,6.31,6.47,6.52,6.97,6.78
-,1996-04-24,None,5.13,5.24,5.51,5.95,6.13,6.34,6.51,6.57,7.01,6.81
-,1996-04-25,None,5.09,5.24,5.57,5.99,6.15,6.31,6.49,6.56,7.01,6.81
-,1996-04-26,None,5.11,5.23,5.55,5.92,6.08,6.29,6.47,6.54,6.96,6.79
-,1996-04-29,None,5.14,5.28,5.57,5.98,6.13,6.33,6.51,6.59,7.0,6.83
-,1996-04-30,None,5.14,5.3,5.62,6.03,6.19,6.4,6.58,6.66,7.06,6.89
-,1996-05-01,None,5.11,5.29,5.6,6.03,6.19,6.39,6.58,6.68,7.08,6.91
-,1996-05-02,None,5.13,5.34,5.69,6.16,6.34,6.56,6.75,6.85,7.21,7.05
-,1996-05-03,None,5.14,5.34,5.69,6.2,6.37,6.61,6.81,6.9,7.29,7.12
-,1996-05-06,None,5.14,5.35,5.66,6.15,6.34,6.57,6.77,6.86,7.25,7.07
-,1996-05-07,None,5.14,5.36,5.71,6.2,6.38,6.6,6.8,6.87,7.27,7.08
-,1996-05-08,None,5.13,5.31,5.66,6.15,6.35,6.56,6.74,6.78,7.19,7.0
-,1996-05-09,None,5.13,5.32,5.68,6.14,6.35,6.57,6.76,6.84,7.21,7.02
-,1996-05-10,None,5.13,5.31,5.62,6.04,6.23,6.45,6.65,6.75,7.12,6.93
-,1996-05-13,None,5.16,5.34,5.62,6.06,6.25,6.45,6.64,6.72,7.09,6.9
-,1996-05-14,None,5.14,5.31,5.58,6.01,6.19,6.4,6.58,6.66,7.04,6.85
-,1996-05-15,None,5.13,5.31,5.58,6.01,6.18,6.39,6.56,6.65,7.03,6.84
-,1996-05-16,None,5.15,5.33,5.6,6.08,6.25,6.45,6.63,6.7,7.08,6.9
-,1996-05-17,None,5.15,5.33,5.58,6.04,6.2,6.41,6.58,6.65,7.03,6.84
-,1996-05-20,None,5.17,5.32,5.56,6.02,6.18,6.38,6.54,6.62,7.01,6.82
-,1996-05-21,None,5.18,5.32,5.57,6.03,6.19,6.41,6.58,6.65,7.04,6.85
-,1996-05-22,None,5.18,5.32,5.56,6.03,6.19,6.38,6.55,6.63,6.99,6.81
-,1996-05-23,None,5.18,5.34,5.63,6.05,6.23,6.44,6.6,6.68,7.05,6.87
-,1996-05-24,None,5.18,5.33,5.61,6.03,6.2,6.42,6.58,6.65,7.01,6.84
-,1996-05-28,None,5.17,5.34,5.63,6.05,6.23,6.44,6.58,6.67,7.02,6.85
-,1996-05-29,None,5.18,5.36,5.7,6.16,6.33,6.56,6.69,6.77,7.1,6.94
-,1996-05-30,None,5.18,5.35,5.71,6.18,6.36,6.55,6.7,6.78,7.08,6.92
-,1996-05-31,None,5.18,5.36,5.77,6.27,6.44,6.64,6.78,6.85,7.17,7.0
-,1996-06-03,None,5.23,5.41,5.78,6.26,6.43,6.64,6.8,6.87,7.19,7.01
-,1996-06-04,None,5.2,5.42,5.78,6.24,6.44,6.62,6.78,6.86,7.18,7.0
-,1996-06-05,None,5.22,5.41,5.76,6.24,6.43,6.6,6.75,6.82,7.14,6.96
-,1996-06-06,None,5.21,5.4,5.71,6.16,6.32,6.52,6.67,6.76,7.08,6.91
-,1996-06-07,None,5.26,5.53,5.86,6.4,6.56,6.75,6.87,6.93,7.22,7.05
-,1996-06-10,None,5.29,5.56,5.88,6.4,6.58,6.77,6.91,6.97,7.28,7.1
-,1996-06-11,None,5.27,5.53,5.87,6.37,6.56,6.77,6.94,6.99,7.31,7.13
-,1996-06-12,None,5.26,5.53,5.88,6.39,6.59,6.81,6.99,7.03,7.35,7.18
-,1996-06-13,None,5.24,5.51,5.85,6.36,6.56,6.8,6.95,7.01,7.32,7.15
-,1996-06-14,None,5.21,5.48,5.8,6.29,6.49,6.72,6.87,6.95,7.26,7.1
-,1996-06-17,None,5.19,5.46,5.78,6.27,6.47,6.68,6.82,6.9,7.22,7.06
-,1996-06-18,None,5.21,5.46,5.78,6.28,6.48,6.71,6.87,6.93,7.25,7.09
-,1996-06-19,None,5.23,5.46,5.81,6.31,6.5,6.74,6.89,6.96,7.27,7.12
-,1996-06-20,None,5.26,5.48,5.87,6.38,6.55,6.77,6.89,6.98,7.27,7.12
-,1996-06-21,None,5.26,5.48,5.84,6.35,6.52,6.74,6.87,6.96,7.25,7.11
-,1996-06-24,None,5.23,5.44,5.83,6.32,6.52,6.72,6.86,6.94,7.24,7.09
-,1996-06-25,None,5.24,5.44,5.82,6.3,6.5,6.7,6.82,6.91,7.2,7.06
-,1996-06-26,None,5.24,5.45,5.83,6.3,6.49,6.67,6.8,6.91,7.19,7.05
-,1996-06-27,None,5.2,5.42,5.77,6.21,6.41,6.59,6.72,6.83,7.13,6.99
-,1996-06-28,None,5.18,5.37,5.7,6.11,6.3,6.47,6.61,6.73,7.03,6.9
-,1996-07-01,None,5.27,5.43,5.74,6.15,6.33,6.49,6.61,6.74,7.03,6.91
-,1996-07-02,None,5.32,5.49,5.8,6.22,6.4,6.56,6.67,6.8,7.06,6.94
-,1996-07-03,None,5.24,5.43,5.75,6.2,6.36,6.53,6.67,6.78,7.06,6.94
-,1996-07-05,None,5.31,5.6,5.97,6.44,6.62,6.82,6.95,7.06,7.31,7.19
-,1996-07-08,None,5.35,5.65,5.98,6.43,6.62,6.81,6.95,7.05,7.32,7.19
-,1996-07-09,None,5.34,5.63,5.95,6.41,6.61,6.78,6.92,7.0,7.27,7.15
-,1996-07-10,None,5.29,5.57,5.89,6.34,6.52,6.71,6.85,6.95,7.22,7.1
-,1996-07-11,None,5.26,5.53,5.85,6.28,6.47,6.67,6.81,6.9,7.19,7.07
-,1996-07-12,None,5.28,5.52,5.84,6.26,6.45,6.65,6.76,6.85,7.15,7.03
-,1996-07-15,None,5.32,5.57,5.86,6.32,6.5,6.67,6.79,6.89,7.18,7.07
-,1996-07-16,None,5.27,5.49,5.77,6.23,6.42,6.61,6.74,6.84,7.14,7.03
-,1996-07-17,None,5.26,5.49,5.79,6.23,6.43,6.61,6.75,6.83,7.14,7.02
-,1996-07-18,None,5.25,5.46,5.79,6.16,6.32,6.5,6.61,6.72,7.02,6.92
-,1996-07-19,None,5.28,5.5,5.81,6.18,6.35,6.55,6.67,6.78,7.08,6.97
-,1996-07-22,None,5.3,5.53,5.86,6.23,6.43,6.62,6.73,6.84,7.12,7.01
-,1996-07-23,None,5.3,5.52,5.85,6.23,6.42,6.6,6.7,6.8,7.08,6.97
-,1996-07-24,None,5.31,5.53,5.86,6.26,6.46,6.63,6.76,6.87,7.15,7.04
-,1996-07-25,None,5.29,5.53,5.85,6.28,6.46,6.65,6.74,6.87,7.14,7.04
-,1996-07-26,None,5.29,5.52,5.85,6.25,6.45,6.62,6.74,6.85,7.12,7.02
-,1996-07-29,None,5.37,5.56,5.93,6.32,6.5,6.69,6.81,6.93,7.19,7.09
-,1996-07-30,None,5.34,5.51,5.88,6.3,6.47,6.65,6.77,6.89,7.14,7.05
-,1996-07-31,None,5.32,5.47,5.85,6.22,6.39,6.57,6.68,6.8,7.07,6.98
-,1996-08-01,None,5.25,5.41,5.74,6.08,6.25,6.41,6.52,6.65,6.94,6.84
-,1996-08-02,None,5.21,5.32,5.6,5.91,6.09,6.26,6.38,6.51,6.83,6.74
-,1996-08-05,None,5.2,5.32,5.6,5.93,6.1,6.28,6.4,6.53,6.84,6.75
-,1996-08-06,None,5.19,5.32,5.61,5.93,6.13,6.29,6.42,6.54,6.86,6.76
-,1996-08-07,None,5.18,5.33,5.62,5.97,6.14,6.3,6.43,6.55,6.87,6.78
-,1996-08-08,None,5.15,5.33,5.62,5.97,6.14,6.29,6.43,6.56,6.89,6.76
-,1996-08-09,None,5.15,5.32,5.57,5.93,6.09,6.25,6.37,6.5,6.83,6.7
-,1996-08-12,None,5.18,5.3,5.58,5.92,6.08,6.24,6.37,6.49,6.82,6.7
-,1996-08-13,None,5.17,5.32,5.63,5.97,6.14,6.32,6.44,6.57,6.92,6.78
-,1996-08-14,None,5.16,5.31,5.61,5.97,6.14,6.33,6.46,6.58,6.92,6.78
-,1996-08-15,None,5.19,5.34,5.66,6.0,6.17,6.37,6.49,6.62,6.95,6.82
-,1996-08-16,None,5.18,5.32,5.61,5.95,6.13,6.31,6.43,6.56,6.9,6.77
-,1996-08-19,None,5.2,5.35,5.64,5.97,6.15,6.34,6.47,6.59,6.94,6.8
-,1996-08-20,None,5.18,5.32,5.62,5.97,6.14,6.34,6.47,6.59,6.94,6.8
-,1996-08-21,None,5.14,5.3,5.62,5.99,6.15,6.35,6.49,6.61,6.97,6.83
-,1996-08-22,None,5.14,5.29,5.62,6.0,6.18,6.38,6.51,6.62,6.97,6.84
-,1996-08-23,None,5.15,5.32,5.69,6.09,6.27,6.48,6.61,6.72,7.06,6.93
-,1996-08-26,None,5.21,5.37,5.77,6.18,6.37,6.57,6.69,6.8,7.14,7.0
-,1996-08-27,None,5.2,5.36,5.76,6.17,6.36,6.55,6.67,6.78,7.12,6.97
-,1996-08-28,None,5.2,5.36,5.77,6.17,6.36,6.56,6.68,6.79,7.13,6.99
-,1996-08-29,None,5.24,5.41,5.82,6.23,6.42,6.61,6.74,6.86,7.19,7.05
-,1996-08-30,None,5.29,5.49,5.91,6.34,6.54,6.73,6.86,6.96,7.28,7.13
-,1996-09-03,None,5.32,5.58,5.94,6.35,6.54,6.71,6.83,6.92,7.22,7.07
-,1996-09-04,None,5.32,5.58,5.97,6.38,6.56,6.74,6.85,6.94,7.25,7.1
-,1996-09-05,None,5.34,5.59,5.98,6.38,6.56,6.76,6.88,6.98,7.3,7.15
-,1996-09-06,None,5.33,5.57,5.92,6.33,6.52,6.72,6.84,6.94,7.27,7.12
-,1996-09-09,None,5.29,5.5,5.91,6.32,6.47,6.67,6.8,6.9,7.23,7.08
-,1996-09-10,None,5.29,5.55,5.93,6.34,6.52,6.7,6.84,6.94,7.28,7.13
-,1996-09-11,None,5.31,5.52,5.94,6.34,6.51,6.7,6.84,6.94,7.27,7.12
-,1996-09-12,None,5.28,5.5,5.9,6.27,6.44,6.64,6.79,6.88,7.23,7.08
-,1996-09-13,None,5.21,5.38,5.74,6.1,6.29,6.48,6.64,6.74,7.1,6.95
-,1996-09-16,None,5.2,5.38,5.74,6.14,6.31,6.49,6.63,6.73,7.09,6.95
-,1996-09-17,None,5.31,5.46,5.83,6.22,6.39,6.57,6.71,6.81,7.15,7.0
-,1996-09-18,None,5.28,5.47,5.84,6.26,6.43,6.61,6.73,6.83,7.16,7.02
-,1996-09-19,None,5.25,5.48,5.85,6.29,6.46,6.65,6.77,6.87,7.19,7.05
-,1996-09-20,None,5.29,5.5,5.85,6.26,6.43,6.62,6.75,6.85,7.18,7.04
-,1996-09-23,None,5.31,5.5,5.85,6.24,6.4,6.6,6.73,6.83,7.16,7.02
-,1996-09-24,None,5.17,5.37,5.73,6.16,6.32,6.52,6.67,6.77,7.12,6.99
-,1996-09-25,None,5.07,5.28,5.7,6.08,6.25,6.46,6.59,6.71,7.05,6.93
-,1996-09-26,None,5.0,5.25,5.65,6.05,6.22,6.41,6.54,6.66,7.0,6.88
-,1996-09-27,None,5.04,5.24,5.68,6.07,6.25,6.43,6.57,6.68,7.03,6.91
-,1996-09-30,None,5.14,5.37,5.71,6.1,6.28,6.46,6.6,6.72,7.05,6.93
-,1996-10-01,None,5.1,5.35,5.65,6.03,6.22,6.39,6.54,6.65,6.99,6.88
-,1996-10-02,None,5.03,5.29,5.61,5.98,6.15,6.35,6.49,6.61,6.95,6.84
-,1996-10-03,None,5.04,5.31,5.61,6.0,6.16,6.35,6.49,6.61,6.95,6.84
-,1996-10-04,None,5.01,5.24,5.47,5.85,6.0,6.2,6.36,6.48,6.83,6.74
-,1996-10-07,None,5.11,5.29,5.53,5.89,6.06,6.25,6.41,6.53,6.88,6.78
-,1996-10-08,None,5.12,5.29,5.53,5.9,6.06,6.26,6.42,6.53,6.89,6.79
-,1996-10-09,None,5.12,5.31,5.56,5.96,6.11,6.31,6.46,6.55,6.93,6.83
-,1996-10-10,None,5.15,5.35,5.66,6.01,6.17,6.37,6.51,6.61,6.98,6.89
-,1996-10-11,None,5.13,5.31,5.57,5.92,6.09,6.29,6.46,6.55,6.93,6.84
-,1996-10-15,None,5.17,5.34,5.58,5.93,6.1,6.3,6.46,6.56,6.94,6.85
-,1996-10-16,None,5.14,5.33,5.58,5.94,6.12,6.31,6.46,6.57,6.96,6.86
-,1996-10-17,None,5.12,5.3,5.52,5.89,6.06,6.25,6.4,6.51,6.89,6.81
-,1996-10-18,None,5.12,5.31,5.52,5.89,6.05,6.25,6.39,6.5,6.88,6.79
-,1996-10-21,None,5.14,5.34,5.55,5.91,6.07,6.27,6.41,6.52,6.89,6.81
-,1996-10-22,None,5.16,5.35,5.57,5.95,6.12,6.31,6.45,6.56,6.93,6.85
-,1996-10-23,None,5.13,5.34,5.56,5.94,6.11,6.31,6.45,6.56,6.92,6.84
-,1996-10-24,None,5.14,5.34,5.56,5.94,6.1,6.29,6.45,6.57,6.94,6.85
-,1996-10-25,None,5.14,5.33,5.55,5.9,6.07,6.26,6.42,6.54,6.9,6.82
-,1996-10-28,None,5.19,5.34,5.56,5.92,6.1,6.29,6.43,6.56,6.91,6.83
-,1996-10-29,None,5.14,5.3,5.46,5.77,5.94,6.12,6.27,6.4,6.77,6.7
-,1996-10-30,None,5.14,5.3,5.46,5.79,5.95,6.12,6.27,6.4,6.77,6.69
-,1996-10-31,None,5.17,5.3,5.44,5.77,5.92,6.1,6.24,6.37,6.74,6.66
-,1996-11-01,None,5.17,5.3,5.46,5.79,5.93,6.11,6.26,6.38,6.75,6.68
-,1996-11-04,None,5.19,5.3,5.46,5.78,5.92,6.1,6.23,6.36,6.74,6.67
-,1996-11-05,None,5.17,5.27,5.43,5.74,5.86,6.03,6.16,6.28,6.66,6.6
-,1996-11-06,None,5.17,5.28,5.44,5.76,5.9,6.05,6.18,6.3,6.67,6.61
-,1996-11-07,None,5.16,5.28,5.44,5.75,5.87,6.01,6.12,6.26,6.61,6.48
-,1996-11-08,None,5.18,5.29,5.45,5.76,5.88,6.04,6.16,6.29,6.63,6.51
-,1996-11-12,None,5.18,5.29,5.43,5.73,5.84,5.98,6.09,6.19,6.56,6.44
-,1996-11-13,None,5.17,5.28,5.42,5.71,5.84,5.99,6.1,6.2,6.58,6.46
-,1996-11-14,None,5.17,5.27,5.4,5.66,5.77,5.93,6.05,6.15,6.53,6.42
-,1996-11-15,None,5.16,5.26,5.4,5.68,5.79,5.96,6.09,6.19,6.55,6.46
-,1996-11-18,None,5.18,5.27,5.41,5.7,5.81,5.97,6.1,6.2,6.56,6.46
-,1996-11-19,None,5.17,5.26,5.4,5.68,5.78,5.94,6.07,6.17,6.53,6.44
-,1996-11-20,None,5.17,5.26,5.4,5.65,5.77,5.92,6.04,6.14,6.5,6.41
-,1996-11-21,None,5.18,5.26,5.43,5.67,5.78,5.94,6.05,6.15,6.52,6.42
-,1996-11-22,None,5.18,5.27,5.44,5.69,5.8,5.94,6.05,6.15,6.54,6.44
-,1996-11-25,None,5.18,5.28,5.43,5.67,5.77,5.92,6.04,6.13,6.53,6.42
-,1996-11-26,None,5.16,5.27,5.41,5.66,5.77,5.91,6.04,6.13,6.52,6.43
-,1996-11-27,None,5.15,5.26,5.41,5.66,5.77,5.91,6.05,6.14,6.53,6.44
-,1996-11-29,None,5.13,5.25,5.38,5.59,5.7,5.84,5.97,6.06,6.45,6.36
-,1996-12-02,None,5.08,5.24,5.4,5.61,5.72,5.85,5.97,6.08,6.46,6.36
-,1996-12-03,None,5.05,5.22,5.39,5.61,5.7,5.84,5.95,6.06,6.44,6.35
-,1996-12-04,None,5.03,5.2,5.41,5.64,5.75,5.89,6.01,6.11,6.49,6.4
-,1996-12-05,None,5.04,5.22,5.44,5.71,5.82,5.99,6.12,6.22,6.6,6.5
-,1996-12-06,None,5.03,5.23,5.45,5.73,5.84,6.02,6.16,6.26,6.62,6.53
-,1996-12-09,None,4.96,5.18,5.43,5.7,5.81,5.97,6.11,6.21,6.58,6.48
-,1996-12-10,None,4.96,5.19,5.43,5.71,5.83,5.99,6.12,6.23,6.59,6.49
-,1996-12-11,None,4.96,5.22,5.49,5.82,5.95,6.14,6.28,6.38,6.71,6.61
-,1996-12-12,None,4.97,5.2,5.49,5.84,5.98,6.14,6.3,6.4,6.74,6.64
-,1996-12-13,None,4.92,5.2,5.46,5.77,5.89,6.06,6.22,6.33,6.68,6.58
-,1996-12-16,None,4.97,5.22,5.49,5.82,5.95,6.13,6.27,6.39,6.72,6.63
-,1996-12-17,None,5.0,5.27,5.51,5.87,5.99,6.17,6.31,6.42,6.76,6.66
-,1996-12-18,None,5.03,5.28,5.55,5.89,6.04,6.21,6.36,6.46,6.8,6.69
-,1996-12-19,None,5.01,5.25,5.5,5.83,5.97,6.13,6.25,6.36,6.69,6.6
-,1996-12-20,None,5.02,5.26,5.49,5.83,5.95,6.12,6.25,6.35,6.69,6.59
-,1996-12-23,None,5.1,5.29,5.52,5.85,5.97,6.12,6.24,6.34,6.67,6.58
-,1996-12-24,None,5.09,5.27,5.51,5.85,5.98,6.13,6.25,6.36,6.68,6.59
-,1996-12-26,None,5.1,5.27,5.5,5.85,5.98,6.13,6.25,6.35,6.68,6.59
-,1996-12-27,None,5.11,5.28,5.47,5.81,5.93,6.09,6.21,6.3,6.63,6.54
-,1996-12-30,None,5.21,5.29,5.47,5.8,5.95,6.1,6.21,6.31,6.63,6.54
-,1996-12-31,None,5.21,5.33,5.51,5.88,6.04,6.21,6.34,6.43,6.73,6.65
-,1997-01-02,None,5.19,5.35,5.63,5.97,6.13,6.3,6.45,6.54,6.85,6.75
-,1997-01-03,None,5.17,5.34,5.6,5.95,6.11,6.28,6.42,6.52,6.84,6.74
-,1997-01-06,None,5.17,5.31,5.61,5.97,6.12,6.3,6.44,6.54,6.86,6.77
-,1997-01-07,None,5.16,5.3,5.61,5.98,6.14,6.32,6.47,6.57,6.89,6.8
-,1997-01-08,None,5.16,5.3,5.61,6.01,6.17,6.34,6.49,6.6,6.92,6.83
-,1997-01-09,None,5.13,5.27,5.57,5.94,6.1,6.27,6.41,6.52,6.85,6.76
-,1997-01-10,None,5.17,5.33,5.66,6.06,6.21,6.4,6.52,6.63,6.94,6.86
-,1997-01-13,None,5.08,5.31,5.66,6.07,6.22,6.4,6.52,6.63,6.95,6.85
-,1997-01-14,None,5.19,5.27,5.6,5.98,6.12,6.3,6.43,6.53,6.86,6.77
-,1997-01-15,None,5.16,5.28,5.57,5.98,6.12,6.3,6.43,6.53,6.87,6.79
-,1997-01-16,None,5.16,5.28,5.61,6.0,6.15,6.33,6.47,6.57,6.91,6.83
-,1997-01-17,None,5.14,5.28,5.6,6.0,6.14,6.32,6.46,6.56,6.9,6.83
-,1997-01-21,None,5.18,5.31,5.6,5.99,6.12,6.29,6.41,6.52,6.86,6.78
-,1997-01-22,None,5.18,5.33,5.6,6.0,6.15,6.32,6.45,6.56,6.9,6.83
-,1997-01-23,None,5.18,5.34,5.62,6.06,6.19,6.35,6.49,6.6,6.93,6.85
-,1997-01-24,None,5.16,5.34,5.62,6.07,6.21,6.39,6.53,6.64,6.97,6.89
-,1997-01-27,None,5.21,5.34,5.66,6.11,6.25,6.42,6.57,6.69,7.01,6.94
-,1997-01-28,None,5.18,5.3,5.61,6.04,6.19,6.38,6.53,6.64,6.98,6.91
-,1997-01-29,None,5.18,5.29,5.61,6.04,6.19,6.38,6.52,6.63,6.97,6.9
-,1997-01-30,None,5.18,5.31,5.63,6.01,6.16,6.35,6.49,6.61,6.95,6.88
-,1997-01-31,None,5.15,5.28,5.58,5.94,6.08,6.26,6.4,6.53,6.86,6.8
-,1997-02-03,None,5.12,5.28,5.54,5.89,6.03,6.21,6.34,6.47,6.81,6.74
-,1997-02-04,None,5.1,5.28,5.54,5.88,6.02,6.19,6.32,6.45,6.78,6.72
-,1997-02-05,None,5.13,5.28,5.53,5.91,6.04,6.21,6.35,6.47,6.81,6.75
-,1997-02-06,None,5.14,5.28,5.53,5.91,6.05,6.22,6.36,6.49,6.83,6.76
-,1997-02-07,None,5.14,5.26,5.49,5.86,6.0,6.17,6.32,6.43,6.78,6.72
-,1997-02-10,None,5.17,5.29,5.5,5.87,6.0,6.16,6.29,6.43,6.77,6.71
-,1997-02-11,None,5.14,5.28,5.52,5.88,6.01,6.18,6.3,6.43,6.77,6.71
-,1997-02-12,None,5.16,5.26,5.52,5.9,6.04,6.19,6.31,6.39,6.78,6.72
-,1997-02-13,None,5.13,5.21,5.48,5.83,5.97,6.12,6.23,6.32,6.69,6.58
-,1997-02-14,None,5.1,5.17,5.45,5.79,5.91,6.07,6.18,6.28,6.64,6.53
-,1997-02-18,None,5.12,5.24,5.46,5.8,5.92,6.08,6.19,6.28,6.65,6.55
-,1997-02-19,None,5.11,5.24,5.46,5.82,5.93,6.1,6.21,6.3,6.67,6.57
-,1997-02-20,None,5.1,5.23,5.49,5.85,5.99,6.17,6.3,6.38,6.74,6.64
-,1997-02-21,None,5.09,5.23,5.48,5.85,5.98,6.16,6.27,6.36,6.74,6.63
-,1997-02-24,None,5.16,5.23,5.5,5.89,6.02,6.19,6.3,6.39,6.76,6.66
-,1997-02-25,None,5.13,5.24,5.52,5.9,6.04,6.2,6.31,6.4,6.76,6.66
-,1997-02-26,None,5.22,5.3,5.64,6.06,6.21,6.37,6.48,6.56,6.9,6.8
-,1997-02-27,None,5.22,5.35,5.66,6.09,6.23,6.4,6.5,6.58,6.92,6.82
-,1997-02-28,None,5.22,5.39,5.67,6.09,6.23,6.39,6.5,6.56,6.91,6.8
-,1997-03-03,None,5.24,5.39,5.68,6.11,6.25,6.41,6.53,6.58,6.94,6.83
-,1997-03-04,None,5.25,5.4,5.7,6.11,6.27,6.44,6.55,6.6,6.97,6.86
-,1997-03-05,None,5.21,5.41,5.71,6.13,6.27,6.43,6.55,6.6,6.96,6.85
-,1997-03-06,None,5.23,5.43,5.72,6.15,6.29,6.45,6.58,6.62,6.99,6.89
-,1997-03-07,None,5.22,5.4,5.68,6.1,6.25,6.39,6.52,6.57,6.93,6.83
-,1997-03-10,None,5.2,5.4,5.7,6.1,6.25,6.4,6.52,6.56,6.94,6.83
-,1997-03-11,None,5.18,5.38,5.68,6.09,6.25,6.4,6.53,6.57,6.96,6.84
-,1997-03-12,None,5.21,5.4,5.71,6.12,6.27,6.43,6.56,6.6,6.98,6.87
-,1997-03-13,None,5.26,5.45,5.76,6.21,6.38,6.55,6.68,6.72,7.09,6.98
-,1997-03-14,None,5.24,5.43,5.74,6.18,6.35,6.53,6.66,6.71,7.07,6.95
-,1997-03-17,None,5.25,5.48,5.77,6.22,6.38,6.55,6.67,6.72,7.08,6.96
-,1997-03-18,None,5.25,5.48,5.77,6.22,6.38,6.56,6.68,6.72,7.08,6.96
-,1997-03-19,None,5.29,5.5,5.79,6.24,6.41,6.58,6.7,6.74,7.1,6.99
-,1997-03-20,None,5.34,5.55,5.83,6.27,6.45,6.61,6.7,6.75,7.09,6.97
-,1997-03-21,None,5.41,5.59,5.88,6.29,6.46,6.61,6.7,6.74,7.08,6.96
-,1997-03-24,None,5.4,5.55,5.87,6.29,6.45,6.58,6.69,6.72,7.06,6.94
-,1997-03-25,None,5.44,5.6,5.91,6.33,6.48,6.63,6.72,6.75,7.07,6.95
-,1997-03-26,None,5.35,5.59,5.97,6.38,6.52,6.66,6.76,6.8,7.11,7.0
-,1997-03-27,None,5.37,5.6,6.02,6.45,6.61,6.76,6.88,6.9,7.2,7.09
-,1997-03-31,None,5.35,5.55,6.02,6.45,6.6,6.77,6.89,6.92,7.22,7.1
-,1997-04-01,None,5.32,5.53,6.0,6.42,6.58,6.74,6.87,6.9,7.21,7.09
-,1997-04-02,None,5.3,5.53,5.98,6.42,6.58,6.73,6.85,6.88,7.2,7.08
-,1997-04-03,None,5.27,5.52,5.95,6.4,6.55,6.72,6.84,6.86,7.19,7.08
-,1997-04-04,None,5.29,5.56,5.98,6.44,6.61,6.78,6.9,6.92,7.25,7.14
-,1997-04-07,None,5.26,5.55,5.97,6.41,6.57,6.73,6.84,6.87,7.2,7.08
-,1997-04-08,None,5.25,5.56,5.98,6.44,6.61,6.76,6.87,6.91,7.23,7.11
-,1997-04-09,None,5.24,5.59,5.98,6.44,6.6,6.77,6.88,6.91,7.22,7.11
-,1997-04-10,None,5.29,5.62,5.99,6.46,6.61,6.78,6.88,6.91,7.22,7.11
-,1997-04-11,None,5.31,5.66,6.04,6.53,6.69,6.85,6.95,6.98,7.29,7.17
-,1997-04-14,None,5.3,5.61,6.04,6.54,6.7,6.86,6.95,6.98,7.29,7.17
-,1997-04-15,None,5.31,5.62,5.99,6.45,6.62,6.76,6.87,6.88,7.21,7.1
-,1997-04-16,None,5.29,5.63,5.99,6.49,6.64,6.79,6.88,6.9,7.22,7.11
-,1997-04-17,None,5.29,5.64,5.96,6.44,6.6,6.75,6.84,6.86,7.18,7.07
-,1997-04-18,None,5.29,5.63,5.94,6.42,6.57,6.73,6.81,6.84,7.17,7.06
-,1997-04-21,None,5.36,5.61,5.97,6.46,6.61,6.76,6.85,6.87,7.2,7.09
-,1997-04-22,None,5.36,5.59,5.97,6.43,6.59,6.73,6.81,6.84,7.16,7.05
-,1997-04-23,None,5.37,5.62,6.0,6.47,6.63,6.78,6.86,6.89,7.2,7.09
-,1997-04-24,None,5.32,5.63,6.05,6.52,6.68,6.83,6.92,6.93,7.23,7.13
-,1997-04-25,None,5.31,5.65,6.08,6.54,6.7,6.83,6.92,6.94,7.25,7.14
-,1997-04-28,None,5.35,5.68,6.06,6.51,6.66,6.81,6.9,6.92,7.23,7.12
-,1997-04-29,None,5.34,5.53,5.92,6.34,6.49,6.64,6.75,6.77,7.09,6.99
-,1997-04-30,None,5.28,5.53,5.9,6.29,6.42,6.57,6.68,6.72,7.05,6.95
-,1997-05-01,None,5.24,5.55,5.89,6.27,6.41,6.55,6.65,6.69,7.02,6.93
-,1997-05-02,None,5.24,5.56,5.88,6.26,6.4,6.54,6.63,6.68,6.99,6.9
-,1997-05-05,None,5.22,5.57,5.88,6.28,6.41,6.54,6.63,6.67,6.99,6.9
-,1997-05-06,None,5.21,5.59,5.9,6.29,6.39,6.56,6.63,6.67,6.98,6.89
-,1997-05-07,None,5.22,5.57,5.95,6.36,6.51,6.63,6.72,6.76,7.05,6.96
-,1997-05-08,None,5.21,5.55,5.93,6.33,6.47,6.59,6.68,6.72,7.01,6.92
-,1997-05-09,None,5.19,5.48,5.86,6.24,6.4,6.51,6.62,6.67,6.97,6.89
-,1997-05-12,None,5.24,5.55,5.85,6.23,6.37,6.5,6.6,6.65,6.96,6.88
-,1997-05-13,None,5.24,5.55,5.88,6.3,6.44,6.6,6.67,6.71,7.01,6.92
-,1997-05-14,None,5.19,5.52,5.86,6.26,6.41,6.54,6.64,6.68,6.98,6.9
-,1997-05-15,None,5.13,5.54,5.84,6.25,6.39,6.52,6.61,6.67,6.96,6.88
-,1997-05-16,None,5.2,5.57,5.87,6.28,6.41,6.55,6.64,6.7,7.0,6.91
-,1997-05-19,None,5.38,5.62,5.89,6.28,6.42,6.57,6.66,6.71,7.0,6.92
-,1997-05-20,None,5.39,5.53,5.83,6.25,6.4,6.54,6.64,6.7,7.01,6.92
-,1997-05-21,None,5.12,5.5,5.81,6.25,6.4,6.57,6.67,6.74,7.06,6.97
-,1997-05-22,None,5.18,5.47,5.87,6.27,6.44,6.61,6.69,6.76,7.08,7.0
-,1997-05-23,None,5.18,5.46,5.85,6.25,6.41,6.59,6.68,6.74,7.07,6.99
-,1997-05-27,None,5.18,5.5,5.89,6.3,6.47,6.64,6.73,6.79,7.12,7.03
-,1997-05-28,None,5.18,5.48,5.91,6.34,6.48,6.65,6.74,6.8,7.11,7.03
-,1997-05-29,None,5.03,5.46,5.84,6.3,6.45,6.61,6.69,6.75,7.06,6.99
-,1997-05-30,None,4.96,5.46,5.78,6.22,6.37,6.51,6.61,6.67,6.99,6.92
-,1997-06-02,None,5.07,5.42,5.78,6.23,6.36,6.52,6.59,6.66,6.98,6.9
-,1997-06-03,None,5.05,5.4,5.77,6.2,6.33,6.49,6.56,6.63,6.94,6.88
-,1997-06-04,None,5.09,5.4,5.77,6.2,6.33,6.49,6.56,6.62,6.95,6.88
-,1997-06-05,None,5.11,5.41,5.76,6.2,6.33,6.49,6.57,6.62,6.95,6.88
-,1997-06-06,None,5.07,5.38,5.71,6.12,6.25,6.39,6.46,6.51,6.85,6.78
-,1997-06-09,None,5.06,5.4,5.75,6.15,6.31,6.44,6.51,6.55,6.9,6.83
-,1997-06-10,None,5.05,5.41,5.75,6.17,6.32,6.46,6.54,6.57,6.91,6.84
-,1997-06-11,None,4.98,5.4,5.75,6.19,6.32,6.45,6.52,6.56,6.9,6.83
-,1997-06-12,None,4.97,5.35,5.68,6.07,6.21,6.35,6.44,6.48,6.84,6.77
-,1997-06-13,None,5.0,5.34,5.65,6.03,6.18,6.3,6.39,6.43,6.79,6.73
-,1997-06-16,None,5.03,5.3,5.65,6.02,6.15,6.28,6.38,6.4,6.76,6.7
-,1997-06-17,None,5.05,5.31,5.66,6.05,6.18,6.31,6.39,6.43,6.78,6.72
-,1997-06-18,None,5.03,5.3,5.66,6.02,6.17,6.29,6.38,6.4,6.77,6.69
-,1997-06-19,None,5.08,5.31,5.65,6.04,6.17,6.29,6.38,6.4,6.76,6.68
-,1997-06-20,None,5.08,5.31,5.63,6.02,6.14,6.27,6.37,6.37,6.72,6.65
-,1997-06-23,None,5.06,5.27,5.66,6.04,6.17,6.3,6.37,6.4,6.76,6.69
-,1997-06-24,None,5.07,5.28,5.66,6.03,6.18,6.31,6.38,6.42,6.76,6.7
-,1997-06-25,None,5.07,5.26,5.67,6.05,6.19,6.34,6.44,6.45,6.8,6.74
-,1997-06-26,None,5.17,5.26,5.63,6.05,6.24,6.36,6.47,6.5,6.86,6.78
-,1997-06-27,None,5.15,5.26,5.62,6.03,6.2,6.35,6.43,6.46,6.82,6.75
-,1997-06-30,None,5.25,5.34,5.67,6.08,6.25,6.4,6.49,6.51,6.86,6.8
-,1997-07-01,None,5.18,5.31,5.64,6.02,6.19,6.33,6.42,6.45,6.8,6.74
-,1997-07-02,None,5.2,5.33,5.64,6.02,6.17,6.3,6.4,6.42,6.78,6.72
-,1997-07-03,None,5.14,5.26,5.57,5.93,6.07,6.2,6.29,6.31,6.67,6.63
-,1997-07-07,None,5.12,5.28,5.55,5.92,6.04,6.17,6.26,6.27,6.63,6.58
-,1997-07-08,None,5.12,5.3,5.55,5.92,6.05,6.17,6.26,6.27,6.63,6.59
-,1997-07-09,None,5.11,5.3,5.53,5.9,6.02,6.15,6.23,6.25,6.6,6.56
-,1997-07-10,None,5.15,5.32,5.53,5.91,6.02,6.15,6.24,6.26,6.61,6.56
-,1997-07-11,None,5.14,5.31,5.52,5.89,6.01,6.13,6.22,6.23,6.58,6.53
-,1997-07-14,None,5.22,5.33,5.56,5.94,6.05,6.16,6.24,6.26,6.61,6.55
-,1997-07-15,None,5.22,5.32,5.56,5.92,6.05,6.16,6.25,6.26,6.6,6.55
-,1997-07-16,None,5.17,5.32,5.51,5.87,5.99,6.11,6.18,6.2,6.54,6.48
-,1997-07-17,None,5.18,5.33,5.57,5.87,5.99,6.11,6.18,6.19,6.54,6.49
-,1997-07-18,None,5.24,5.36,5.59,5.91,6.02,6.16,6.23,6.24,6.58,6.52
-,1997-07-21,None,5.27,5.39,5.61,5.94,6.05,6.18,6.25,6.27,6.61,6.55
-,1997-07-22,None,5.18,5.36,5.52,5.9,5.94,6.07,6.13,6.15,6.5,6.43
-,1997-07-23,None,5.2,5.34,5.52,5.85,5.95,6.06,6.13,6.14,6.48,6.42
-,1997-07-24,None,5.23,5.35,5.52,5.87,5.95,6.06,6.13,6.16,6.49,6.43
-,1997-07-25,None,5.24,5.36,5.53,5.87,5.97,6.08,6.16,6.18,6.51,6.45
-,1997-07-28,None,5.24,5.37,5.52,5.86,5.96,6.06,6.14,6.16,6.49,6.43
-,1997-07-29,None,5.24,5.34,5.47,5.79,5.88,6.0,6.08,6.11,6.43,6.38
-,1997-07-30,None,5.24,5.34,5.46,5.76,5.85,5.95,6.03,6.05,6.39,6.33
-,1997-07-31,None,5.25,5.33,5.45,5.74,5.81,5.9,5.99,6.02,6.35,6.3
-,1997-08-01,None,5.28,5.4,5.52,5.89,5.99,6.08,6.17,6.2,6.52,6.46
-,1997-08-04,None,5.29,5.41,5.53,5.91,6.02,6.12,6.2,6.23,6.54,6.48
-,1997-08-05,None,5.29,5.43,5.55,5.93,6.04,6.13,6.22,6.23,6.55,6.49
-,1997-08-06,None,5.29,5.43,5.53,5.91,6.03,6.11,6.2,6.21,6.53,6.48
-,1997-08-07,None,5.3,5.45,5.54,5.93,6.05,6.14,6.24,6.24,6.58,6.51
-,1997-08-08,None,5.29,5.45,5.6,6.02,6.15,6.23,6.37,6.38,6.74,6.64
-,1997-08-11,None,5.31,5.45,5.63,5.99,6.13,6.2,6.35,6.36,6.72,6.64
-,1997-08-12,None,5.31,5.46,5.63,6.0,6.14,6.22,6.39,6.39,6.75,6.66
-,1997-08-13,None,5.32,5.43,5.6,5.95,6.09,6.19,6.36,6.36,6.72,6.64
-,1997-08-14,None,5.34,5.42,5.57,5.92,6.03,6.13,6.27,6.27,6.65,6.56
-,1997-08-15,None,5.29,5.38,5.53,5.87,6.0,6.1,6.27,6.27,6.65,6.57
-,1997-08-18,None,5.23,5.35,5.5,5.82,5.94,6.06,6.21,6.21,6.6,6.53
-,1997-08-19,None,5.25,5.35,5.51,5.85,5.97,6.07,6.21,6.21,6.59,6.51
-,1997-08-20,None,5.24,5.36,5.53,5.88,6.0,6.1,6.24,6.24,6.61,6.54
-,1997-08-21,None,5.27,5.37,5.57,5.95,6.05,6.15,6.3,6.3,6.68,6.6
-,1997-08-22,None,5.25,5.34,5.57,5.98,6.09,6.21,6.36,6.38,6.75,6.67
-,1997-08-25,None,5.28,5.39,5.6,6.01,6.12,6.25,6.38,6.39,6.75,6.67
-,1997-08-26,None,5.28,5.39,5.6,5.99,6.12,6.24,6.37,6.38,6.74,6.66
-,1997-08-27,None,5.28,5.4,5.6,6.01,6.13,6.23,6.37,6.38,6.74,6.66
-,1997-08-28,None,5.24,5.38,5.56,5.94,6.06,6.18,6.29,6.3,6.64,6.57
-,1997-08-29,None,5.24,5.39,5.59,5.97,6.1,6.22,6.33,6.34,6.69,6.61
-,1997-09-02,None,5.21,5.39,5.57,5.94,6.06,6.2,6.3,6.31,6.65,6.58
-,1997-09-03,None,5.14,5.38,5.57,5.96,6.07,6.21,6.33,6.33,6.67,6.6
-,1997-09-04,None,5.14,5.38,5.6,5.98,6.09,6.22,6.33,6.33,6.67,6.61
-,1997-09-05,None,5.17,5.38,5.58,5.98,6.09,6.24,6.36,6.37,6.72,6.65
-,1997-09-08,None,5.16,5.37,5.61,5.98,6.09,6.23,6.33,6.33,6.68,6.62
-,1997-09-09,None,5.16,5.35,5.6,5.98,6.09,6.24,6.33,6.34,6.7,6.63
-,1997-09-10,None,5.11,5.35,5.61,6.0,6.1,6.26,6.36,6.37,6.71,6.66
-,1997-09-11,None,5.13,5.36,5.59,6.0,6.11,6.27,6.38,6.39,6.75,6.68
-,1997-09-12,None,5.1,5.32,5.54,5.93,6.03,6.17,6.28,6.29,6.66,6.59
-,1997-09-15,None,5.08,5.31,5.54,5.93,6.02,6.17,6.28,6.28,6.65,6.58
-,1997-09-16,None,5.09,5.28,5.47,5.81,5.88,6.0,6.09,6.11,6.47,6.41
-,1997-09-17,None,5.1,5.29,5.46,5.79,5.88,5.99,6.08,6.1,6.45,6.39
-,1997-09-18,None,5.1,5.27,5.47,5.81,5.9,6.02,6.1,6.11,6.46,6.4
-,1997-09-19,None,5.06,5.27,5.48,5.81,5.89,6.01,6.08,6.09,6.44,6.38
-,1997-09-22,None,5.02,5.22,5.46,5.79,5.86,5.99,6.05,6.06,6.41,6.35
-,1997-09-23,None,5.02,5.21,5.48,5.8,5.89,6.02,6.09,6.1,6.44,6.38
-,1997-09-24,None,4.94,5.15,5.46,5.78,5.86,5.97,6.04,6.04,6.38,6.32
-,1997-09-25,None,4.93,5.17,5.5,5.85,5.93,6.04,6.13,6.13,6.47,6.4
-,1997-09-26,None,4.99,5.18,5.47,5.8,5.89,5.99,6.08,6.08,6.43,6.37
-,1997-09-29,None,5.07,5.3,5.47,5.8,5.88,5.99,6.09,6.1,6.44,6.39
-,1997-09-30,None,5.06,5.28,5.47,5.8,5.88,6.0,6.11,6.12,6.47,6.41
-,1997-10-01,None,5.1,5.27,5.44,5.75,5.83,5.93,6.05,6.04,6.38,6.33
-,1997-10-02,None,5.07,5.25,5.44,5.73,5.8,5.91,6.02,6.01,6.36,6.31
-,1997-10-03,None,5.03,5.22,5.42,5.72,5.79,5.89,6.02,6.01,6.35,6.3
-,1997-10-06,None,5.08,5.22,5.4,5.68,5.75,5.85,5.97,5.96,6.31,6.27
-,1997-10-07,None,5.06,5.19,5.38,5.67,5.73,5.82,5.95,5.94,6.29,6.24
-,1997-10-08,None,5.09,5.25,5.46,5.79,5.85,5.96,6.09,6.08,6.41,6.37
-,1997-10-09,None,5.14,5.3,5.48,5.8,5.86,5.98,6.1,6.09,6.43,6.38
-,1997-10-10,None,5.14,5.32,5.54,5.86,5.92,6.03,6.17,6.15,6.49,6.44
-,1997-10-14,None,5.08,5.34,5.5,5.81,5.87,5.97,6.09,6.07,6.42,6.36
-,1997-10-15,None,5.06,5.34,5.52,5.84,5.9,6.0,6.13,6.1,6.45,6.39
-,1997-10-16,None,5.07,5.32,5.51,5.84,5.9,6.0,6.12,6.09,6.45,6.39
-,1997-10-17,None,5.06,5.33,5.56,5.91,5.98,6.08,6.19,6.17,6.51,6.44
-,1997-10-20,None,5.09,5.36,5.56,5.9,5.97,6.07,6.18,6.15,6.49,6.42
-,1997-10-21,None,5.07,5.38,5.57,5.92,5.98,6.07,6.18,6.14,6.49,6.42
-,1997-10-22,None,5.16,5.41,5.58,5.91,5.97,6.06,6.17,6.12,6.48,6.41
-,1997-10-23,None,5.13,5.35,5.48,5.79,5.86,5.95,6.07,6.04,6.39,6.33
-,1997-10-24,None,5.15,5.35,5.46,5.79,5.86,5.94,6.05,6.01,6.35,6.3
-,1997-10-27,None,5.08,5.22,5.29,5.62,5.7,5.79,5.94,5.91,6.29,6.24
-,1997-10-28,None,5.25,5.33,5.41,5.74,5.8,5.89,6.0,5.98,6.33,6.29
-,1997-10-29,None,5.19,5.26,5.35,5.67,5.74,5.78,5.95,5.91,6.28,6.23
-,1997-10-30,None,5.17,5.25,5.33,5.61,5.7,5.73,5.88,5.84,6.23,6.17
-,1997-10-31,None,5.21,5.32,5.36,5.63,5.7,5.72,5.87,5.84,6.21,6.15
-,1997-11-03,None,5.26,5.35,5.44,5.69,5.77,5.79,5.94,5.91,6.27,6.21
-,1997-11-04,None,5.25,5.35,5.46,5.73,5.77,5.83,5.98,5.95,6.3,6.25
-,1997-11-05,None,5.27,5.32,5.45,5.73,5.78,5.84,5.97,5.95,6.3,6.24
-,1997-11-06,None,5.31,5.31,5.42,5.7,5.76,5.79,5.92,5.9,6.25,6.15
-,1997-11-07,None,5.31,5.33,5.42,5.71,5.77,5.81,5.92,5.9,6.25,6.14
-,1997-11-10,None,5.32,5.39,5.46,5.73,5.78,5.82,5.94,5.91,6.25,6.15
-,1997-11-12,None,5.3,5.37,5.43,5.7,5.76,5.81,5.92,5.89,6.23,6.13
-,1997-11-13,None,5.27,5.37,5.42,5.7,5.75,5.79,5.9,5.87,6.21,6.11
-,1997-11-14,None,5.27,5.36,5.43,5.7,5.74,5.8,5.9,5.86,6.19,6.09
-,1997-11-17,None,5.31,5.38,5.45,5.7,5.74,5.79,5.88,5.85,6.18,6.07
-,1997-11-18,None,5.31,5.39,5.48,5.71,5.74,5.8,5.88,5.85,6.18,6.07
-,1997-11-19,None,5.28,5.38,5.47,5.7,5.72,5.77,5.84,5.82,6.12,6.03
-,1997-11-20,None,5.28,5.39,5.49,5.73,5.74,5.8,5.87,5.84,6.14,6.05
-,1997-11-21,None,5.25,5.35,5.43,5.68,5.7,5.77,5.84,5.82,6.13,6.04
-,1997-11-24,None,5.29,5.43,5.47,5.71,5.75,5.81,5.88,5.86,6.17,6.08
-,1997-11-25,None,5.3,5.46,5.49,5.71,5.75,5.8,5.87,5.85,6.15,6.06
-,1997-11-26,None,5.26,5.42,5.5,5.74,5.77,5.82,5.89,5.86,6.14,6.06
-,1997-11-28,None,5.22,5.43,5.52,5.76,5.8,5.83,5.89,5.86,6.12,6.04
-,1997-12-01,None,5.27,5.42,5.56,5.78,5.8,5.83,5.88,5.86,6.13,6.04
-,1997-12-02,None,5.26,5.41,5.56,5.78,5.8,5.83,5.88,5.86,6.11,6.03
-,1997-12-03,None,5.26,5.4,5.53,5.74,5.77,5.8,5.85,5.83,6.1,6.02
-,1997-12-04,None,5.27,5.4,5.49,5.71,5.75,5.78,5.86,5.84,6.11,6.04
-,1997-12-05,None,5.3,5.49,5.56,5.8,5.83,5.87,5.94,5.92,6.16,6.09
-,1997-12-08,None,5.29,5.55,5.63,5.85,5.87,5.92,5.98,5.96,6.21,6.14
-,1997-12-09,None,5.27,5.5,5.59,5.81,5.86,5.9,5.97,5.95,6.21,6.14
-,1997-12-10,None,5.21,5.44,5.51,5.75,5.79,5.85,5.92,5.9,6.17,6.1
-,1997-12-11,None,5.2,5.39,5.48,5.68,5.72,5.77,5.84,5.82,6.11,6.02
-,1997-12-12,None,5.18,5.35,5.42,5.63,5.67,5.71,5.76,5.74,6.03,5.94
-,1997-12-15,None,5.23,5.41,5.47,5.68,5.7,5.74,5.8,5.78,6.06,5.97
-,1997-12-16,None,5.23,5.4,5.47,5.68,5.69,5.74,5.8,5.77,6.05,5.96
-,1997-12-17,None,5.25,5.42,5.5,5.7,5.72,5.77,5.82,5.81,6.08,5.99
-,1997-12-18,None,5.24,5.42,5.49,5.68,5.69,5.74,5.78,5.76,6.03,5.94
-,1997-12-19,None,5.33,5.46,5.5,5.66,5.67,5.7,5.74,5.72,6.0,5.92
-,1997-12-22,None,5.46,5.53,5.55,5.69,5.7,5.71,5.73,5.72,5.97,5.89
-,1997-12-23,None,5.46,5.53,5.55,5.69,5.7,5.71,5.74,5.73,5.98,5.9
-,1997-12-24,None,5.38,5.49,5.54,5.67,5.71,5.72,5.76,5.76,6.0,5.91
-,1997-12-26,None,5.35,5.47,5.54,5.69,5.72,5.72,5.75,5.75,5.99,5.9
-,1997-12-29,None,5.45,5.51,5.55,5.69,5.73,5.73,5.76,5.76,6.01,5.93
-,1997-12-30,None,5.45,5.49,5.55,5.71,5.75,5.76,5.82,5.8,6.06,5.98
-,1997-12-31,None,5.36,5.45,5.51,5.66,5.68,5.71,5.77,5.75,6.02,5.93
-,1998-01-02,None,5.32,5.4,5.46,5.59,5.62,5.63,5.68,5.67,5.94,5.86
-,1998-01-05,None,5.23,5.32,5.35,5.47,5.47,5.46,5.52,5.52,5.82,5.74
-,1998-01-06,None,5.22,5.3,5.3,5.39,5.42,5.41,5.49,5.49,5.8,5.73
-,1998-01-07,None,5.23,5.3,5.31,5.42,5.45,5.45,5.55,5.55,5.88,5.8
-,1998-01-08,None,5.13,5.2,5.2,5.31,5.33,5.34,5.46,5.49,5.82,5.75
-,1998-01-09,None,5.05,5.11,5.08,5.17,5.2,5.22,5.37,5.4,5.77,5.71
-,1998-01-12,None,5.12,5.13,5.13,5.2,5.21,5.24,5.38,5.39,5.76,5.7
-,1998-01-13,None,5.17,5.16,5.17,5.25,5.25,5.28,5.42,5.41,5.76,5.71
-,1998-01-14,None,5.18,5.17,5.19,5.29,5.3,5.33,5.45,5.45,5.79,5.74
-,1998-01-15,None,5.13,5.15,5.19,5.29,5.29,5.34,5.46,5.48,5.81,5.74
-,1998-01-16,None,5.15,5.2,5.24,5.35,5.35,5.42,5.53,5.54,5.87,5.81
-,1998-01-20,None,5.14,5.2,5.24,5.37,5.36,5.45,5.56,5.57,5.89,5.83
-,1998-01-21,None,5.13,5.21,5.22,5.33,5.34,5.41,5.52,5.54,5.87,5.81
-,1998-01-22,None,5.13,5.2,5.18,5.3,5.31,5.39,5.53,5.56,5.91,5.85
-,1998-01-23,None,5.17,5.26,5.25,5.42,5.44,5.53,5.67,5.7,6.04,5.98
-,1998-01-26,None,5.22,5.23,5.25,5.39,5.42,5.49,5.61,5.63,5.96,5.9
-,1998-01-27,None,5.24,5.3,5.32,5.46,5.5,5.57,5.68,5.7,6.02,5.95
-,1998-01-28,None,5.23,5.3,5.33,5.46,5.5,5.54,5.67,5.69,6.02,5.94
-,1998-01-29,None,5.2,5.23,5.24,5.36,5.39,5.43,5.55,5.58,5.92,5.85
-,1998-01-30,None,5.19,5.24,5.24,5.32,5.35,5.39,5.51,5.53,5.88,5.82
-,1998-02-02,None,5.26,5.3,5.26,5.36,5.38,5.43,5.55,5.57,5.93,5.87
-,1998-02-03,None,5.26,5.29,5.25,5.34,5.36,5.41,5.56,5.56,5.93,5.86
-,1998-02-04,None,5.11,5.22,5.24,5.32,5.35,5.41,5.55,5.57,5.94,5.87
-,1998-02-05,None,5.14,5.22,5.26,5.36,5.39,5.46,5.61,5.62,6.0,5.92
-,1998-02-06,None,5.17,5.25,5.27,5.38,5.43,5.48,5.61,5.62,5.99,5.92
-,1998-02-09,None,5.22,5.25,5.28,5.41,5.46,5.51,5.65,5.65,6.02,5.94
-,1998-02-10,None,5.21,5.24,5.29,5.41,5.43,5.49,5.63,5.64,6.0,5.93
-,1998-02-11,None,5.22,5.23,5.29,5.39,5.4,5.46,5.57,5.53,5.92,5.86
-,1998-02-12,None,5.22,5.23,5.28,5.39,5.4,5.46,5.56,5.52,5.94,5.87
-,1998-02-13,None,5.22,5.24,5.26,5.36,5.36,5.44,5.53,5.49,5.92,5.85
-,1998-02-17,None,5.2,5.29,5.25,5.34,5.34,5.41,5.5,5.44,5.86,5.8
-,1998-02-18,None,5.2,5.3,5.27,5.37,5.38,5.44,5.54,5.49,5.9,5.84
-,1998-02-19,None,5.21,5.31,5.28,5.39,5.4,5.47,5.57,5.51,5.91,5.85
-,1998-02-20,None,5.21,5.3,5.3,5.41,5.41,5.49,5.58,5.54,5.93,5.87
-,1998-02-23,None,5.28,5.26,5.35,5.46,5.47,5.53,5.62,5.58,5.97,5.91
-,1998-02-24,None,5.27,5.32,5.47,5.57,5.6,5.66,5.75,5.69,6.04,5.97
-,1998-02-25,None,5.31,5.31,5.43,5.55,5.56,5.6,5.7,5.63,5.99,5.93
-,1998-02-26,None,5.34,5.32,5.42,5.58,5.58,5.62,5.71,5.65,6.01,5.95
-,1998-02-27,None,5.32,5.33,5.41,5.55,5.55,5.59,5.67,5.62,5.99,5.92
-,1998-03-02,None,5.26,5.35,5.43,5.6,5.61,5.67,5.77,5.72,6.09,6.03
-,1998-03-03,None,5.23,5.34,5.46,5.64,5.64,5.72,5.82,5.77,6.14,6.07
-,1998-03-04,None,5.19,5.29,5.43,5.63,5.64,5.71,5.81,5.76,6.11,6.05
-,1998-03-05,None,5.18,5.26,5.42,5.62,5.63,5.71,5.84,5.78,6.14,6.07
-,1998-03-06,None,5.15,5.24,5.4,5.58,5.59,5.65,5.78,5.73,6.09,6.02
-,1998-03-09,None,5.11,5.24,5.39,5.57,5.56,5.61,5.74,5.67,6.04,5.97
-,1998-03-10,None,5.09,5.23,5.38,5.55,5.56,5.62,5.73,5.67,6.03,5.97
-,1998-03-11,None,5.09,5.22,5.37,5.53,5.54,5.57,5.69,5.63,6.0,5.93
-,1998-03-12,None,5.08,5.19,5.34,5.5,5.49,5.52,5.62,5.56,5.94,5.87
-,1998-03-13,None,5.09,5.21,5.35,5.5,5.49,5.54,5.65,5.58,5.95,5.89
-,1998-03-16,None,5.12,5.24,5.33,5.47,5.47,5.52,5.6,5.54,5.92,5.86
-,1998-03-17,None,5.14,5.25,5.36,5.5,5.48,5.53,5.63,5.56,5.95,5.89
-,1998-03-18,None,5.17,5.27,5.36,5.52,5.51,5.55,5.65,5.58,5.97,5.91
-,1998-03-19,None,5.18,5.28,5.37,5.52,5.52,5.56,5.65,5.58,5.97,5.9
-,1998-03-20,None,5.19,5.27,5.36,5.52,5.5,5.56,5.64,5.57,5.95,5.89
-,1998-03-23,None,5.17,5.21,5.36,5.52,5.52,5.56,5.63,5.57,5.95,5.88
-,1998-03-24,None,5.17,5.21,5.37,5.5,5.52,5.57,5.63,5.58,5.95,5.88
-,1998-03-25,None,5.18,5.19,5.4,5.58,5.59,5.62,5.7,5.64,6.0,5.94
-,1998-03-26,None,5.22,5.2,5.41,5.62,5.65,5.66,5.74,5.68,6.02,5.96
-,1998-03-27,None,5.21,5.2,5.43,5.63,5.66,5.67,5.75,5.68,6.03,5.96
-,1998-03-30,None,5.18,5.3,5.44,5.65,5.69,5.7,5.79,5.72,6.06,5.98
-,1998-03-31,None,5.16,5.27,5.41,5.6,5.61,5.64,5.74,5.67,6.02,5.94
-,1998-04-01,None,5.12,5.24,5.37,5.55,5.58,5.59,5.68,5.62,5.98,5.9
-,1998-04-02,None,5.1,5.22,5.35,5.52,5.53,5.54,5.64,5.56,5.92,5.85
-,1998-04-03,None,5.08,5.17,5.25,5.42,5.42,5.44,5.54,5.47,5.85,5.78
-,1998-04-06,None,5.1,5.22,5.3,5.45,5.47,5.49,5.58,5.51,5.89,5.82
-,1998-04-07,None,5.07,5.2,5.28,5.45,5.48,5.5,5.59,5.53,5.91,5.84
-,1998-04-08,None,5.06,5.21,5.3,5.49,5.51,5.54,5.64,5.58,5.96,5.9
-,1998-04-09,None,5.07,5.22,5.33,5.5,5.52,5.56,5.64,5.59,5.95,5.88
-,1998-04-13,None,5.19,5.35,5.42,5.59,5.61,5.64,5.72,5.66,6.01,5.94
-,1998-04-14,None,5.16,5.32,5.4,5.57,5.58,5.6,5.69,5.63,5.98,5.91
-,1998-04-15,None,5.08,5.3,5.38,5.55,5.56,5.59,5.66,5.6,5.96,5.89
-,1998-04-16,None,5.04,5.28,5.37,5.53,5.53,5.57,5.64,5.59,5.94,5.87
-,1998-04-17,None,5.05,5.26,5.36,5.54,5.53,5.57,5.64,5.59,5.95,5.88
-,1998-04-20,None,5.08,5.25,5.39,5.57,5.57,5.61,5.7,5.65,6.0,5.92
-,1998-04-21,None,5.07,5.25,5.41,5.6,5.62,5.66,5.73,5.68,6.03,5.96
-,1998-04-22,None,5.09,5.25,5.41,5.6,5.62,5.66,5.73,5.68,6.04,5.96
-,1998-04-23,None,5.09,5.27,5.4,5.61,5.62,5.66,5.74,5.69,6.05,5.98
-,1998-04-24,None,5.08,5.26,5.39,5.61,5.62,5.65,5.72,5.67,6.02,5.95
-,1998-04-27,None,5.08,5.35,5.48,5.71,5.73,5.77,5.86,5.8,6.15,6.07
-,1998-04-28,None,5.06,5.34,5.48,5.69,5.73,5.78,5.86,5.8,6.15,6.07
-,1998-04-29,None,5.07,5.32,5.49,5.71,5.75,5.78,5.87,5.81,6.15,6.08
-,1998-04-30,None,5.0,5.24,5.4,5.59,5.62,5.65,5.74,5.68,6.04,5.95
-,1998-05-01,None,5.02,5.27,5.41,5.59,5.62,5.63,5.72,5.67,6.02,5.94
-,1998-05-04,None,5.1,5.32,5.42,5.59,5.62,5.63,5.73,5.67,6.02,5.94
-,1998-05-05,None,5.11,5.32,5.45,5.61,5.64,5.66,5.76,5.7,6.05,5.98
-,1998-05-06,None,5.11,5.32,5.41,5.56,5.59,5.6,5.72,5.67,6.02,5.94
-,1998-05-07,None,5.12,5.32,5.42,5.56,5.6,5.6,5.72,5.67,6.02,5.95
-,1998-05-08,None,5.14,5.35,5.44,5.61,5.64,5.65,5.75,5.71,6.05,5.98
-,1998-05-11,None,5.14,5.39,5.48,5.66,5.7,5.72,5.82,5.79,6.12,6.04
-,1998-05-12,None,5.12,5.36,5.44,5.59,5.6,5.65,5.74,5.7,6.04,5.96
-,1998-05-13,None,5.12,5.38,5.44,5.59,5.6,5.63,5.72,5.64,6.02,5.95
-,1998-05-14,None,5.18,5.38,5.48,5.63,5.64,5.66,5.76,5.67,6.05,5.98
-,1998-05-15,None,5.18,5.38,5.46,5.63,5.64,5.67,5.76,5.68,6.05,5.97
-,1998-05-18,None,5.2,5.37,5.45,5.59,5.59,5.63,5.72,5.64,5.99,5.92
-,1998-05-19,None,5.23,5.37,5.45,5.59,5.6,5.63,5.73,5.65,6.02,5.94
-,1998-05-20,None,5.21,5.36,5.42,5.57,5.57,5.6,5.68,5.61,5.98,5.89
-,1998-05-21,None,5.24,5.43,5.47,5.63,5.63,5.66,5.73,5.65,6.01,5.93
-,1998-05-22,None,5.22,5.4,5.45,5.63,5.63,5.65,5.72,5.64,5.99,5.9
-,1998-05-26,None,5.17,5.38,5.45,5.61,5.59,5.6,5.67,5.59,5.94,5.85
-,1998-05-27,None,5.09,5.35,5.41,5.53,5.54,5.57,5.64,5.56,5.93,5.83
-,1998-05-28,None,5.07,5.35,5.43,5.57,5.57,5.56,5.65,5.58,5.93,5.83
-,1998-05-29,None,5.03,5.33,5.42,5.53,5.54,5.56,5.63,5.56,5.9,5.81
-,1998-06-01,None,5.08,5.3,5.4,5.52,5.51,5.53,5.59,5.53,5.87,5.78
-,1998-06-02,None,5.08,5.32,5.41,5.53,5.53,5.56,5.62,5.56,5.89,5.8
-,1998-06-03,None,5.13,5.32,5.42,5.55,5.56,5.57,5.63,5.57,5.89,5.8
-,1998-06-04,None,5.12,5.33,5.43,5.58,5.58,5.6,5.65,5.59,5.91,5.82
-,1998-06-05,None,5.12,5.34,5.45,5.58,5.59,5.6,5.63,5.58,5.89,5.79
-,1998-06-08,None,5.16,5.38,5.46,5.58,5.59,5.6,5.63,5.58,5.89,5.79
-,1998-06-09,None,5.17,5.4,5.46,5.6,5.6,5.61,5.64,5.59,5.89,5.79
-,1998-06-10,None,5.14,5.38,5.44,5.55,5.54,5.55,5.58,5.51,5.8,5.7
-,1998-06-11,None,5.11,5.32,5.37,5.45,5.44,5.46,5.49,5.44,5.74,5.65
-,1998-06-12,None,5.13,5.31,5.35,5.43,5.43,5.43,5.48,5.43,5.75,5.66
-,1998-06-15,None,5.16,5.29,5.33,5.43,5.41,5.42,5.45,5.38,5.7,5.61
-,1998-06-16,None,5.2,5.32,5.39,5.5,5.47,5.49,5.52,5.45,5.75,5.65
-,1998-06-17,None,5.23,5.36,5.44,5.55,5.54,5.57,5.61,5.54,5.84,5.74
-,1998-06-18,None,5.19,5.34,5.42,5.53,5.53,5.55,5.58,5.5,5.8,5.7
-,1998-06-19,None,5.17,5.32,5.4,5.52,5.5,5.52,5.54,5.47,5.78,5.67
-,1998-06-22,None,5.11,5.34,5.41,5.52,5.5,5.52,5.54,5.46,5.77,5.66
-,1998-06-23,None,5.1,5.34,5.41,5.49,5.51,5.51,5.53,5.45,5.74,5.64
-,1998-06-24,None,5.04,5.31,5.41,5.49,5.51,5.48,5.54,5.46,5.76,5.66
-,1998-06-25,None,5.02,5.3,5.41,5.53,5.53,5.5,5.54,5.46,5.76,5.66
-,1998-06-26,None,5.01,5.29,5.4,5.51,5.53,5.49,5.53,5.46,5.74,5.64
-,1998-06-29,None,5.16,5.27,5.4,5.51,5.52,5.5,5.55,5.47,5.75,5.65
-,1998-06-30,None,5.1,5.24,5.38,5.49,5.49,5.47,5.52,5.44,5.73,5.62
-,1998-07-01,None,5.09,5.22,5.37,5.46,5.47,5.43,5.5,5.44,5.73,5.63
-,1998-07-02,None,5.07,5.17,5.35,5.44,5.46,5.43,5.47,5.42,5.7,5.6
-,1998-07-06,None,5.09,5.23,5.34,5.43,5.43,5.4,5.45,5.39,5.68,5.57
-,1998-07-07,None,5.08,5.24,5.35,5.44,5.46,5.43,5.48,5.42,5.7,5.6
-,1998-07-08,None,5.09,5.25,5.34,5.44,5.46,5.43,5.49,5.43,5.73,5.63
-,1998-07-09,None,5.07,5.23,5.33,5.43,5.42,5.4,5.46,5.41,5.71,5.6
-,1998-07-10,None,5.06,5.22,5.33,5.41,5.42,5.4,5.47,5.42,5.73,5.63
-,1998-07-13,None,5.13,5.23,5.35,5.44,5.46,5.45,5.52,5.46,5.8,5.68
-,1998-07-14,None,5.16,5.24,5.36,5.46,5.48,5.47,5.54,5.49,5.82,5.72
-,1998-07-15,None,5.14,5.22,5.35,5.46,5.47,5.46,5.53,5.48,5.82,5.7
-,1998-07-16,None,5.17,5.24,5.38,5.46,5.49,5.48,5.56,5.5,5.83,5.72
-,1998-07-17,None,5.14,5.24,5.37,5.46,5.48,5.49,5.57,5.51,5.85,5.75
-,1998-07-20,None,5.09,5.26,5.37,5.46,5.47,5.47,5.53,5.48,5.83,5.71
-,1998-07-21,None,5.09,5.25,5.37,5.46,5.47,5.46,5.52,5.45,5.78,5.67
-,1998-07-22,None,5.07,5.24,5.37,5.48,5.48,5.47,5.52,5.46,5.79,5.68
-,1998-07-23,None,5.09,5.24,5.35,5.46,5.47,5.46,5.52,5.45,5.77,5.66
-,1998-07-24,None,5.08,5.24,5.36,5.48,5.47,5.48,5.52,5.45,5.79,5.68
-,1998-07-27,None,5.06,5.22,5.36,5.48,5.47,5.49,5.54,5.47,5.81,5.7
-,1998-07-28,None,5.07,5.2,5.35,5.46,5.47,5.49,5.56,5.5,5.84,5.74
-,1998-07-29,None,5.07,5.21,5.37,5.49,5.49,5.52,5.59,5.52,5.87,5.77
-,1998-07-30,None,5.07,5.21,5.38,5.49,5.49,5.52,5.56,5.5,5.82,5.73
-,1998-07-31,None,5.1,5.21,5.38,5.49,5.48,5.52,5.56,5.5,5.81,5.72
-,1998-08-03,None,5.13,5.25,5.37,5.46,5.44,5.46,5.51,5.46,5.75,5.67
-,1998-08-04,None,5.1,5.24,5.33,5.43,5.42,5.44,5.49,5.43,5.74,5.65
-,1998-08-05,None,5.08,5.21,5.3,5.39,5.38,5.43,5.48,5.43,5.74,5.66
-,1998-08-06,None,5.03,5.2,5.3,5.39,5.38,5.43,5.49,5.44,5.76,5.67
-,1998-08-07,None,4.99,5.16,5.24,5.34,5.33,5.39,5.44,5.4,5.72,5.63
-,1998-08-10,None,5.07,5.15,5.23,5.34,5.35,5.39,5.44,5.41,5.71,5.63
-,1998-08-11,None,5.03,5.13,5.2,5.31,5.3,5.33,5.4,5.37,5.68,5.6
-,1998-08-12,None,5.02,5.14,5.21,5.32,5.29,5.34,5.43,5.4,5.7,5.62
-,1998-08-13,None,5.04,5.17,5.26,5.37,5.32,5.38,5.46,5.44,5.73,5.6
-,1998-08-14,None,5.03,5.13,5.25,5.34,5.3,5.34,5.42,5.4,5.67,5.55
-,1998-08-17,None,5.07,5.19,5.24,5.34,5.27,5.33,5.41,5.4,5.69,5.56
-,1998-08-18,None,5.06,5.2,5.26,5.36,5.3,5.35,5.42,5.41,5.7,5.56
-,1998-08-19,None,5.07,5.19,5.25,5.34,5.33,5.35,5.42,5.42,5.71,5.56
-,1998-08-20,None,5.04,5.17,5.24,5.32,5.3,5.32,5.39,5.38,5.66,5.52
-,1998-08-21,None,5.01,5.12,5.19,5.25,5.23,5.24,5.33,5.32,5.62,5.46
-,1998-08-24,None,5.08,5.15,5.18,5.22,5.18,5.19,5.3,5.3,5.62,5.48
-,1998-08-25,None,5.09,5.15,5.17,5.18,5.14,5.13,5.24,5.25,5.59,5.44
-,1998-08-26,None,5.06,5.13,5.16,5.12,5.09,5.11,5.23,5.26,5.58,5.44
-,1998-08-27,None,4.99,5.07,5.02,4.98,4.93,4.97,5.11,5.12,5.53,5.38
-,1998-08-28,None,4.91,5.01,4.96,4.93,4.89,4.94,5.09,5.09,5.51,5.37
-,1998-08-31,None,4.96,5.03,4.95,4.91,4.85,4.91,5.03,5.05,5.45,5.3
-,1998-09-01,None,4.92,4.97,4.87,4.86,4.83,4.91,5.06,5.05,5.49,5.34
-,1998-09-02,None,4.91,4.99,4.91,4.96,4.88,4.96,5.08,5.1,5.5,5.34
-,1998-09-03,None,4.83,4.97,4.9,4.91,4.82,4.91,5.02,5.03,5.46,5.31
-,1998-09-04,None,4.86,4.99,4.91,4.91,4.84,4.9,5.01,5.02,5.44,5.29
-,1998-09-08,None,4.94,4.99,4.91,4.91,4.81,4.89,5.03,5.04,5.5,5.34
-,1998-09-09,None,4.88,4.92,4.81,4.79,4.7,4.79,4.92,4.95,5.43,5.28
-,1998-09-10,None,4.78,4.76,4.6,4.57,4.51,4.55,4.72,4.76,5.33,5.18
-,1998-09-11,None,4.87,4.88,4.73,4.68,4.65,4.65,4.81,4.85,5.37,5.23
-,1998-09-14,None,4.83,4.94,4.77,4.72,4.65,4.65,4.82,4.87,5.39,5.23
-,1998-09-15,None,4.79,4.9,4.77,4.73,4.69,4.68,4.84,4.9,5.41,5.25
-,1998-09-16,None,4.74,4.89,4.78,4.75,4.71,4.69,4.82,4.88,5.38,5.23
-,1998-09-17,None,4.7,4.83,4.76,4.7,4.63,4.6,4.74,4.8,5.37,5.18
-,1998-09-18,None,4.63,4.79,4.7,4.61,4.56,4.5,4.64,4.7,5.35,5.15
-,1998-09-21,None,4.82,4.86,4.71,4.63,4.58,4.51,4.64,4.69,5.35,5.12
-,1998-09-22,None,4.81,4.87,4.72,4.66,4.62,4.57,4.69,4.73,5.36,5.16
-,1998-09-23,None,4.67,4.68,4.6,4.52,4.52,4.48,4.64,4.69,5.34,5.16
-,1998-09-24,None,4.55,4.55,4.52,4.43,4.43,4.43,4.56,4.64,5.34,5.15
-,1998-09-25,None,4.52,4.5,4.49,4.43,4.41,4.4,4.53,4.6,5.3,5.13
-,1998-09-28,None,4.56,4.61,4.53,4.45,4.42,4.4,4.53,4.61,5.33,5.15
-,1998-09-29,None,4.54,4.64,4.53,4.47,4.41,4.4,4.52,4.59,5.29,5.1
-,1998-09-30,None,4.37,4.49,4.41,4.3,4.26,4.23,4.38,4.44,5.17,4.98
-,1998-10-01,None,4.23,4.36,4.28,4.17,4.1,4.1,4.26,4.33,5.09,4.9
-,1998-10-02,None,4.22,4.37,4.29,4.17,4.13,4.08,4.23,4.31,5.05,4.85
-,1998-10-05,None,4.23,4.34,4.18,4.04,4.02,3.95,4.13,4.16,4.93,4.7
-,1998-10-06,None,4.18,4.37,4.22,4.1,4.1,4.05,4.22,4.24,5.0,4.75
-,1998-10-07,None,4.15,4.32,4.23,4.12,4.13,4.13,4.34,4.34,5.09,4.83
-,1998-10-08,None,3.89,4.12,4.11,4.1,4.24,4.29,4.57,4.56,5.29,4.99
-,1998-10-09,None,3.88,4.05,4.16,4.19,4.39,4.46,4.78,4.77,5.5,5.13
-,1998-10-13,None,3.99,4.22,4.25,4.13,4.33,4.37,4.74,4.73,5.49,5.1
-,1998-10-14,None,4.02,4.2,4.19,4.08,4.25,4.23,4.58,4.58,5.38,5.0
-,1998-10-15,None,4.15,4.27,4.25,4.13,4.27,4.23,4.56,4.58,5.4,5.02
-,1998-10-16,None,3.65,3.85,3.86,3.86,4.04,4.04,4.41,4.44,5.3,4.96
-,1998-10-19,None,3.94,3.99,3.92,3.9,4.04,4.06,4.38,4.47,5.32,4.98
-,1998-10-20,None,3.95,4.04,3.98,3.98,4.12,4.14,4.46,4.57,5.42,5.06
-,1998-10-21,None,4.0,4.08,4.02,4.12,4.17,4.17,4.49,4.59,5.41,5.08
-,1998-10-22,None,3.98,4.12,4.04,4.16,4.18,4.19,4.51,4.62,5.46,5.13
-,1998-10-23,None,3.97,4.15,4.07,4.2,4.24,4.28,4.6,4.7,5.47,5.16
-,1998-10-26,None,4.06,4.21,4.13,4.23,4.3,4.32,4.58,4.73,5.38,5.13
-,1998-10-27,None,4.06,4.14,4.04,4.12,4.2,4.23,4.48,4.63,5.33,5.08
-,1998-10-28,None,4.28,4.26,4.07,4.01,4.15,4.18,4.43,4.6,5.34,5.13
-,1998-10-29,None,4.32,4.3,4.08,4.0,4.12,4.13,4.39,4.54,5.31,5.09
-,1998-10-30,None,4.33,4.36,4.18,4.12,4.24,4.24,4.47,4.64,5.38,5.15
-,1998-11-02,None,4.54,4.53,4.33,4.26,4.39,4.39,4.63,4.77,5.49,5.23
-,1998-11-03,None,4.5,4.51,4.33,4.25,4.37,4.33,4.63,4.78,5.46,5.22
-,1998-11-04,None,4.56,4.59,4.46,4.43,4.53,4.48,4.78,4.83,5.56,5.34
-,1998-11-05,None,4.58,4.64,4.53,4.47,4.55,4.48,4.78,4.82,5.55,5.29
-,1998-11-06,None,4.64,4.7,4.64,4.59,4.65,4.58,4.92,4.93,5.63,5.37
-,1998-11-09,None,4.58,4.66,4.54,4.57,4.63,4.55,4.84,4.88,5.51,5.28
-,1998-11-10,None,4.54,4.61,4.53,4.5,4.57,4.5,4.78,4.81,5.48,5.27
-,1998-11-12,None,4.48,4.56,4.5,4.47,4.52,4.47,4.74,4.77,5.46,5.25
-,1998-11-13,None,4.47,4.54,4.52,4.54,4.56,4.53,4.78,4.82,5.46,5.26
-,1998-11-16,None,4.52,4.59,4.55,4.56,4.57,4.55,4.79,4.85,5.47,5.28
-,1998-11-17,None,4.42,4.51,4.52,4.58,4.58,4.57,4.8,4.87,5.51,5.3
-,1998-11-18,None,4.44,4.51,4.53,4.63,4.61,4.58,4.78,4.85,5.44,5.25
-,1998-11-19,None,4.46,4.55,4.55,4.66,4.64,4.63,4.81,4.85,5.45,5.25
-,1998-11-20,None,4.46,4.57,4.56,4.66,4.62,4.6,4.77,4.82,5.44,5.22
-,1998-11-23,None,4.59,4.62,4.57,4.63,4.61,4.6,4.79,4.84,5.49,5.25
-,1998-11-24,None,4.62,4.64,4.6,4.64,4.66,4.63,4.81,4.85,5.47,5.23
-,1998-11-25,None,4.57,4.63,4.6,4.66,4.64,4.63,4.81,4.83,5.45,5.19
-,1998-11-27,None,4.55,4.61,4.59,4.62,4.63,4.6,4.8,4.81,5.42,5.16
-,1998-11-30,None,4.57,4.58,4.53,4.54,4.54,4.51,4.7,4.74,5.33,5.08
-,1998-12-01,None,4.49,4.51,4.46,4.44,4.44,4.43,4.63,4.67,5.32,5.06
-,1998-12-02,None,4.48,4.49,4.41,4.36,4.34,4.31,4.54,4.59,5.28,5.03
-,1998-12-03,None,4.45,4.48,4.41,4.36,4.33,4.31,4.54,4.58,5.29,5.02
-,1998-12-04,None,4.48,4.51,4.49,4.46,4.43,4.38,4.61,4.62,5.34,5.05
-,1998-12-07,None,4.46,4.57,4.58,4.54,4.51,4.47,4.7,4.69,5.36,5.05
-,1998-12-08,None,4.43,4.54,4.49,4.46,4.43,4.4,4.61,4.6,5.29,5.0
-,1998-12-09,None,4.43,4.52,4.46,4.42,4.4,4.37,4.56,4.56,5.25,4.97
-,1998-12-10,None,4.48,4.53,4.45,4.39,4.37,4.33,4.51,4.53,5.24,4.95
-,1998-12-11,None,4.5,4.56,4.49,4.46,4.42,4.39,4.59,4.61,5.31,5.02
-,1998-12-14,None,4.49,4.56,4.47,4.42,4.39,4.35,4.56,4.58,5.3,4.99
-,1998-12-15,None,4.49,4.56,4.49,4.47,4.44,4.39,4.62,4.62,5.34,5.03
-,1998-12-16,None,4.46,4.51,4.44,4.4,4.38,4.34,4.54,4.58,5.33,5.01
-,1998-12-17,None,4.46,4.53,4.45,4.42,4.39,4.34,4.57,4.58,5.32,5.01
-,1998-12-18,None,4.49,4.55,4.48,4.45,4.43,4.38,4.58,4.58,5.32,5.01
-,1998-12-21,None,4.51,4.62,4.53,4.56,4.52,4.45,4.66,4.64,5.38,5.07
-,1998-12-22,None,4.5,4.62,4.56,4.59,4.56,4.5,4.72,4.7,5.45,5.13
-,1998-12-23,None,4.58,4.68,4.69,4.73,4.71,4.65,4.84,4.81,5.51,5.2
-,1998-12-24,None,4.57,4.7,4.72,4.78,4.76,4.74,4.89,4.86,5.55,5.23
-,1998-12-28,None,4.56,4.68,4.65,4.73,4.71,4.66,4.82,4.78,5.47,5.17
-,1998-12-29,None,4.59,4.64,4.62,4.6,4.6,4.6,4.75,4.71,5.41,5.12
-,1998-12-30,None,4.55,4.59,4.54,4.56,4.55,4.55,4.71,4.65,5.4,5.09
-,1998-12-31,None,4.48,4.55,4.53,4.54,4.55,4.56,4.73,4.65,5.39,5.09
-,1999-01-04,None,4.49,4.57,4.58,4.58,4.57,4.57,4.75,4.69,5.42,5.15
-,1999-01-05,None,4.48,4.57,4.56,4.64,4.64,4.62,4.8,4.74,5.48,5.21
-,1999-01-06,None,4.47,4.55,4.53,4.62,4.62,4.61,4.76,4.73,5.42,5.17
-,1999-01-07,None,4.44,4.49,4.51,4.63,4.63,4.62,4.82,4.77,5.48,5.23
-,1999-01-08,None,4.48,4.53,4.57,4.71,4.71,4.72,4.92,4.86,5.57,5.26
-,1999-01-11,None,4.51,4.57,4.62,4.74,4.75,4.76,4.95,4.9,5.61,5.29
-,1999-01-12,None,4.48,4.51,4.55,4.68,4.68,4.68,4.89,4.82,5.55,5.23
-,1999-01-13,None,4.45,4.48,4.49,4.61,4.61,4.6,4.84,4.74,5.49,5.16
-,1999-01-14,None,4.44,4.41,4.41,4.47,4.48,4.48,4.73,4.63,5.39,5.07
-,1999-01-15,None,4.44,4.44,4.46,4.56,4.55,4.54,4.76,4.66,5.43,5.1
-,1999-01-19,None,4.41,4.48,4.49,4.62,4.62,4.6,4.82,4.71,5.46,5.14
-,1999-01-20,None,4.37,4.49,4.53,4.66,4.66,4.65,4.86,4.76,5.48,5.18
-,1999-01-21,None,4.32,4.45,4.48,4.63,4.62,4.6,4.79,4.7,5.43,5.14
-,1999-01-22,None,4.36,4.44,4.46,4.59,4.58,4.54,4.73,4.64,5.38,5.09
-,1999-01-25,None,4.44,4.45,4.48,4.59,4.58,4.55,4.74,4.67,5.4,5.12
-,1999-01-26,None,4.46,4.46,4.51,4.63,4.61,4.58,4.76,4.69,5.41,5.12
-,1999-01-27,None,4.47,4.47,4.51,4.57,4.57,4.57,4.74,4.68,5.4,5.14
-,1999-01-28,None,4.49,4.45,4.52,4.58,4.57,4.57,4.73,4.67,5.37,5.11
-,1999-01-29,None,4.48,4.47,4.51,4.58,4.57,4.55,4.72,4.66,5.35,5.09
-,1999-02-01,None,4.53,4.56,4.58,4.65,4.65,4.65,4.82,4.75,5.45,5.19
-,1999-02-02,None,4.53,4.57,4.59,4.7,4.7,4.7,4.87,4.79,5.51,5.24
-,1999-02-03,None,4.48,4.55,4.59,4.72,4.73,4.74,4.91,4.83,5.52,5.25
-,1999-02-04,None,4.49,4.55,4.63,4.77,4.8,4.82,5.0,4.89,5.57,5.3
-,1999-02-05,None,4.5,4.6,4.66,4.8,4.85,4.88,5.04,4.94,5.61,5.34
-,1999-02-08,None,4.54,4.59,4.66,4.8,4.84,4.86,5.03,4.94,5.61,5.35
-,1999-02-09,None,4.53,4.57,4.65,4.79,4.78,4.78,4.99,4.91,5.58,5.33
-,1999-02-10,None,4.48,4.54,4.64,4.77,4.78,4.79,4.99,4.9,5.58,5.34
-,1999-02-11,None,4.5,4.55,4.66,4.8,4.82,4.83,5.01,4.93,5.58,5.29
-,1999-02-12,None,4.54,4.59,4.74,4.91,4.94,4.96,5.18,5.06,5.76,5.42
-,1999-02-16,None,4.56,4.64,4.73,4.93,4.95,4.96,5.14,5.03,5.69,5.35
-,1999-02-17,None,4.52,4.6,4.69,4.89,4.91,4.91,5.09,4.98,5.65,5.32
-,1999-02-18,None,4.53,4.61,4.72,4.93,4.95,4.96,5.16,5.04,5.7,5.37
-,1999-02-19,None,4.56,4.65,4.71,4.95,4.97,4.99,5.19,5.07,5.71,5.38
-,1999-02-22,None,4.65,4.62,4.73,4.91,4.94,4.95,5.14,5.03,5.67,5.36
-,1999-02-23,None,4.66,4.65,4.78,5.0,5.04,5.04,5.2,5.1,5.74,5.42
-,1999-02-24,None,4.67,4.7,4.85,5.05,5.09,5.12,5.29,5.18,5.82,5.51
-,1999-02-25,None,4.62,4.7,4.86,5.15,5.21,5.23,5.43,5.32,5.9,5.61
-,1999-02-26,None,4.66,4.7,4.88,5.13,5.16,5.21,5.39,5.29,5.85,5.57
-,1999-03-01,None,4.71,4.79,4.91,5.2,5.28,5.32,5.49,5.4,5.94,5.67
-,1999-03-02,None,4.66,4.75,4.93,5.18,5.24,5.27,5.44,5.35,5.88,5.63
-,1999-03-03,None,4.62,4.75,4.89,5.19,5.24,5.29,5.48,5.39,5.95,5.68
-,1999-03-04,None,4.62,4.75,4.9,5.2,5.27,5.32,5.52,5.41,5.97,5.69
-,1999-03-05,None,4.63,4.73,4.84,5.14,5.21,5.24,5.44,5.34,5.91,5.6
-,1999-03-08,None,4.64,4.73,4.83,5.12,5.18,5.21,5.42,5.29,5.9,5.6
-,1999-03-09,None,4.6,4.68,4.76,5.02,5.08,5.11,5.33,5.18,5.84,5.54
-,1999-03-10,None,4.6,4.68,4.75,5.04,5.09,5.13,5.35,5.2,5.86,5.56
-,1999-03-11,None,4.62,4.69,4.77,5.05,5.11,5.13,5.35,5.21,5.87,5.57
-,1999-03-12,None,4.6,4.68,4.76,5.0,5.06,5.08,5.31,5.16,5.82,5.54
-,1999-03-15,None,4.61,4.72,4.76,4.99,5.03,5.07,5.29,5.15,5.79,5.51
-,1999-03-16,None,4.55,4.69,4.74,4.97,5.01,5.03,5.24,5.11,5.75,5.48
-,1999-03-17,None,4.53,4.67,4.74,5.01,5.05,5.05,5.27,5.14,5.78,5.51
-,1999-03-18,None,4.51,4.63,4.72,4.99,5.0,5.02,5.24,5.11,5.77,5.49
-,1999-03-19,None,4.51,4.64,4.73,5.04,5.05,5.07,5.31,5.17,5.82,5.53
-,1999-03-22,None,4.52,4.58,4.77,5.08,5.1,5.13,5.34,5.21,5.87,5.57
-,1999-03-23,None,4.5,4.53,4.74,5.03,5.09,5.11,5.34,5.2,5.87,5.57
-,1999-03-24,None,4.5,4.54,4.73,4.98,5.04,5.07,5.3,5.17,5.84,5.54
-,1999-03-25,None,4.51,4.56,4.77,5.02,5.07,5.12,5.35,5.21,5.88,5.59
-,1999-03-26,None,4.51,4.53,4.74,4.99,5.05,5.1,5.35,5.21,5.9,5.61
-,1999-03-29,None,4.51,4.52,4.75,5.02,5.08,5.15,5.4,5.28,5.94,5.65
-,1999-03-30,None,4.48,4.5,4.72,4.97,5.03,5.09,5.34,5.21,5.89,5.59
-,1999-03-31,None,4.49,4.53,4.72,4.99,5.07,5.12,5.38,5.25,5.92,5.63
-,1999-04-01,None,4.44,4.51,4.73,5.01,5.08,5.15,5.4,5.27,5.96,5.67
-,1999-04-02,None,4.43,4.48,4.67,4.96,5.03,5.07,5.31,5.2,5.88,5.59
-,1999-04-05,None,4.4,4.53,4.67,4.96,5.02,5.07,5.33,5.2,5.88,5.59
-,1999-04-06,None,4.42,4.53,4.66,4.93,4.98,5.01,5.26,5.13,5.8,5.52
-,1999-04-07,None,4.42,4.54,4.69,4.93,5.01,5.04,5.26,5.14,5.8,5.51
-,1999-04-08,None,4.4,4.52,4.64,4.86,4.89,4.94,5.16,5.03,5.71,5.44
-,1999-04-09,None,4.42,4.51,4.63,4.88,4.91,4.96,5.17,5.05,5.73,5.46
-,1999-04-12,None,4.32,4.5,4.66,4.93,4.95,4.98,5.17,5.06,5.72,5.45
-,1999-04-13,None,4.32,4.5,4.66,4.94,4.97,5.02,5.23,5.12,5.77,5.5
-,1999-04-14,None,4.3,4.5,4.65,4.95,4.98,5.04,5.24,5.13,5.77,5.51
-,1999-04-15,None,4.32,4.51,4.66,4.97,5.05,5.08,5.27,5.18,5.8,5.53
-,1999-04-16,None,4.34,4.55,4.71,5.02,5.08,5.13,5.32,5.23,5.85,5.57
-,1999-04-19,None,4.36,4.54,4.69,4.99,5.04,5.08,5.27,5.18,5.81,5.55
-,1999-04-20,None,4.38,4.54,4.67,4.95,5.03,5.06,5.25,5.16,5.79,5.52
-,1999-04-21,None,4.36,4.53,4.68,4.99,5.03,5.07,5.24,5.17,5.8,5.52
-,1999-04-22,None,4.4,4.56,4.73,5.05,5.09,5.15,5.34,5.25,5.89,5.61
-,1999-04-23,None,4.43,4.6,4.71,5.04,5.09,5.15,5.34,5.26,5.87,5.6
-,1999-04-26,None,4.47,4.57,4.72,5.04,5.12,5.14,5.31,5.23,5.84,5.57
-,1999-04-27,None,4.5,4.6,4.74,5.04,5.07,5.12,5.29,5.22,5.82,5.55
-,1999-04-28,None,4.51,4.6,4.75,5.02,5.1,5.16,5.32,5.27,5.84,5.58
-,1999-04-29,None,4.51,4.6,4.68,4.95,5.02,5.09,5.26,5.22,5.79,5.53
-,1999-04-30,None,4.55,4.66,4.78,5.08,5.17,5.24,5.42,5.36,5.94,5.68
-,1999-05-03,None,4.62,4.69,4.79,5.08,5.16,5.25,5.44,5.38,5.93,5.67
-,1999-05-04,None,4.63,4.69,4.8,5.12,5.2,5.3,5.48,5.42,6.0,5.72
-,1999-05-05,None,4.61,4.67,4.75,5.09,5.16,5.27,5.46,5.4,5.97,5.71
-,1999-05-06,None,4.62,4.68,4.79,5.19,5.26,5.39,5.57,5.52,6.07,5.8
-,1999-05-07,None,4.62,4.69,4.78,5.19,5.27,5.4,5.6,5.54,6.1,5.82
-,1999-05-10,None,4.6,4.69,4.77,5.15,5.24,5.38,5.58,5.54,6.07,5.79
-,1999-05-11,None,4.62,4.71,4.8,5.19,5.27,5.4,5.63,5.59,6.11,5.85
-,1999-05-12,None,4.6,4.69,4.79,5.19,5.27,5.39,5.6,5.51,6.09,5.83
-,1999-05-13,None,4.59,4.68,4.75,5.12,5.19,5.29,5.48,5.41,6.0,5.75
-,1999-05-14,None,4.64,4.73,4.86,5.3,5.38,5.48,5.71,5.62,6.16,5.92
-,1999-05-17,None,4.71,4.82,4.9,5.31,5.4,5.53,5.75,5.66,6.16,5.91
-,1999-05-18,None,4.66,4.82,4.92,5.38,5.46,5.58,5.79,5.68,6.15,5.9
-,1999-05-19,None,4.63,4.78,4.9,5.37,5.44,5.54,5.72,5.6,6.09,5.81
-,1999-05-20,None,4.61,4.76,4.88,5.35,5.43,5.53,5.74,5.6,6.13,5.83
-,1999-05-21,None,4.61,4.77,4.87,5.3,5.37,5.46,5.67,5.52,6.08,5.78
-,1999-05-24,None,4.64,4.78,4.86,5.28,5.35,5.43,5.65,5.5,6.08,5.77
-,1999-05-25,None,4.64,4.8,4.9,5.3,5.37,5.44,5.66,5.49,6.07,5.76
-,1999-05-26,None,4.66,4.81,4.92,5.33,5.41,5.49,5.72,5.55,6.12,5.8
-,1999-05-27,None,4.65,4.83,4.98,5.43,5.52,5.59,5.81,5.62,6.15,5.85
-,1999-05-28,None,4.66,4.83,4.97,5.42,5.51,5.6,5.83,5.64,6.15,5.84
-,1999-06-01,None,4.77,4.97,5.09,5.54,5.63,5.74,5.99,5.78,6.27,5.94
-,1999-06-02,None,4.74,4.96,5.07,5.55,5.64,5.75,5.98,5.8,6.26,5.94
-,1999-06-03,None,4.65,4.96,5.07,5.54,5.62,5.75,5.95,5.8,6.25,5.96
-,1999-06-04,None,4.57,4.95,5.07,5.56,5.64,5.75,5.97,5.82,6.28,5.97
-,1999-06-07,None,4.64,4.98,5.08,5.56,5.64,5.73,5.96,5.81,6.27,5.97
-,1999-06-08,None,4.62,4.98,5.1,5.57,5.65,5.74,5.97,5.83,6.3,6.0
-,1999-06-09,None,4.6,4.99,5.12,5.61,5.69,5.79,6.02,5.87,6.32,6.02
-,1999-06-10,None,4.67,5.03,5.13,5.66,5.74,5.85,6.07,5.92,6.37,6.05
-,1999-06-11,None,4.74,5.1,5.16,5.7,5.78,5.92,6.17,6.02,6.47,6.13
-,1999-06-14,None,4.76,5.06,5.13,5.66,5.75,5.89,6.12,5.98,6.43,6.11
-,1999-06-15,None,4.74,5.08,5.09,5.66,5.74,5.87,6.12,5.98,6.43,6.11
-,1999-06-16,None,4.67,5.02,5.0,5.61,5.69,5.84,6.09,5.94,6.4,6.08
-,1999-06-17,None,4.64,4.95,4.95,5.49,5.56,5.67,5.92,5.79,6.27,5.95
-,1999-06-18,None,4.69,4.99,4.98,5.56,5.63,5.75,5.95,5.84,6.3,5.98
-,1999-06-21,None,4.74,5.05,5.01,5.62,5.68,5.81,6.04,5.9,6.36,6.03
-,1999-06-22,None,4.73,5.05,5.15,5.65,5.73,5.84,6.08,5.94,6.41,6.07
-,1999-06-23,None,4.73,5.05,5.18,5.7,5.79,5.9,6.15,6.0,6.47,6.13
-,1999-06-24,None,4.74,5.06,5.18,5.75,5.84,5.93,6.2,6.05,6.51,6.17
-,1999-06-25,None,4.8,5.1,5.18,5.73,5.81,5.91,6.18,6.02,6.49,6.16
-,1999-06-28,None,4.88,5.15,5.15,5.68,5.75,5.86,6.11,5.96,6.42,6.1
-,1999-06-29,None,4.84,5.13,5.17,5.68,5.75,5.84,6.08,5.93,6.38,6.07
-,1999-06-30,None,4.78,5.04,5.07,5.53,5.59,5.67,5.93,5.81,6.29,5.98
-,1999-07-01,None,4.68,5.01,5.09,5.58,5.65,5.73,5.98,5.85,6.32,6.02
-,1999-07-02,None,4.69,4.98,5.08,5.58,5.65,5.7,5.96,5.82,6.3,6.0
-,1999-07-06,None,4.72,4.78,5.08,5.64,5.73,5.77,6.02,5.88,6.34,6.05
-,1999-07-07,None,4.67,4.75,5.06,5.64,5.74,5.79,6.05,5.92,6.36,6.08
-,1999-07-08,None,4.68,4.74,5.04,5.59,5.66,5.72,5.98,5.85,6.3,6.01
-,1999-07-09,None,4.69,4.75,5.04,5.61,5.68,5.72,5.99,5.84,6.3,6.01
-,1999-07-12,None,4.74,4.73,5.02,5.53,5.56,5.62,5.89,5.74,6.2,5.92
-,1999-07-13,None,4.71,4.71,5.0,5.5,5.57,5.6,5.86,5.71,6.19,5.9
-,1999-07-14,None,4.72,4.69,5.01,5.55,5.59,5.63,5.89,5.74,6.21,5.92
-,1999-07-15,None,4.7,4.68,5.01,5.53,5.59,5.63,5.88,5.72,6.2,5.91
-,1999-07-16,None,4.68,4.67,5.0,5.5,5.53,5.57,5.83,5.68,6.18,5.9
-,1999-07-19,None,4.67,4.69,5.0,5.46,5.51,5.56,5.82,5.66,6.19,5.9
-,1999-07-20,None,4.64,4.64,4.96,5.43,5.48,5.54,5.8,5.65,6.18,5.89
-,1999-07-21,None,4.59,4.65,4.92,5.45,5.51,5.55,5.81,5.66,6.2,5.91
-,1999-07-22,None,4.61,4.68,4.99,5.52,5.62,5.66,5.94,5.78,6.27,5.97
-,1999-07-23,None,4.65,4.71,5.02,5.58,5.65,5.72,6.0,5.84,6.32,6.02
-,1999-07-26,None,4.68,4.73,5.04,5.61,5.68,5.73,6.02,5.86,6.34,6.04
-,1999-07-27,None,4.7,4.77,5.03,5.56,5.61,5.7,5.98,5.82,6.31,6.01
-,1999-07-28,None,4.71,4.79,5.04,5.54,5.59,5.7,5.97,5.81,6.3,6.01
-,1999-07-29,None,4.72,4.83,5.11,5.62,5.68,5.79,6.06,5.88,6.37,6.07
-,1999-07-30,None,4.75,4.85,5.13,5.63,5.7,5.82,6.1,5.92,6.4,6.11
-,1999-08-02,None,4.85,4.97,5.15,5.65,5.76,5.85,6.11,5.92,6.4,6.13
-,1999-08-03,None,4.84,5.02,5.17,5.65,5.75,5.86,6.13,5.95,6.42,6.15
-,1999-08-04,None,4.78,4.99,5.12,5.64,5.73,5.86,6.13,5.96,6.41,6.12
-,1999-08-05,None,4.74,4.95,5.05,5.55,5.64,5.77,6.07,5.88,6.38,6.05
-,1999-08-06,None,4.8,5.03,5.16,5.69,5.79,5.94,6.24,6.02,6.48,6.16
-,1999-08-09,None,4.96,5.15,5.24,5.79,5.89,6.04,6.33,6.13,6.54,6.23
-,1999-08-10,None,4.95,5.14,5.24,5.79,5.9,6.0,6.37,6.16,6.55,6.25
-,1999-08-11,None,4.91,5.11,5.22,5.76,5.86,5.96,6.32,6.05,6.52,6.22
-,1999-08-12,None,4.79,5.09,5.25,5.78,5.89,5.97,6.33,6.08,6.56,6.18
-,1999-08-13,None,4.74,5.07,5.19,5.71,5.81,5.88,6.21,5.98,6.45,6.09
-,1999-08-16,None,4.84,5.14,5.24,5.75,5.82,5.88,6.19,5.98,6.48,6.1
-,1999-08-17,None,4.83,5.13,5.23,5.68,5.75,5.8,6.1,5.89,6.41,6.02
-,1999-08-18,None,4.76,5.07,5.19,5.66,5.74,5.79,6.09,5.88,6.41,6.01
-,1999-08-19,None,4.76,5.08,5.18,5.66,5.74,5.81,6.12,5.9,6.43,6.03
-,1999-08-20,None,4.84,5.1,5.16,5.65,5.72,5.79,6.1,5.88,6.41,5.99
-,1999-08-23,None,5.01,5.16,5.21,5.66,5.73,5.79,6.11,5.89,6.41,5.98
-,1999-08-24,None,4.99,5.11,5.18,5.65,5.71,5.73,6.06,5.85,6.38,5.95
-,1999-08-25,None,4.93,5.04,5.14,5.53,5.61,5.63,5.94,5.73,6.28,5.87
-,1999-08-26,None,4.93,5.06,5.18,5.56,5.65,5.67,5.96,5.75,6.29,5.88
-,1999-08-27,None,4.98,5.11,5.24,5.65,5.74,5.75,6.05,5.85,6.38,5.96
-,1999-08-30,None,5.01,5.21,5.31,5.73,5.81,5.86,6.16,5.95,6.48,6.07
-,1999-08-31,None,4.98,5.21,5.3,5.73,5.82,5.88,6.2,5.98,6.49,6.07
-,1999-09-01,None,4.97,5.21,5.3,5.74,5.82,5.88,6.2,5.99,6.5,6.08
-,1999-09-02,None,4.92,5.19,5.3,5.74,5.83,5.9,6.23,6.03,6.58,6.15
-,1999-09-03,None,4.92,5.14,5.22,5.64,5.72,5.78,6.12,5.89,6.45,6.03
-,1999-09-07,None,4.85,5.15,5.27,5.69,5.78,5.83,6.17,5.95,6.52,6.07
-,1999-09-08,None,4.83,5.15,5.28,5.67,5.77,5.82,6.15,5.93,6.5,6.07
-,1999-09-09,None,4.81,5.15,5.3,5.71,5.81,5.85,6.19,5.97,6.54,6.1
-,1999-09-10,None,4.76,5.11,5.26,5.64,5.75,5.78,6.1,5.89,6.48,6.03
-,1999-09-13,None,4.8,5.13,5.28,5.66,5.76,5.8,6.12,5.92,6.51,6.06
-,1999-09-14,None,4.83,5.14,5.3,5.71,5.82,5.85,6.18,5.96,6.57,6.11
-,1999-09-15,None,4.75,5.07,5.25,5.67,5.79,5.81,6.14,5.94,6.56,6.11
-,1999-09-16,None,4.7,5.04,5.23,5.63,5.7,5.77,6.09,5.9,6.51,6.08
-,1999-09-17,None,4.67,5.07,5.24,5.63,5.74,5.76,6.06,5.87,6.47,6.05
-,1999-09-20,None,4.81,5.09,5.28,5.67,5.75,5.81,6.11,5.91,6.5,6.08
-,1999-09-21,None,4.79,5.06,5.26,5.67,5.76,5.83,6.14,5.94,6.52,6.1
-,1999-09-22,None,4.83,5.07,5.26,5.67,5.74,5.81,6.12,5.92,6.5,6.1
-,1999-09-23,None,4.82,5.05,5.22,5.63,5.7,5.76,6.06,5.87,6.44,6.05
-,1999-09-24,None,4.78,5.0,5.15,5.55,5.6,5.65,5.94,5.75,6.36,5.95
-,1999-09-27,None,4.87,5.01,5.19,5.62,5.67,5.73,6.01,5.83,6.42,6.02
-,1999-09-28,None,4.85,4.97,5.2,5.65,5.7,5.78,6.09,5.89,6.47,6.07
-,1999-09-29,None,4.83,4.98,5.27,5.68,5.75,5.86,6.18,5.97,6.55,6.13
-,1999-09-30,None,4.88,4.99,5.22,5.63,5.7,5.78,6.1,5.9,6.47,6.06
-,1999-10-01,None,4.88,5.01,5.3,5.73,5.83,5.9,6.22,6.0,6.57,6.15
-,1999-10-04,None,4.87,5.1,5.27,5.7,5.79,5.85,6.15,5.95,6.51,6.1
-,1999-10-05,None,4.86,5.12,5.33,5.78,5.87,5.94,6.24,6.02,6.59,6.17
-,1999-10-06,None,4.81,5.09,5.36,5.81,5.89,5.98,6.27,6.04,6.6,6.17
-,1999-10-07,None,4.84,5.12,5.36,5.82,5.91,5.99,6.28,6.05,6.6,6.19
-,1999-10-08,None,4.82,5.11,5.36,5.8,5.87,5.97,6.27,6.04,6.61,6.2
-,1999-10-12,None,4.93,5.14,5.38,5.82,5.89,5.99,6.29,6.07,6.63,6.23
-,1999-10-13,None,4.98,5.16,5.43,5.87,5.93,6.04,6.35,6.12,6.69,6.29
-,1999-10-14,None,5.02,5.17,5.45,5.9,5.97,6.09,6.41,6.17,6.73,6.32
-,1999-10-15,None,5.04,5.15,5.42,5.82,5.89,5.99,6.33,6.09,6.66,6.26
-,1999-10-18,None,5.15,5.21,5.42,5.85,5.92,6.03,6.34,6.12,6.69,6.3
-,1999-10-19,None,5.15,5.24,5.47,5.92,5.99,6.09,6.39,6.18,6.74,6.35
-,1999-10-20,None,5.15,5.25,5.49,5.94,6.02,6.11,6.41,6.19,6.74,6.34
-,1999-10-21,None,5.14,5.27,5.48,5.93,6.02,6.11,6.43,6.2,6.76,6.36
-,1999-10-22,None,5.07,5.28,5.5,5.96,6.02,6.13,6.43,6.21,6.76,6.36
-,1999-10-25,None,5.14,5.33,5.54,5.98,6.06,6.14,6.44,6.22,6.75,6.36
-,1999-10-26,None,5.15,5.34,5.57,6.02,6.09,6.17,6.46,6.24,6.77,6.38
-,1999-10-27,None,5.14,5.33,5.53,5.94,6.04,6.13,6.39,6.19,6.71,6.33
-,1999-10-28,None,5.11,5.31,5.49,5.87,5.95,6.05,6.3,6.12,6.63,6.25
-,1999-10-29,None,5.12,5.28,5.43,5.79,5.9,5.97,6.19,6.02,6.52,6.16
-,1999-11-01,None,5.16,5.32,5.47,5.83,5.93,6.0,6.23,6.06,6.55,6.19
-,1999-11-02,None,5.14,5.31,5.47,5.81,5.93,5.98,6.2,6.04,6.51,6.15
-,1999-11-03,None,5.12,5.33,5.46,5.79,5.88,5.97,6.18,6.01,6.49,6.14
-,1999-11-04,None,5.1,5.33,5.44,5.74,5.82,5.91,6.11,5.95,6.45,6.09
-,1999-11-05,None,5.14,5.33,5.43,5.72,5.8,5.88,6.07,5.92,6.41,6.05
-,1999-11-08,None,5.2,5.36,5.48,5.74,5.83,5.9,6.08,5.95,6.42,6.06
-,1999-11-09,None,5.19,5.37,5.49,5.77,5.81,5.87,6.1,5.97,6.43,6.07
-,1999-11-10,None,5.2,5.41,5.52,5.81,5.84,5.9,6.14,6.0,6.45,6.09
-,1999-11-12,None,5.23,5.41,5.49,5.78,5.82,5.85,6.06,5.93,6.37,6.03
-,1999-11-15,None,5.29,5.45,5.52,5.79,5.83,5.87,6.07,5.94,6.37,6.04
-,1999-11-16,None,5.29,5.45,5.55,5.85,5.88,5.91,6.1,5.97,6.4,6.06
-,1999-11-17,None,5.24,5.44,5.57,5.9,5.94,5.98,6.18,6.04,6.46,6.13
-,1999-11-18,None,5.23,5.46,5.58,5.9,5.94,5.99,6.2,6.06,6.49,6.17
-,1999-11-19,None,5.23,5.44,5.59,5.92,5.97,6.0,6.21,6.07,6.48,6.17
-,1999-11-22,None,5.27,5.47,5.63,5.95,5.98,6.02,6.23,6.09,6.51,6.2
-,1999-11-23,None,5.27,5.47,5.63,5.93,5.99,6.02,6.23,6.08,6.51,6.2
-,1999-11-24,None,5.29,5.52,5.65,5.97,6.0,6.02,6.22,6.09,6.53,6.22
-,1999-11-26,None,5.3,5.54,5.68,5.99,6.03,6.06,6.25,6.12,6.57,6.24
-,1999-11-29,None,5.36,5.58,5.72,6.04,6.1,6.14,6.32,6.21,6.66,6.31
-,1999-11-30,None,5.3,5.57,5.7,6.01,6.05,6.11,6.28,6.18,6.62,6.29
-,1999-12-01,None,5.27,5.58,5.73,6.04,6.11,6.14,6.32,6.21,6.65,6.3
-,1999-12-02,None,5.25,5.57,5.77,6.06,6.1,6.16,6.35,6.24,6.67,6.31
-,1999-12-03,None,5.25,5.54,5.71,5.99,6.03,6.08,6.27,6.17,6.6,6.27
-,1999-12-06,None,5.22,5.54,5.72,5.98,6.04,6.07,6.24,6.16,6.58,6.25
-,1999-12-07,None,5.22,5.55,5.68,5.95,6.01,6.03,6.2,6.11,6.54,6.21
-,1999-12-08,None,5.22,5.56,5.69,5.98,6.02,6.06,6.24,6.15,6.57,6.23
-,1999-12-09,None,5.25,5.58,5.67,5.96,5.99,6.03,6.22,6.14,6.55,6.22
-,1999-12-10,None,5.3,5.59,5.67,5.93,5.95,5.98,6.15,6.08,6.48,6.17
-,1999-12-13,None,5.39,5.67,5.74,5.96,5.99,6.01,6.18,6.11,6.52,6.2
-,1999-12-14,None,5.39,5.71,5.81,6.07,6.1,6.12,6.3,6.22,6.64,6.31
-,1999-12-15,None,5.35,5.71,5.85,6.1,6.12,6.14,6.34,6.25,6.68,6.34
-,1999-12-16,None,5.39,5.75,5.9,6.15,6.18,6.2,6.41,6.31,6.75,6.39
-,1999-12-17,None,5.44,5.78,5.93,6.15,6.17,6.22,6.42,6.3,6.74,6.38
-,1999-12-20,None,5.63,5.9,5.99,6.21,6.23,6.28,6.49,6.36,6.81,6.44
-,1999-12-21,None,5.59,5.86,5.97,6.21,6.25,6.29,6.5,6.38,6.83,6.46
-,1999-12-22,None,5.56,5.81,5.97,6.24,6.27,6.31,6.52,6.39,6.82,6.47
-,1999-12-23,None,5.47,5.75,5.96,6.24,6.27,6.33,6.54,6.41,6.83,6.48
-,1999-12-27,None,5.47,5.77,5.97,6.21,6.26,6.32,6.52,6.4,6.8,6.46
-,1999-12-28,None,5.41,5.73,5.96,6.23,6.28,6.35,6.55,6.43,6.82,6.48
-,1999-12-29,None,5.23,5.68,5.93,6.21,6.25,6.32,6.5,6.4,6.79,6.45
-,1999-12-30,None,5.22,5.68,5.93,6.19,6.23,6.3,6.48,6.39,6.78,6.43
-,1999-12-31,None,5.33,5.74,5.98,6.24,6.29,6.36,6.55,6.45,6.83,6.48
-,2000-01-03,None,5.48,5.81,6.09,6.38,6.42,6.5,6.65,6.58,6.94,6.61
-,2000-01-04,None,5.43,5.75,6.0,6.3,6.34,6.4,6.56,6.49,6.84,6.53
-,2000-01-05,None,5.44,5.74,6.05,6.38,6.43,6.51,6.68,6.62,6.95,6.64
-,2000-01-06,None,5.41,5.69,6.03,6.35,6.39,6.46,6.63,6.57,6.86,6.58
-,2000-01-07,None,5.38,5.66,6.0,6.31,6.35,6.42,6.58,6.52,6.82,6.55
-,2000-01-10,None,5.42,5.64,6.07,6.38,6.42,6.49,6.62,6.57,6.86,6.59
-,2000-01-11,None,5.43,5.66,6.13,6.45,6.49,6.57,6.72,6.67,6.94,6.68
-,2000-01-12,None,5.45,5.7,6.16,6.49,6.53,6.63,6.76,6.72,6.97,6.71
-,2000-01-13,None,5.41,5.66,6.1,6.4,6.45,6.54,6.67,6.63,6.88,6.65
-,2000-01-14,None,5.41,5.69,6.13,6.44,6.49,6.59,6.71,6.69,6.91,6.69
-,2000-01-18,None,5.56,5.79,6.15,6.47,6.53,6.65,6.78,6.75,6.94,6.75
-,2000-01-19,None,5.51,5.78,6.12,6.46,6.51,6.62,6.75,6.73,6.91,6.72
-,2000-01-20,None,5.48,5.84,6.13,6.49,6.55,6.67,6.8,6.79,6.93,6.74
-,2000-01-21,None,5.47,5.83,6.12,6.48,6.54,6.67,6.8,6.79,6.91,6.71
-,2000-01-24,None,5.55,5.77,6.13,6.43,6.48,6.59,6.71,6.69,6.86,6.65
-,2000-01-25,None,5.57,5.78,6.13,6.44,6.5,6.6,6.72,6.7,6.84,6.64
-,2000-01-26,None,5.58,5.78,6.15,6.45,6.51,6.62,6.72,6.69,6.79,6.6
-,2000-01-27,None,5.59,5.79,6.19,6.51,6.58,6.67,6.72,6.68,6.73,6.53
-,2000-01-28,None,5.65,5.86,6.25,6.58,6.62,6.68,6.72,6.66,6.65,6.45
-,2000-01-31,None,5.76,5.97,6.3,6.61,6.65,6.71,6.75,6.68,6.72,6.49
-,2000-02-01,None,5.71,5.95,6.3,6.6,6.63,6.68,6.71,6.62,6.66,6.43
-,2000-02-02,None,5.66,5.94,6.24,6.63,6.66,6.69,6.71,6.6,6.61,6.32
-,2000-02-03,None,5.63,5.86,6.16,6.56,6.56,6.56,6.63,6.49,6.52,6.17
-,2000-02-04,None,5.67,5.94,6.19,6.63,6.64,6.64,6.68,6.53,6.54,6.23
-,2000-02-07,None,5.72,6.04,6.23,6.68,6.72,6.76,6.8,6.64,6.62,6.34
-,2000-02-08,None,5.69,6.02,6.22,6.69,6.74,6.74,6.73,6.59,6.51,6.22
-,2000-02-09,None,5.66,5.99,6.2,6.69,6.75,6.77,6.78,6.56,6.6,6.32
-,2000-02-10,None,5.67,5.98,6.2,6.67,6.74,6.78,6.87,6.67,6.67,6.35
-,2000-02-11,None,5.66,5.98,6.17,6.65,6.73,6.77,6.81,6.63,6.62,6.29
-,2000-02-14,None,5.68,6.04,6.19,6.62,6.68,6.72,6.74,6.56,6.55,6.22
-,2000-02-15,None,5.75,6.01,6.2,6.66,6.72,6.74,6.76,6.56,6.59,6.26
-,2000-02-16,None,5.73,6.0,6.22,6.63,6.7,6.75,6.77,6.56,6.6,6.27
-,2000-02-17,None,5.74,6.03,6.28,6.69,6.72,6.76,6.81,6.58,6.55,6.23
-,2000-02-18,None,5.75,6.02,6.26,6.66,6.71,6.72,6.72,6.49,6.47,6.16
-,2000-02-22,None,5.82,6.03,6.22,6.57,6.62,6.62,6.6,6.36,6.39,6.08
-,2000-02-23,None,5.82,6.03,6.27,6.61,6.63,6.66,6.7,6.44,6.45,6.14
-,2000-02-24,None,5.81,6.02,6.22,6.52,6.54,6.56,6.61,6.36,6.43,6.13
-,2000-02-25,None,5.79,5.99,6.18,6.45,6.48,6.5,6.61,6.36,6.47,6.17
-,2000-02-28,None,5.8,6.02,6.21,6.47,6.5,6.53,6.62,6.37,6.47,6.16
-,2000-02-29,None,5.78,6.02,6.2,6.53,6.58,6.61,6.67,6.42,6.46,6.15
-,2000-03-01,None,5.76,6.02,6.17,6.52,6.54,6.59,6.63,6.39,6.48,6.16
-,2000-03-02,None,5.76,6.03,6.19,6.52,6.58,6.59,6.64,6.4,6.45,6.15
-,2000-03-03,None,5.79,6.02,6.15,6.5,6.56,6.6,6.62,6.39,6.41,6.13
-,2000-03-06,None,5.85,6.08,6.2,6.55,6.62,6.64,6.65,6.42,6.46,6.16
-,2000-03-07,None,5.83,6.07,6.17,6.48,6.55,6.6,6.62,6.39,6.46,6.16
-,2000-03-08,None,5.83,6.09,6.17,6.5,6.54,6.59,6.61,6.38,6.48,6.17
-,2000-03-09,None,5.82,6.06,6.15,6.48,6.52,6.56,6.59,6.35,6.47,6.16
-,2000-03-10,None,5.87,6.11,6.21,6.55,6.58,6.61,6.63,6.39,6.52,6.19
-,2000-03-13,None,5.89,6.13,6.21,6.52,6.54,6.57,6.6,6.36,6.5,6.17
-,2000-03-14,None,5.87,6.12,6.2,6.48,6.5,6.52,6.55,6.31,6.43,6.11
-,2000-03-15,None,5.85,6.12,6.21,6.5,6.5,6.5,6.52,6.29,6.39,6.07
-,2000-03-16,None,5.87,6.11,6.2,6.5,6.49,6.47,6.48,6.26,6.37,6.05
-,2000-03-17,None,5.89,6.13,6.2,6.5,6.49,6.45,6.43,6.2,6.33,6.01
-,2000-03-20,None,5.95,6.17,6.23,6.52,6.5,6.45,6.44,6.18,6.31,5.99
-,2000-03-21,None,5.91,6.13,6.22,6.5,6.48,6.44,6.39,6.13,6.28,5.97
-,2000-03-22,None,5.91,6.11,6.21,6.5,6.47,6.41,6.41,6.13,6.3,5.97
-,2000-03-23,None,5.9,6.12,6.23,6.52,6.47,6.39,6.37,6.08,6.25,5.92
-,2000-03-24,None,5.91,6.19,6.31,6.64,6.59,6.51,6.49,6.2,6.36,6.0
-,2000-03-27,None,5.88,6.18,6.32,6.66,6.61,6.51,6.49,6.21,6.35,5.99
-,2000-03-28,None,5.88,6.16,6.31,6.6,6.57,6.46,6.45,6.17,6.34,5.98
-,2000-03-29,None,5.89,6.17,6.31,6.59,6.54,6.46,6.45,6.18,6.35,5.99
-,2000-03-30,None,5.88,6.14,6.26,6.52,6.47,6.35,6.31,6.06,6.26,5.89
-,2000-03-31,None,5.88,6.15,6.28,6.5,6.44,6.32,6.28,6.03,6.2,5.84
-,2000-04-03,None,5.87,6.18,6.23,6.45,6.41,6.3,6.25,6.0,6.19,5.84
-,2000-04-04,None,5.83,6.1,6.14,6.35,6.29,6.16,6.15,5.9,6.12,5.77
-,2000-04-05,None,5.86,6.12,6.15,6.35,6.29,6.17,6.16,5.9,6.14,5.81
-,2000-04-06,None,5.88,6.1,6.17,6.38,6.32,6.2,6.19,5.93,6.12,5.8
-,2000-04-07,None,5.9,6.1,6.17,6.38,6.33,6.18,6.13,5.86,6.04,5.71
-,2000-04-10,None,5.85,6.1,6.14,6.31,6.26,6.11,6.08,5.8,6.04,5.69
-,2000-04-11,None,5.83,6.12,6.16,6.36,6.31,6.19,6.2,5.89,6.13,5.77
-,2000-04-12,None,5.83,6.08,6.17,6.4,6.35,6.27,6.29,5.97,6.19,5.84
-,2000-04-13,None,5.81,6.07,6.16,6.4,6.34,6.24,6.25,5.94,6.16,5.81
-,2000-04-14,None,5.81,6.03,6.08,6.27,6.21,6.11,6.16,5.85,6.12,5.79
-,2000-04-17,None,5.82,6.05,6.09,6.33,6.29,6.23,6.31,6.01,6.26,5.92
-,2000-04-18,None,5.81,6.01,6.07,6.33,6.3,6.27,6.33,6.05,6.26,5.92
-,2000-04-19,None,5.81,6.02,6.08,6.33,6.29,6.23,6.26,5.99,6.18,5.85
-,2000-04-20,None,5.79,6.0,6.12,6.38,6.33,6.24,6.25,5.99,6.16,5.83
-,2000-04-24,None,5.8,6.01,6.11,6.36,6.31,6.23,6.25,6.0,6.2,5.86
-,2000-04-25,None,5.79,6.02,6.18,6.48,6.45,6.39,6.4,6.14,6.27,5.95
-,2000-04-26,None,5.75,6.03,6.19,6.5,6.46,6.4,6.4,6.14,6.28,5.95
-,2000-04-27,None,5.75,6.06,6.21,6.63,6.59,6.51,6.5,6.23,6.34,6.0
-,2000-04-28,None,5.82,6.12,6.24,6.68,6.64,6.56,6.49,6.23,6.31,5.97
-,2000-05-01,None,6.0,6.25,6.24,6.73,6.68,6.59,6.55,6.29,6.33,5.98
-,2000-05-02,None,5.92,6.22,6.23,6.72,6.68,6.6,6.58,6.32,6.39,6.03
-,2000-05-03,None,5.91,6.23,6.23,6.73,6.71,6.66,6.66,6.4,6.49,6.11
-,2000-05-04,None,5.9,6.22,6.2,6.77,6.74,6.7,6.71,6.46,6.59,6.19
-,2000-05-05,None,5.97,6.3,6.29,6.84,6.81,6.77,6.75,6.51,6.61,6.2
-,2000-05-08,None,6.19,6.47,6.38,6.87,6.86,6.83,6.82,6.57,6.69,6.25
-,2000-05-09,None,6.14,6.41,6.37,6.86,6.82,6.75,6.77,6.53,6.64,6.22
-,2000-05-10,None,6.14,6.41,6.36,6.84,6.79,6.69,6.7,6.47,6.56,6.18
-,2000-05-11,None,6.14,6.43,6.37,6.82,6.78,6.67,6.68,6.43,6.54,6.16
-,2000-05-12,None,6.14,6.52,6.44,6.91,6.86,6.76,6.77,6.51,6.62,6.2
-,2000-05-15,None,6.25,6.55,6.44,6.88,6.82,6.73,6.72,6.47,6.56,6.17
-,2000-05-16,None,6.2,6.53,6.43,6.89,6.84,6.72,6.69,6.43,6.52,6.12
-,2000-05-17,None,6.05,6.44,6.42,6.9,6.84,6.74,6.74,6.48,6.58,6.18
-,2000-05-18,None,5.92,6.4,6.39,6.93,6.88,6.79,6.83,6.56,6.66,6.24
-,2000-05-19,None,5.89,6.4,6.32,6.86,6.8,6.71,6.76,6.51,6.64,6.22
-,2000-05-22,None,6.01,6.42,6.29,6.81,6.75,6.66,6.69,6.44,6.58,6.18
-,2000-05-23,None,6.01,6.43,6.3,6.83,6.77,6.68,6.7,6.45,6.58,6.17
-,2000-05-24,None,5.92,6.41,6.29,6.79,6.76,6.71,6.72,6.47,6.61,6.19
-,2000-05-25,None,5.85,6.37,6.27,6.71,6.69,6.64,6.63,6.39,6.5,6.11
-,2000-05-26,None,5.83,6.36,6.27,6.69,6.65,6.57,6.57,6.33,6.45,6.06
-,2000-05-30,None,5.87,6.44,6.28,6.74,6.7,6.62,6.61,6.38,6.5,6.09
-,2000-05-31,None,5.63,6.35,6.37,6.69,6.66,6.54,6.52,6.29,6.42,6.02
-,2000-06-01,None,5.74,6.27,6.32,6.61,6.56,6.44,6.44,6.2,6.33,5.95
-,2000-06-02,None,5.87,6.25,6.23,6.52,6.48,6.37,6.39,6.15,6.31,5.94
-,2000-06-05,None,5.98,6.32,6.22,6.49,6.44,6.33,6.36,6.12,6.28,5.91
-,2000-06-06,None,5.99,6.33,6.24,6.51,6.46,6.35,6.37,6.14,6.28,5.91
-,2000-06-07,None,5.92,6.3,6.23,6.52,6.47,6.35,6.35,6.13,6.26,5.89
-,2000-06-08,None,5.91,6.27,6.22,6.56,6.5,6.37,6.36,6.13,6.25,5.89
-,2000-06-09,None,5.92,6.28,6.23,6.56,6.5,6.36,6.36,6.13,6.26,5.89
-,2000-06-12,None,5.93,6.27,6.2,6.52,6.47,6.33,6.32,6.09,6.23,5.88
-,2000-06-13,None,5.88,6.24,6.17,6.49,6.44,6.32,6.35,6.11,6.3,5.94
-,2000-06-14,None,5.82,6.22,6.13,6.44,6.38,6.26,6.28,6.06,6.25,5.91
-,2000-06-15,None,5.84,6.23,6.13,6.44,6.39,6.26,6.27,6.05,6.26,5.93
-,2000-06-16,None,5.83,6.2,6.09,6.38,6.32,6.19,6.21,5.99,6.21,5.88
-,2000-06-19,None,5.84,6.2,6.11,6.4,6.34,6.2,6.23,6.0,6.24,5.89
-,2000-06-20,None,5.79,6.19,6.12,6.43,6.37,6.23,6.26,6.03,6.25,5.9
-,2000-06-21,None,5.81,6.19,6.16,6.5,6.45,6.32,6.35,6.11,6.32,5.96
-,2000-06-22,None,5.84,6.16,6.16,6.5,6.45,6.32,6.35,6.12,6.33,5.98
-,2000-06-23,None,5.86,6.2,6.19,6.55,6.49,6.37,6.42,6.19,6.38,6.04
-,2000-06-26,None,5.82,6.23,6.16,6.5,6.43,6.29,6.34,6.11,6.34,5.99
-,2000-06-27,None,5.83,6.23,6.16,6.5,6.43,6.29,6.33,6.1,6.31,5.95
-,2000-06-28,None,5.81,6.22,6.14,6.43,6.38,6.28,6.33,6.11,6.33,5.97
-,2000-06-29,None,5.85,6.22,6.11,6.37,6.32,6.21,6.27,6.04,6.24,5.88
-,2000-06-30,None,5.88,6.23,6.08,6.38,6.31,6.18,6.25,6.03,6.26,5.9
-,2000-07-03,None,6.0,6.24,6.07,6.31,6.24,6.12,6.19,6.0,6.22,5.87
-,2000-07-05,None,5.99,6.19,6.06,6.29,6.23,6.12,6.18,5.99,6.21,5.86
-,2000-07-06,None,6.02,6.21,6.1,6.34,6.28,6.16,6.24,6.05,6.27,5.91
-,2000-07-07,None,6.04,6.19,6.07,6.29,6.23,6.11,6.17,6.01,6.23,5.87
-,2000-07-10,None,6.1,6.23,6.09,6.31,6.24,6.13,6.21,6.04,6.23,5.88
-,2000-07-11,None,6.1,6.24,6.09,6.32,6.26,6.16,6.22,6.06,6.23,5.89
-,2000-07-12,None,6.17,6.26,6.1,6.34,6.29,6.2,6.26,6.09,6.23,5.89
-,2000-07-13,None,6.18,6.27,6.07,6.31,6.24,6.15,6.17,6.01,6.15,5.81
-,2000-07-14,None,6.17,6.28,6.12,6.41,6.35,6.25,6.29,6.1,6.24,5.88
-,2000-07-17,None,6.15,6.3,6.14,6.46,6.4,6.31,6.35,6.17,6.3,5.93
-,2000-07-18,None,6.16,6.31,6.13,6.44,6.39,6.3,6.34,6.16,6.29,5.92
-,2000-07-19,None,6.18,6.33,6.15,6.46,6.4,6.31,6.35,6.16,6.29,5.92
-,2000-07-20,None,6.18,6.29,6.04,6.32,6.25,6.15,6.18,6.01,6.15,5.81
-,2000-07-21,None,6.13,6.27,6.07,6.32,6.25,6.14,6.17,6.01,6.12,5.79
-,2000-07-24,None,6.21,6.29,6.07,6.35,6.28,6.18,6.21,6.04,6.15,5.81
-,2000-07-25,None,6.2,6.28,6.06,6.35,6.28,6.17,6.2,6.04,6.14,5.81
-,2000-07-26,None,6.18,6.28,6.05,6.29,6.24,6.16,6.19,6.04,6.14,5.82
-,2000-07-27,None,6.22,6.29,6.05,6.27,6.21,6.14,6.17,6.02,6.1,5.78
-,2000-07-28,None,6.2,6.3,6.05,6.3,6.24,6.16,6.19,6.04,6.12,5.78
-,2000-07-31,None,6.27,6.42,6.07,6.3,6.24,6.16,6.19,6.04,6.13,5.79
-,2000-08-01,None,6.25,6.39,6.09,6.27,6.2,6.12,6.14,6.0,6.09,5.74
-,2000-08-02,None,6.25,6.35,6.12,6.23,6.18,6.09,6.1,5.98,6.09,5.77
-,2000-08-03,None,6.23,6.34,6.1,6.22,6.16,6.07,6.08,5.95,6.05,5.74
-,2000-08-04,None,6.23,6.31,6.08,6.15,6.1,6.02,6.03,5.91,6.03,5.72
-,2000-08-07,None,6.28,6.34,6.13,6.2,6.16,6.07,6.09,5.97,6.06,5.76
-,2000-08-08,None,6.26,6.32,6.13,6.16,6.13,6.03,6.04,5.93,6.03,5.73
-,2000-08-09,None,6.25,6.32,6.17,6.18,6.14,6.03,6.03,5.81,6.02,5.73
-,2000-08-10,None,6.25,6.31,6.17,6.16,6.11,6.0,6.0,5.76,6.0,5.68
-,2000-08-11,None,6.29,6.35,6.24,6.25,6.19,6.07,6.06,5.79,6.04,5.72
-,2000-08-14,None,6.27,6.36,6.21,6.25,6.2,6.07,6.05,5.78,6.0,5.7
-,2000-08-15,None,6.28,6.37,6.22,6.28,6.24,6.11,6.08,5.81,6.02,5.72
-,2000-08-16,None,6.27,6.35,6.21,6.3,6.26,6.13,6.1,5.83,6.05,5.73
-,2000-08-17,None,6.27,6.35,6.21,6.3,6.26,6.13,6.09,5.81,6.02,5.72
-,2000-08-18,None,6.27,6.32,6.19,6.27,6.22,6.09,6.05,5.78,6.0,5.69
-,2000-08-21,None,6.3,6.38,6.2,6.28,6.23,6.1,6.06,5.79,6.02,5.71
-,2000-08-22,None,6.28,6.36,6.2,6.27,6.21,6.07,6.05,5.78,6.01,5.71
-,2000-08-23,None,6.29,6.37,6.18,6.2,6.16,6.02,5.99,5.73,5.97,5.68
-,2000-08-24,None,6.29,6.36,6.2,6.19,6.12,6.0,5.98,5.73,5.96,5.67
-,2000-08-25,None,6.31,6.36,6.2,6.19,6.12,6.0,5.98,5.73,5.96,5.67
-,2000-08-28,None,6.32,6.39,6.24,6.23,6.15,6.05,6.04,5.78,6.01,5.72
-,2000-08-29,None,6.31,6.39,6.25,6.26,6.21,6.08,6.07,5.81,6.04,5.75
-,2000-08-30,None,6.32,6.39,6.25,6.24,6.17,6.07,6.07,5.81,6.03,5.74
-,2000-08-31,None,6.31,6.38,6.22,6.18,6.09,5.98,5.98,5.73,5.96,5.67
-,2000-09-01,None,6.27,6.32,6.18,6.09,6.01,5.92,5.91,5.68,5.95,5.67
-,2000-09-05,None,6.27,6.32,6.18,6.09,6.01,5.92,5.91,5.69,5.94,5.67
-,2000-09-06,None,6.21,6.3,6.19,6.11,6.03,5.95,5.96,5.72,5.99,5.71
-,2000-09-07,None,6.2,6.28,6.22,6.14,6.06,5.97,5.99,5.76,6.02,5.72
-,2000-09-08,None,6.14,6.26,6.19,6.11,6.03,5.95,5.97,5.73,5.99,5.7
-,2000-09-11,None,6.11,6.23,6.2,6.12,6.05,5.97,6.0,5.77,6.02,5.73
-,2000-09-12,None,6.09,6.21,6.17,6.12,6.06,5.97,6.0,5.78,6.04,5.76
-,2000-09-13,None,6.09,6.19,6.12,6.09,6.02,5.94,5.95,5.74,6.01,5.73
-,2000-09-14,None,6.14,6.2,6.13,6.11,6.03,5.96,5.99,5.79,6.09,5.81
-,2000-09-15,None,6.14,6.2,6.1,6.07,6.01,5.93,6.02,5.84,6.16,5.9
-,2000-09-18,None,6.15,6.21,6.07,6.04,5.99,5.93,6.03,5.88,6.2,5.96
-,2000-09-19,None,6.17,6.22,6.09,6.05,5.99,5.93,6.01,5.86,6.18,5.92
-,2000-09-20,None,6.16,6.23,6.1,6.11,6.06,5.98,6.06,5.91,6.23,5.97
-,2000-09-21,None,6.16,6.23,6.09,6.11,6.07,5.96,6.03,5.88,6.18,5.93
-,2000-09-22,None,6.16,6.24,6.08,6.09,6.04,5.93,5.99,5.85,6.18,5.92
-,2000-09-25,None,6.18,6.25,6.09,6.11,6.05,5.94,5.99,5.84,6.16,5.9
-,2000-09-26,None,6.18,6.24,6.08,6.07,6.01,5.9,5.95,5.81,6.12,5.86
-,2000-09-27,None,6.2,6.28,6.07,6.0,5.94,5.89,5.96,5.83,6.15,5.9
-,2000-09-28,None,6.25,6.3,6.09,6.02,5.96,5.9,5.96,5.82,6.14,5.89
-,2000-09-29,None,6.23,6.28,6.07,5.98,5.91,5.85,5.93,5.8,6.13,5.88
-,2000-10-02,None,6.27,6.33,6.06,5.98,5.92,5.86,5.95,5.83,6.18,5.93
-,2000-10-03,None,6.24,6.32,6.07,6.0,5.95,5.88,5.99,5.87,6.2,5.94
-,2000-10-04,None,6.24,6.32,6.06,6.03,5.99,5.94,6.01,5.9,6.21,5.95
-,2000-10-05,None,6.25,6.33,6.06,6.02,5.97,5.92,5.98,5.87,6.17,5.91
-,2000-10-06,None,6.24,6.33,6.06,5.98,5.92,5.88,5.92,5.82,6.11,5.85
-,2000-10-10,None,6.27,6.35,6.06,5.98,5.91,5.86,5.91,5.8,6.08,5.83
-,2000-10-11,None,6.23,6.32,6.01,5.93,5.88,5.82,5.88,5.77,6.06,5.83
-,2000-10-12,None,6.19,6.22,5.93,5.86,5.81,5.74,5.82,5.73,6.05,5.82
-,2000-10-13,None,6.19,6.2,5.93,5.84,5.79,5.73,5.82,5.73,6.05,5.8
-,2000-10-16,None,6.28,6.28,5.97,5.89,5.83,5.77,5.84,5.74,6.06,5.81
-,2000-10-17,None,6.3,6.27,5.92,5.83,5.76,5.68,5.77,5.68,6.0,5.77
-,2000-10-18,None,6.3,6.26,5.91,5.82,5.74,5.68,5.76,5.66,6.0,5.77
-,2000-10-19,None,6.32,6.3,5.96,5.86,5.77,5.69,5.76,5.66,5.98,5.76
-,2000-10-20,None,6.31,6.29,5.94,5.84,5.76,5.69,5.73,5.64,5.95,5.73
-,2000-10-23,None,6.34,6.33,5.93,5.82,5.74,5.66,5.67,5.59,5.89,5.68
-,2000-10-24,None,6.35,6.34,5.97,5.86,5.77,5.7,5.71,5.63,5.93,5.71
-,2000-10-25,None,6.39,6.36,6.01,5.87,5.8,5.74,5.76,5.67,5.97,5.75
-,2000-10-26,None,6.36,6.36,6.05,5.9,5.83,5.75,5.77,5.69,5.96,5.74
-,2000-10-27,None,6.35,6.38,6.11,5.94,5.86,5.79,5.82,5.72,5.96,5.74
-,2000-10-30,None,6.39,6.38,6.13,5.97,5.89,5.83,5.84,5.74,5.98,5.76
-,2000-10-31,None,6.38,6.36,6.12,5.94,5.87,5.83,5.87,5.77,6.02,5.79
-,2000-11-01,None,6.37,6.35,6.1,5.88,5.82,5.79,5.83,5.74,6.0,5.78
-,2000-11-02,None,6.37,6.36,6.09,5.87,5.81,5.78,5.82,5.74,6.01,5.79
-,2000-11-03,None,6.38,6.38,6.13,5.94,5.9,5.86,5.91,5.83,6.09,5.86
-,2000-11-06,None,6.42,6.4,6.16,5.99,5.93,5.91,5.96,5.87,6.12,5.89
-,2000-11-07,None,6.42,6.38,6.16,5.99,5.92,5.84,5.96,5.87,6.12,5.9
-,2000-11-08,None,6.41,6.38,6.16,5.99,5.92,5.83,5.95,5.87,6.09,5.89
-,2000-11-09,None,6.4,6.37,6.13,5.94,5.87,5.76,5.89,5.82,6.06,5.85
-,2000-11-10,None,6.37,6.36,6.11,5.92,5.86,5.76,5.87,5.82,6.07,5.88
-,2000-11-13,None,6.39,6.37,6.1,5.9,5.83,5.72,5.84,5.77,6.04,5.85
-,2000-11-14,None,6.37,6.36,6.11,5.92,5.82,5.72,5.81,5.76,6.01,5.81
-,2000-11-15,None,6.38,6.36,6.1,5.9,5.8,5.69,5.78,5.72,5.97,5.77
-,2000-11-16,None,6.35,6.34,6.07,5.87,5.76,5.66,5.74,5.68,5.94,5.75
-,2000-11-17,None,6.35,6.33,6.09,5.88,5.78,5.67,5.76,5.71,5.97,5.78
-,2000-11-20,None,6.36,6.34,6.07,5.87,5.76,5.65,5.73,5.68,5.96,5.76
-,2000-11-21,None,6.36,6.33,6.07,5.86,5.76,5.65,5.73,5.67,5.93,5.74
-,2000-11-22,None,6.36,6.33,6.1,5.85,5.72,5.6,5.68,5.62,5.87,5.68
-,2000-11-24,None,6.36,6.34,6.12,5.86,5.74,5.63,5.7,5.63,5.86,5.67
-,2000-11-27,None,6.33,6.34,6.11,5.86,5.74,5.63,5.71,5.64,5.89,5.71
-,2000-11-28,None,6.28,6.29,6.05,5.79,5.67,5.57,5.64,5.59,5.86,5.67
-,2000-11-29,None,6.24,6.23,5.98,5.69,5.59,5.51,5.6,5.55,5.84,5.66
-,2000-11-30,None,6.21,6.18,5.92,5.61,5.52,5.42,5.5,5.48,5.78,5.6
-,2000-12-01,None,6.23,6.19,5.93,5.62,5.55,5.46,5.56,5.52,5.82,5.64
-,2000-12-04,None,6.15,6.13,5.88,5.59,5.51,5.45,5.56,5.53,5.84,5.66
-,2000-12-05,None,6.08,6.07,5.79,5.49,5.43,5.36,5.45,5.43,5.76,5.59
-,2000-12-06,None,6.09,6.04,5.72,5.42,5.34,5.26,5.33,5.32,5.68,5.52
-,2000-12-07,None,6.11,6.06,5.74,5.45,5.35,5.26,5.34,5.32,5.67,5.51
-,2000-12-08,None,6.09,6.04,5.77,5.5,5.41,5.32,5.39,5.35,5.71,5.55
-,2000-12-11,None,6.08,6.06,5.79,5.52,5.43,5.33,5.42,5.37,5.71,5.54
-,2000-12-12,None,6.06,6.06,5.79,5.54,5.42,5.33,5.42,5.36,5.7,5.53
-,2000-12-13,None,6.06,6.03,5.74,5.45,5.34,5.24,5.33,5.29,5.64,5.48
-,2000-12-14,None,6.06,6.01,5.7,5.43,5.31,5.19,5.28,5.23,5.6,5.45
-,2000-12-15,None,6.02,5.99,5.65,5.38,5.26,5.15,5.24,5.2,5.59,5.44
-,2000-12-18,None,5.95,5.94,5.58,5.33,5.21,5.1,5.19,5.17,5.59,5.44
-,2000-12-19,None,5.93,5.93,5.58,5.35,5.23,5.12,5.22,5.19,5.61,5.47
-,2000-12-20,None,5.82,5.82,5.46,5.24,5.12,5.0,5.13,5.08,5.55,5.42
-,2000-12-21,None,5.38,5.64,5.33,5.14,5.04,4.94,5.1,5.03,5.53,5.41
-,2000-12-22,None,5.27,5.52,5.25,5.1,5.02,4.93,5.07,5.02,5.52,5.4
-,2000-12-26,None,5.85,5.76,5.31,5.1,5.0,4.92,5.09,5.04,5.54,5.41
-,2000-12-27,None,5.75,5.68,5.32,5.1,5.04,4.99,5.17,5.11,5.58,5.45
-,2000-12-28,None,5.87,5.79,5.4,5.18,5.12,5.02,5.21,5.13,5.59,5.44
-,2000-12-29,None,5.89,5.7,5.32,5.11,5.06,4.99,5.16,5.12,5.59,5.46
-,2001-01-02,None,5.87,5.58,5.11,4.87,4.82,4.76,4.97,4.92,5.46,5.35
-,2001-01-03,None,5.69,5.44,5.04,4.92,4.92,4.94,5.18,5.14,5.62,5.49
-,2001-01-04,None,5.37,5.2,4.82,4.77,4.78,4.82,5.07,5.03,5.56,5.44
-,2001-01-05,None,5.12,4.98,4.6,4.56,4.57,4.66,4.93,4.93,5.5,5.41
-,2001-01-08,None,5.19,5.03,4.61,4.54,4.55,4.65,4.94,4.94,5.52,5.42
-,2001-01-09,None,5.24,5.11,4.71,4.64,4.65,4.73,4.98,4.98,5.53,5.43
-,2001-01-10,None,5.29,5.16,4.82,4.76,4.78,4.83,5.09,5.1,5.6,5.49
-,2001-01-11,None,5.31,5.17,4.84,4.77,4.78,4.85,5.12,5.14,5.67,5.55
-,2001-01-12,None,5.33,5.24,4.96,4.9,4.91,4.97,5.24,5.25,5.74,5.63
-,2001-01-16,None,5.38,5.27,4.95,4.89,4.89,4.96,5.22,5.24,5.71,5.6
-,2001-01-17,None,5.36,5.26,4.91,4.84,4.84,4.87,5.14,5.19,5.64,5.52
-,2001-01-18,None,5.28,5.12,4.76,4.72,4.73,4.74,5.06,5.12,5.57,5.47
-,2001-01-19,None,5.24,5.11,4.79,4.75,4.76,4.84,5.14,5.19,5.67,5.56
-,2001-01-22,None,5.23,5.11,4.79,4.75,4.78,4.87,5.19,5.25,5.71,5.61
-,2001-01-23,None,5.24,5.14,4.85,4.82,4.83,4.96,5.24,5.3,5.76,5.65
-,2001-01-24,None,5.28,5.15,4.86,4.81,4.84,4.98,5.27,5.33,5.78,5.67
-,2001-01-25,None,5.28,5.13,4.83,4.78,4.8,4.94,5.23,5.29,5.73,5.61
-,2001-01-26,None,5.17,5.05,4.8,4.78,4.81,4.93,5.23,5.29,5.75,5.64
-,2001-01-29,None,5.11,5.04,4.78,4.77,4.8,4.97,5.25,5.32,5.78,5.69
-,2001-01-30,None,5.02,4.95,4.68,4.7,4.75,4.91,5.17,5.24,5.68,5.59
-,2001-01-31,None,4.99,4.83,4.6,4.62,4.67,4.85,5.08,5.19,5.65,5.54
-,2001-02-01,None,5.0,4.81,4.56,4.55,4.59,4.78,5.01,5.1,5.55,5.46
-,2001-02-02,None,5.06,4.91,4.67,4.65,4.71,4.86,5.09,5.17,5.6,5.51
-,2001-02-05,None,5.06,4.95,4.7,4.68,4.71,4.88,5.09,5.18,5.58,5.48
-,2001-02-06,None,5.07,4.96,4.74,4.72,4.76,4.92,5.13,5.22,5.61,5.51
-,2001-02-07,None,5.07,4.95,4.73,4.7,4.74,4.91,5.12,5.1,5.61,5.52
-,2001-02-08,None,5.08,4.96,4.74,4.73,4.77,4.93,5.13,5.1,5.62,5.44
-,2001-02-09,None,5.06,4.92,4.68,4.67,4.7,4.85,5.05,5.03,5.55,5.38
-,2001-02-12,None,5.04,4.94,4.7,4.67,4.71,4.86,5.08,5.05,5.6,5.42
-,2001-02-13,None,5.05,4.98,4.77,4.75,4.78,4.9,5.11,5.07,5.62,5.43
-,2001-02-14,None,5.07,5.02,4.84,4.84,4.87,4.99,5.16,5.13,5.64,5.44
-,2001-02-15,None,5.08,5.04,4.9,4.89,4.92,5.06,5.23,5.19,5.71,5.5
-,2001-02-16,None,5.02,4.95,4.78,4.75,4.79,4.94,5.14,5.11,5.67,5.46
-,2001-02-20,None,5.04,4.95,4.77,4.73,4.77,4.94,5.13,5.11,5.66,5.46
-,2001-02-21,None,5.02,4.93,4.74,4.68,4.75,4.96,5.16,5.14,5.7,5.49
-,2001-02-22,None,5.01,4.87,4.68,4.63,4.72,4.94,5.16,5.15,5.72,5.52
-,2001-02-23,None,4.89,4.72,4.58,4.53,4.63,4.86,5.11,5.1,5.66,5.49
-,2001-02-26,None,4.81,4.69,4.48,4.46,4.54,4.81,5.05,5.05,5.62,5.45
-,2001-02-27,None,4.82,4.64,4.47,4.44,4.51,4.75,4.97,4.96,5.51,5.34
-,2001-02-28,None,4.85,4.7,4.47,4.41,4.48,4.7,4.93,4.92,5.51,5.34
-,2001-03-01,None,4.84,4.68,4.45,4.41,4.48,4.67,4.88,4.87,5.45,5.29
-,2001-03-02,None,4.84,4.69,4.48,4.48,4.53,4.75,4.98,4.95,5.55,5.38
-,2001-03-05,None,4.82,4.7,4.51,4.49,4.57,4.78,5.0,4.98,5.55,5.36
-,2001-03-06,None,4.79,4.68,4.5,4.49,4.55,4.78,5.0,4.99,5.56,5.38
-,2001-03-07,None,4.69,4.63,4.44,4.43,4.5,4.72,4.94,4.92,5.49,5.32
-,2001-03-08,None,4.68,4.59,4.42,4.43,4.49,4.7,4.9,4.89,5.48,5.3
-,2001-03-09,None,4.72,4.63,4.46,4.47,4.53,4.75,4.96,4.95,5.5,5.32
-,2001-03-12,None,4.66,4.6,4.43,4.46,4.54,4.72,4.94,4.92,5.48,5.31
-,2001-03-13,None,4.66,4.57,4.43,4.46,4.53,4.75,4.97,4.95,5.5,5.34
-,2001-03-14,None,4.54,4.46,4.29,4.32,4.4,4.62,4.86,4.84,5.43,5.28
-,2001-03-15,None,4.52,4.42,4.19,4.22,4.31,4.55,4.82,4.81,5.43,5.29
-,2001-03-16,None,4.54,4.38,4.19,4.26,4.35,4.54,4.79,4.78,5.41,5.28
-,2001-03-19,None,4.53,4.4,4.25,4.32,4.4,4.58,4.83,4.82,5.44,5.3
-,2001-03-20,None,4.49,4.34,4.18,4.24,4.33,4.52,4.78,4.78,5.41,5.27
-,2001-03-21,None,4.31,4.29,4.14,4.21,4.29,4.49,4.76,4.77,5.42,5.28
-,2001-03-22,None,4.26,4.27,4.1,4.17,4.26,4.44,4.71,4.73,5.38,5.25
-,2001-03-23,None,4.29,4.32,4.17,4.24,4.33,4.52,4.78,4.8,5.43,5.3
-,2001-03-26,None,4.29,4.26,4.18,4.27,4.37,4.56,4.82,4.85,5.5,5.36
-,2001-03-27,None,4.35,4.27,4.29,4.41,4.51,4.73,4.97,5.0,5.61,5.45
-,2001-03-28,None,4.34,4.17,4.22,4.3,4.42,4.68,4.94,4.97,5.61,5.47
-,2001-03-29,None,4.32,4.14,4.16,4.27,4.4,4.67,4.93,4.98,5.63,5.48
-,2001-03-30,None,4.3,4.09,4.09,4.18,4.33,4.62,4.86,4.93,5.6,5.46
-,2001-04-02,None,4.22,4.16,4.1,4.22,4.37,4.66,4.92,4.98,5.64,5.49
-,2001-04-03,None,4.15,4.09,4.01,4.15,4.3,4.6,4.87,4.94,5.62,5.48
-,2001-04-04,None,4.1,4.05,3.97,4.12,4.27,4.58,4.86,4.94,5.62,5.5
-,2001-04-05,None,4.11,4.08,4.01,4.19,4.33,4.63,4.91,4.98,5.66,5.53
-,2001-04-06,None,3.94,3.95,3.9,4.07,4.22,4.52,4.8,4.89,5.57,5.46
-,2001-04-09,None,3.93,3.95,3.94,4.1,4.26,4.56,4.83,4.93,5.61,5.5
-,2001-04-10,None,3.94,4.0,4.04,4.24,4.4,4.7,4.99,5.09,5.76,5.63
-,2001-04-11,None,4.08,4.11,4.11,4.29,4.44,4.75,5.02,5.12,5.75,5.6
-,2001-04-12,None,4.01,4.11,4.17,4.36,4.52,4.83,5.09,5.17,5.77,5.61
-,2001-04-16,None,4.15,4.21,4.26,4.49,4.65,4.94,5.2,5.28,5.86,5.7
-,2001-04-17,None,4.12,4.16,4.17,4.41,4.57,4.87,5.12,5.21,5.8,5.65
-,2001-04-18,None,3.91,3.95,3.97,4.26,4.43,4.75,5.02,5.14,5.79,5.65
-,2001-04-19,None,3.87,3.94,3.94,4.29,4.5,4.86,5.15,5.27,5.91,5.77
-,2001-04-20,None,3.77,3.83,3.88,4.26,4.5,4.88,5.16,5.29,5.92,5.79
-,2001-04-23,None,3.75,3.78,3.77,4.15,4.38,4.78,5.06,5.2,5.84,5.73
-,2001-04-24,None,3.8,3.78,3.76,4.16,4.39,4.78,5.07,5.22,5.87,5.75
-,2001-04-25,None,3.84,3.87,3.85,4.2,4.45,4.88,5.14,5.28,5.91,5.78
-,2001-04-26,None,3.83,3.83,3.83,4.14,4.4,4.79,5.06,5.2,5.82,5.71
-,2001-04-27,None,3.85,3.89,3.91,4.28,4.53,4.94,5.2,5.34,5.94,5.81
-,2001-04-30,None,3.95,3.97,3.94,4.3,4.55,4.97,5.22,5.35,5.92,5.78
-,2001-05-01,None,3.92,3.92,3.91,4.23,4.5,4.94,5.17,5.3,5.87,5.75
-,2001-05-02,None,3.89,3.93,3.95,4.27,4.53,4.95,5.18,5.31,5.83,5.71
-,2001-05-03,None,3.84,3.89,3.89,4.22,4.48,4.87,5.09,5.22,5.75,5.64
-,2001-05-04,None,3.74,3.78,3.79,4.14,4.41,4.83,5.06,5.21,5.77,5.65
-,2001-05-07,None,3.74,3.73,3.73,4.12,4.39,4.82,5.06,5.21,5.78,5.68
-,2001-05-08,None,3.7,3.7,3.7,4.1,4.3,4.68,5.07,5.24,5.81,5.72
-,2001-05-09,None,3.72,3.66,3.69,4.07,4.27,4.65,5.01,5.2,5.76,5.67
-,2001-05-10,None,3.74,3.7,3.78,4.17,4.38,4.76,5.13,5.31,5.86,5.75
-,2001-05-11,None,3.78,3.79,3.89,4.36,4.58,4.99,5.34,5.51,6.02,5.88
-,2001-05-14,None,3.71,3.76,3.79,4.29,4.53,4.94,5.28,5.46,5.99,5.85
-,2001-05-15,None,3.63,3.7,3.75,4.28,4.52,4.95,5.33,5.5,6.03,5.89
-,2001-05-16,None,3.57,3.67,3.72,4.25,4.51,4.95,5.3,5.48,6.01,5.86
-,2001-05-17,None,3.57,3.7,3.75,4.33,4.58,4.99,5.29,5.46,5.96,5.8
-,2001-05-18,None,3.61,3.73,3.79,4.37,4.6,4.99,5.28,5.41,5.93,5.76
-,2001-05-21,None,3.65,3.77,3.83,4.37,4.6,4.99,5.29,5.41,5.92,5.75
-,2001-05-22,None,3.64,3.76,3.79,4.34,4.58,4.99,5.29,5.42,5.95,5.78
-,2001-05-23,None,3.64,3.72,3.75,4.29,4.53,4.96,5.29,5.41,5.95,5.79
-,2001-05-24,None,3.7,3.72,3.79,4.32,4.59,5.05,5.38,5.52,6.04,5.87
-,2001-05-25,None,3.66,3.69,3.76,4.31,4.58,5.04,5.38,5.52,6.04,5.86
-,2001-05-29,None,3.71,3.68,3.76,4.33,4.6,5.06,5.4,5.54,6.05,5.86
-,2001-05-30,None,3.68,3.65,3.75,4.34,4.61,5.07,5.39,5.54,6.04,5.86
-,2001-05-31,None,3.63,3.59,3.63,4.22,4.49,4.94,5.27,5.43,5.95,5.78
-,2001-06-01,None,3.67,3.61,3.67,4.22,4.49,4.94,5.24,5.39,5.89,5.71
-,2001-06-04,None,3.68,3.64,3.68,4.19,4.47,4.93,5.22,5.35,5.87,5.69
-,2001-06-05,None,3.63,3.6,3.61,4.12,4.39,4.84,5.15,5.29,5.85,5.66
-,2001-06-06,None,3.62,3.6,3.62,4.12,4.38,4.83,5.15,5.27,5.83,5.65
-,2001-06-07,None,3.63,3.6,3.63,4.14,4.41,4.88,5.21,5.33,5.89,5.72
-,2001-06-08,None,3.64,3.63,3.64,4.17,4.45,4.93,5.25,5.38,5.9,5.73
-,2001-06-11,None,3.6,3.62,3.64,4.11,4.4,4.87,5.19,5.32,5.85,5.69
-,2001-06-12,None,3.56,3.6,3.62,4.09,4.37,4.82,5.14,5.27,5.81,5.65
-,2001-06-13,None,3.55,3.58,3.6,4.08,4.35,4.81,5.15,5.28,5.81,5.66
-,2001-06-14,None,3.56,3.59,3.56,4.04,4.3,4.76,5.11,5.26,5.8,5.65
-,2001-06-15,None,3.52,3.55,3.53,4.01,4.26,4.74,5.12,5.27,5.83,5.68
-,2001-06-18,None,3.52,3.49,3.48,3.98,4.24,4.73,5.1,5.27,5.84,5.7
-,2001-06-19,None,3.51,3.49,3.48,3.99,4.25,4.72,5.08,5.26,5.82,5.69
-,2001-06-20,None,3.49,3.47,3.45,3.98,4.24,4.72,5.06,5.24,5.8,5.67
-,2001-06-21,None,3.51,3.48,3.47,3.99,4.25,4.7,5.05,5.22,5.77,5.64
-,2001-06-22,None,3.45,3.42,3.41,3.93,4.18,4.63,4.98,5.14,5.7,5.58
-,2001-06-25,None,3.46,3.46,3.48,3.96,4.22,4.65,5.0,5.16,5.72,5.59
-,2001-06-26,None,3.46,3.49,3.53,4.03,4.3,4.74,5.08,5.24,5.78,5.65
-,2001-06-27,None,3.52,3.55,3.59,4.06,4.36,4.82,5.11,5.26,5.77,5.62
-,2001-06-28,None,3.64,3.64,3.69,4.22,4.48,4.92,5.23,5.35,5.85,5.68
-,2001-06-29,None,3.65,3.63,3.72,4.25,4.52,4.97,5.28,5.42,5.91,5.75
-,2001-07-02,None,3.67,3.61,3.74,4.21,4.47,4.88,5.21,5.37,5.86,5.7
-,2001-07-03,None,3.66,3.63,3.71,4.24,4.48,4.91,5.25,5.41,5.9,5.73
-,2001-07-05,None,3.65,3.63,3.7,4.24,4.5,4.95,5.29,5.44,5.94,5.76
-,2001-07-06,None,3.63,3.57,3.63,4.16,4.43,4.9,5.24,5.41,5.92,5.75
-,2001-07-09,None,3.65,3.62,3.66,4.15,4.41,4.88,5.21,5.37,5.87,5.7
-,2001-07-10,None,3.63,3.58,3.61,4.08,4.34,4.82,5.15,5.32,5.83,5.68
-,2001-07-11,None,3.58,3.55,3.6,4.07,4.33,4.81,5.14,5.31,5.84,5.69
-,2001-07-12,None,3.6,3.56,3.6,4.07,4.33,4.8,5.1,5.27,5.8,5.65
-,2001-07-13,None,3.62,3.59,3.64,4.12,4.37,4.82,5.11,5.27,5.79,5.64
-,2001-07-16,None,3.64,3.61,3.63,4.07,4.32,4.76,5.05,5.21,5.74,5.59
-,2001-07-17,None,3.61,3.59,3.63,4.09,4.34,4.78,5.06,5.22,5.74,5.59
-,2001-07-18,None,3.54,3.51,3.57,3.96,4.26,4.66,4.94,5.12,5.65,5.52
-,2001-07-19,None,3.55,3.54,3.6,3.98,4.28,4.69,4.96,5.13,5.66,5.53
-,2001-07-20,None,3.53,3.53,3.59,3.98,4.29,4.7,4.98,5.15,5.67,5.54
-,2001-07-23,None,3.56,3.55,3.59,3.98,4.28,4.68,4.95,5.13,5.66,5.53
-,2001-07-24,None,3.56,3.52,3.59,3.97,4.26,4.67,4.94,5.13,5.64,5.52
-,2001-07-25,None,3.56,3.54,3.62,3.98,4.3,4.74,5.01,5.2,5.7,5.58
-,2001-07-26,None,3.56,3.52,3.59,3.94,4.24,4.71,4.99,5.19,5.71,5.59
-,2001-07-27,None,3.55,3.48,3.57,3.87,4.15,4.64,4.93,5.13,5.65,5.55
-,2001-07-30,None,3.57,3.49,3.56,3.86,4.14,4.63,4.91,5.11,5.63,5.53
-,2001-07-31,3.67,3.54,3.47,3.53,3.79,4.06,4.57,4.86,5.07,5.61,5.51
-,2001-08-01,3.65,3.53,3.47,3.56,3.83,4.09,4.62,4.9,5.11,5.63,5.53
-,2001-08-02,3.65,3.53,3.46,3.57,3.89,4.17,4.69,4.97,5.17,5.68,5.57
-,2001-08-03,3.63,3.52,3.47,3.57,3.91,4.22,4.72,4.99,5.2,5.7,5.59
-,2001-08-06,3.62,3.52,3.47,3.56,3.88,4.17,4.71,4.99,5.19,5.7,5.59
-,2001-08-07,3.63,3.52,3.47,3.56,3.9,4.19,4.72,5.0,5.2,5.71,5.6
-,2001-08-08,3.61,3.49,3.41,3.46,3.77,4.05,4.61,4.87,4.99,5.61,5.52
-,2001-08-09,3.61,3.45,3.4,3.48,3.77,4.07,4.66,4.93,5.04,5.64,5.54
-,2001-08-10,3.58,3.43,3.37,3.45,3.73,4.03,4.61,4.88,4.99,5.61,5.52
-,2001-08-13,3.57,3.45,3.37,3.43,3.7,4.0,4.57,4.86,4.97,5.6,5.52
-,2001-08-14,3.54,3.43,3.38,3.46,3.74,4.03,4.59,4.87,4.97,5.61,5.51
-,2001-08-15,3.52,3.43,3.41,3.47,3.8,4.11,4.62,4.9,5.0,5.62,5.52
-,2001-08-16,3.48,3.39,3.36,3.43,3.75,4.04,4.58,4.84,4.95,5.58,5.48
-,2001-08-17,3.46,3.36,3.33,3.39,3.67,3.95,4.49,4.75,4.84,5.51,5.43
-,2001-08-20,3.48,3.42,3.4,3.44,3.74,4.02,4.55,4.81,4.91,5.55,5.46
-,2001-08-21,3.46,3.39,3.35,3.41,3.69,3.96,4.5,4.79,4.87,5.54,5.44
-,2001-08-22,3.46,3.38,3.37,3.44,3.76,4.03,4.53,4.81,4.91,5.53,5.44
-,2001-08-23,3.49,3.4,3.36,3.46,3.72,3.99,4.52,4.79,4.89,5.5,5.41
-,2001-08-24,3.49,3.42,3.37,3.48,3.76,4.03,4.55,4.82,4.93,5.54,5.45
-,2001-08-27,3.52,3.45,3.4,3.51,3.78,4.04,4.57,4.83,4.94,5.56,5.47
-,2001-08-28,3.53,3.41,3.35,3.46,3.71,3.97,4.48,4.73,4.85,5.49,5.41
-,2001-08-29,3.48,3.42,3.33,3.44,3.67,3.92,4.43,4.67,4.78,5.44,5.36
-,2001-08-30,3.41,3.36,3.28,3.38,3.61,3.88,4.42,4.68,4.79,5.45,5.37
-,2001-08-31,3.4,3.37,3.31,3.41,3.64,3.91,4.46,4.72,4.85,5.47,5.39
-,2001-09-04,3.43,3.44,3.43,3.55,3.83,4.1,4.63,4.88,4.99,5.59,5.5
-,2001-09-05,3.49,3.41,3.39,3.47,3.79,4.07,4.61,4.86,4.97,5.57,5.48
-,2001-09-06,3.44,3.34,3.33,3.4,3.65,3.93,4.48,4.73,4.86,5.5,5.41
-,2001-09-07,3.4,3.27,3.2,3.29,3.53,3.82,4.39,4.67,4.8,5.45,5.39
-,2001-09-10,3.4,3.26,3.23,3.31,3.53,3.82,4.41,4.69,4.84,5.5,5.43
-,2001-09-13,2.73,2.74,2.75,2.81,2.99,3.32,4.03,4.41,4.64,5.41,5.39
-,2001-09-14,2.54,2.64,2.67,2.73,2.87,3.17,3.92,4.31,4.57,5.38,5.35
-,2001-09-17,2.47,2.59,2.62,2.72,2.96,3.3,3.99,4.38,4.63,5.44,5.41
-,2001-09-18,2.34,2.48,2.56,2.69,2.96,3.31,4.01,4.46,4.72,5.59,5.55
-,2001-09-19,2.0,2.19,2.33,2.49,2.81,3.18,3.9,4.41,4.69,5.59,5.56
-,2001-09-20,2.04,2.22,2.38,2.56,2.91,3.27,3.97,4.47,4.75,5.67,5.62
-,2001-09-21,2.12,2.25,2.34,2.53,2.91,3.27,3.94,4.43,4.7,5.62,5.59
-,2001-09-24,2.38,2.38,2.39,2.56,2.94,3.3,4.0,4.47,4.73,5.61,5.58
-,2001-09-25,2.58,2.4,2.37,2.51,2.88,3.25,3.97,4.45,4.72,5.6,5.58
-,2001-09-26,2.51,2.38,2.34,2.48,2.82,3.18,3.91,4.39,4.65,5.52,5.5
-,2001-09-27,2.34,2.38,2.31,2.43,2.78,3.15,3.87,4.33,4.58,5.46,5.45
-,2001-09-28,2.28,2.4,2.36,2.49,2.86,3.22,3.93,4.37,4.6,5.45,5.42
-,2001-10-01,2.26,2.37,2.37,2.47,2.82,3.18,3.9,4.33,4.55,5.39,5.38
-,2001-10-02,2.27,2.26,2.27,2.43,2.77,3.14,3.87,4.31,4.53,5.36,5.34
-,2001-10-03,2.21,2.23,2.24,2.38,2.77,3.14,3.86,4.29,4.5,5.34,5.32
-,2001-10-04,2.22,2.21,2.21,2.37,2.75,3.14,3.88,4.29,4.53,5.33,5.31
-,2001-10-05,2.21,2.19,2.18,2.33,2.71,3.1,3.87,4.26,4.52,5.34,5.31
-,2001-10-09,2.24,2.22,2.2,2.35,2.74,3.16,3.96,4.35,4.62,5.42,5.39
-,2001-10-10,2.3,2.22,2.2,2.35,2.78,3.19,3.96,4.35,4.61,5.38,5.36
-,2001-10-11,2.3,2.27,2.26,2.44,2.88,3.3,4.03,4.43,4.69,5.45,5.41
-,2001-10-12,2.31,2.25,2.24,2.4,2.81,3.23,4.01,4.41,4.68,5.45,5.42
-,2001-10-15,2.33,2.25,2.22,2.39,2.78,3.18,3.97,4.36,4.62,5.4,5.38
-,2001-10-16,2.32,2.22,2.2,2.37,2.77,3.16,3.93,4.32,4.59,5.38,5.35
-,2001-10-17,2.34,2.22,2.2,2.37,2.8,3.21,3.93,4.32,4.59,5.35,5.32
-,2001-10-18,2.28,2.19,2.19,2.36,2.77,3.18,3.93,4.32,4.58,5.34,5.32
-,2001-10-19,2.29,2.19,2.17,2.34,2.77,3.19,3.96,4.37,4.63,5.39,5.36
-,2001-10-22,2.29,2.22,2.18,2.35,2.79,3.22,3.98,4.37,4.63,5.38,5.36
-,2001-10-23,2.32,2.2,2.16,2.37,2.81,3.24,4.01,4.4,4.66,5.4,5.38
-,2001-10-24,2.3,2.17,2.13,2.32,2.72,3.15,3.96,4.34,4.61,5.32,5.32
-,2001-10-25,2.27,2.14,2.09,2.26,2.63,3.06,3.89,4.29,4.56,5.28,5.28
-,2001-10-26,2.26,2.14,2.09,2.26,2.63,3.06,3.88,4.26,4.53,5.27,5.27
-,2001-10-29,2.24,2.09,2.04,2.18,2.55,2.99,3.82,4.22,4.5,5.24,5.25
-,2001-10-30,2.17,2.05,1.97,2.11,2.48,2.92,3.76,4.14,4.44,5.21,5.22
-,2001-10-31,2.15,2.05,1.95,2.07,2.44,2.87,3.66,4.03,4.3,5.05,4.89
-,2001-11-01,2.18,2.06,1.99,2.1,2.49,2.91,3.66,4.01,4.24,5.0,4.79
-,2001-11-02,2.09,2.01,1.94,2.07,2.48,2.93,3.77,4.12,4.37,5.14,4.96
-,2001-11-05,2.06,2.01,1.96,2.05,2.46,2.91,3.71,4.07,4.31,5.06,4.86
-,2001-11-06,1.98,1.85,1.83,1.97,2.37,2.76,3.54,4.03,4.3,5.05,4.86
-,2001-11-07,1.93,1.8,1.75,1.93,2.32,2.7,3.47,3.95,4.22,4.95,4.79
-,2001-11-08,1.93,1.84,1.8,2.0,2.42,2.81,3.58,4.05,4.32,5.03,4.87
-,2001-11-09,1.92,1.83,1.82,2.02,2.45,2.86,3.62,4.09,4.34,5.05,4.88
-,2001-11-13,1.94,1.84,1.86,2.07,2.54,2.96,3.69,4.17,4.41,5.1,4.92
-,2001-11-14,1.99,1.87,1.9,2.13,2.7,3.11,3.83,4.31,4.54,5.2,5.02
-,2001-11-15,1.99,1.92,2.01,2.34,2.98,3.41,4.1,4.58,4.79,5.41,5.22
-,2001-11-16,2.02,1.95,2.06,2.41,3.09,3.55,4.24,4.72,4.91,5.52,5.3
-,2001-11-19,2.02,1.94,2.0,2.31,2.92,3.38,4.12,4.58,4.8,5.42,5.22
-,2001-11-20,2.02,1.95,1.99,2.31,2.96,3.41,4.17,4.66,4.88,5.5,5.3
-,2001-11-21,2.0,1.96,2.02,2.38,3.11,3.58,4.31,4.78,4.98,5.59,5.35
-,2001-11-23,2.0,1.95,2.02,2.41,3.2,3.68,4.4,4.83,5.04,5.65,5.39
-,2001-11-26,2.0,1.98,2.04,2.43,3.22,3.7,4.41,4.85,5.05,5.66,5.39
-,2001-11-27,2.01,1.92,1.98,2.36,3.11,3.58,4.32,4.77,4.98,5.64,5.37
-,2001-11-28,1.96,1.87,1.92,2.26,3.12,3.6,4.33,4.76,4.98,5.63,5.36
-,2001-11-29,1.9,1.8,1.8,2.03,2.87,3.33,4.1,4.56,4.79,5.52,5.24
-,2001-11-30,1.87,1.78,1.79,2.06,2.84,3.3,4.08,4.55,4.78,5.54,5.27
-,2001-12-03,1.85,1.78,1.81,2.08,2.82,3.28,4.04,4.51,4.75,5.49,5.26
-,2001-12-04,1.81,1.74,1.8,2.07,2.81,3.3,3.99,4.46,4.7,5.43,5.22
-,2001-12-05,1.77,1.77,1.88,2.27,3.07,3.55,4.24,4.7,4.92,5.61,5.35
-,2001-12-06,1.73,1.75,1.91,2.35,3.19,3.7,4.38,4.83,5.04,5.72,5.47
-,2001-12-07,1.69,1.69,1.81,2.26,3.19,3.72,4.5,4.98,5.2,5.9,5.6
-,2001-12-10,1.68,1.71,1.79,2.17,3.1,3.63,4.46,4.95,5.17,5.86,5.58
-,2001-12-11,1.66,1.66,1.73,2.12,3.03,3.56,4.38,4.89,5.13,5.83,5.55
-,2001-12-12,1.69,1.67,1.74,2.13,2.97,3.48,4.29,4.78,5.02,5.74,5.47
-,2001-12-13,1.69,1.69,1.78,2.2,3.09,3.62,4.4,4.9,5.13,5.81,5.53
-,2001-12-14,1.7,1.73,1.81,2.22,3.2,3.73,4.52,5.01,5.24,5.89,5.59
-,2001-12-17,1.72,1.74,1.84,2.24,3.21,3.74,4.54,5.03,5.26,5.91,5.61
-,2001-12-18,1.72,1.71,1.81,2.24,3.13,3.66,4.46,4.93,5.16,5.81,5.52
-,2001-12-19,1.69,1.69,1.8,2.23,3.11,3.63,4.38,4.84,5.08,5.73,5.45
-,2001-12-20,1.67,1.69,1.79,2.22,3.15,3.67,4.42,4.86,5.08,5.73,5.43
-,2001-12-21,1.67,1.71,1.81,2.23,3.17,3.69,4.45,4.89,5.12,5.76,5.45
-,2001-12-24,1.66,1.72,1.83,2.24,3.22,3.74,4.49,4.95,5.18,5.81,5.49
-,2001-12-26,1.77,1.75,1.87,2.34,3.26,3.8,4.55,5.0,5.22,5.84,5.52
-,2001-12-27,1.75,1.74,1.84,2.27,3.19,3.71,4.46,4.9,5.13,5.78,5.49
-,2001-12-28,1.73,1.72,1.83,2.26,3.16,3.69,4.46,4.93,5.15,5.82,5.54
-,2001-12-31,1.68,1.74,1.83,2.17,3.07,3.59,4.38,4.84,5.07,5.74,5.48
-,2002-01-02,1.73,1.74,1.85,2.28,3.22,3.75,4.52,4.97,5.2,5.86,5.56
-,2002-01-03,1.73,1.73,1.82,2.24,3.19,3.71,4.48,4.93,5.16,5.83,5.54
-,2002-01-04,1.72,1.72,1.82,2.25,3.19,3.72,4.5,4.97,5.18,5.87,5.57
-,2002-01-07,1.7,1.68,1.77,2.19,3.08,3.61,4.39,4.86,5.09,5.76,5.49
-,2002-01-08,1.7,1.68,1.77,2.19,3.07,3.6,4.39,4.86,5.1,5.77,5.51
-,2002-01-09,1.68,1.68,1.77,2.17,3.03,3.57,4.38,4.86,5.1,5.76,5.51
-,2002-01-10,1.66,1.68,1.75,2.1,2.94,3.46,4.27,4.74,5.0,5.64,5.42
-,2002-01-11,1.62,1.58,1.62,1.98,2.76,3.28,4.14,4.65,4.92,5.6,5.37
-,2002-01-14,1.62,1.58,1.63,2.0,2.79,3.32,4.15,4.64,4.91,5.62,5.38
-,2002-01-15,1.64,1.6,1.63,1.99,2.79,3.32,4.14,4.62,4.88,5.56,5.34
-,2002-01-16,1.62,1.61,1.65,2.01,2.84,3.36,4.16,4.62,4.88,5.58,5.36
-,2002-01-17,1.6,1.64,1.73,2.09,2.96,3.49,4.28,4.73,4.98,5.65,5.41
-,2002-01-18,1.59,1.62,1.71,2.08,2.91,3.43,4.23,4.69,4.94,5.59,5.36
-,2002-01-22,1.67,1.7,1.77,2.11,2.97,3.48,4.27,4.72,4.96,5.62,5.39
-,2002-01-23,1.7,1.71,1.78,2.15,3.07,3.58,4.36,4.81,5.05,5.73,5.48
-,2002-01-24,1.69,1.72,1.82,2.22,3.15,3.67,4.4,4.82,5.07,5.71,5.47
-,2002-01-25,1.69,1.72,1.83,2.25,3.17,3.71,4.46,4.86,5.1,5.72,5.47
-,2002-01-28,1.71,1.76,1.88,2.28,3.19,3.73,4.48,4.88,5.12,5.72,5.47
-,2002-01-29,1.72,1.72,1.84,2.23,3.05,3.59,4.35,4.76,5.02,5.63,5.4
-,2002-01-30,1.7,1.75,1.86,2.23,3.06,3.61,4.37,4.77,5.02,5.64,5.41
-,2002-01-31,1.69,1.76,1.89,2.29,3.16,3.7,4.42,4.82,5.07,5.68,5.44
-,2002-02-01,1.69,1.76,1.87,2.22,3.08,3.62,4.37,4.78,5.02,5.63,5.4
-,2002-02-04,1.7,1.77,1.87,2.19,2.99,3.52,4.29,4.69,4.94,5.57,5.35
-,2002-02-05,1.74,1.76,1.86,2.22,2.99,3.53,4.29,4.66,4.92,5.56,5.35
-,2002-02-06,1.73,1.74,1.84,2.2,2.98,3.51,4.3,4.71,4.92,5.61,5.38
-,2002-02-07,1.71,1.73,1.83,2.2,2.99,3.54,4.33,4.73,4.93,5.64,5.42
-,2002-02-08,1.69,1.73,1.82,2.16,2.95,3.48,4.28,4.69,4.9,5.6,5.39
-,2002-02-11,1.73,1.75,1.86,2.21,2.95,3.49,4.29,4.7,4.91,5.63,5.41
-,2002-02-12,1.76,1.75,1.87,2.26,3.04,3.58,4.36,4.76,4.97,5.69,5.45
-,2002-02-13,1.75,1.76,1.87,2.27,3.09,3.63,4.4,4.8,5.01,5.72,5.47
-,2002-02-14,1.75,1.75,1.86,2.26,3.07,3.59,4.35,4.76,4.95,5.64,5.42
-,2002-02-15,1.72,1.74,1.84,2.2,2.97,3.5,4.27,4.66,4.86,5.58,5.37
-,2002-02-19,1.73,1.76,1.87,2.23,2.98,3.52,4.28,4.71,4.88,5.61,None
-,2002-02-20,1.75,1.76,1.87,2.24,3.0,3.53,4.28,4.71,4.88,5.6,None
-,2002-02-21,1.76,1.76,1.87,2.25,3.0,3.52,4.27,4.72,4.88,5.58,None
-,2002-02-22,1.75,1.76,1.86,2.22,2.97,3.48,4.23,4.67,4.84,5.55,None
-,2002-02-25,1.76,1.77,1.89,2.26,3.01,3.53,4.26,4.69,4.86,5.56,None
-,2002-02-26,1.78,1.77,1.91,2.31,3.08,3.61,4.33,4.77,4.93,5.63,None
-,2002-02-27,1.77,1.77,1.88,2.27,3.09,3.56,4.22,4.67,4.84,5.56,None
-,2002-02-28,1.76,1.79,1.87,2.25,3.06,3.64,4.27,4.7,4.88,5.61,None
-,2002-03-01,1.78,1.77,1.91,2.33,3.18,3.73,4.43,4.82,4.98,5.7,None
-,2002-03-04,1.77,1.81,1.94,2.36,3.24,3.75,4.43,4.86,5.02,5.71,None
-,2002-03-05,1.78,1.8,1.93,2.36,3.25,3.77,4.44,4.86,5.02,5.7,None
-,2002-03-06,1.77,1.78,1.92,2.34,3.26,3.77,4.45,4.89,5.06,5.74,None
-,2002-03-07,1.77,1.78,1.96,2.43,3.36,3.95,4.65,5.07,5.22,5.88,None
-,2002-03-08,1.77,1.81,2.05,2.57,3.6,4.21,4.77,5.17,5.33,5.95,None
-,2002-03-11,1.8,1.86,2.08,2.59,3.59,4.17,4.77,5.18,5.33,5.96,None
-,2002-03-12,1.82,1.84,2.06,2.57,3.56,4.14,4.75,5.17,5.32,5.96,None
-,2002-03-13,1.8,1.82,2.02,2.52,3.49,4.06,4.69,5.11,5.28,5.95,None
-,2002-03-14,1.79,1.86,2.06,2.59,3.63,4.2,4.83,5.24,5.4,6.05,None
-,2002-03-15,1.79,1.86,2.09,2.61,3.63,4.23,4.8,5.2,5.35,5.98,None
-,2002-03-18,1.77,1.88,2.14,2.65,3.67,4.27,4.79,5.17,5.32,5.95,None
-,2002-03-19,1.81,1.85,2.1,2.61,3.64,4.26,4.78,5.18,5.33,5.96,None
-,2002-03-20,1.79,1.84,2.12,2.66,3.71,4.3,4.87,5.25,5.4,6.04,None
-,2002-03-21,1.78,1.84,2.12,2.66,3.73,4.39,4.88,5.26,5.39,6.02,None
-,2002-03-22,1.78,1.84,2.13,2.7,3.77,4.4,4.9,5.28,5.4,6.04,None
-,2002-03-25,1.78,1.85,2.16,2.75,3.78,4.38,4.92,5.28,5.41,6.03,None
-,2002-03-26,1.82,1.81,2.12,2.69,3.68,4.27,4.85,5.23,5.35,5.96,None
-,2002-03-27,1.77,1.81,2.1,2.65,3.66,4.28,4.85,5.22,5.35,5.96,None
-,2002-03-28,1.76,1.79,2.12,2.7,3.72,4.31,4.91,5.29,5.42,6.03,None
-,2002-04-01,1.79,1.79,2.16,2.76,3.74,4.29,4.93,5.29,5.44,6.04,None
-,2002-04-02,1.79,1.8,2.12,2.68,3.63,4.21,4.84,5.21,5.36,5.96,None
-,2002-04-03,1.77,1.79,2.08,2.61,3.55,4.14,4.76,5.13,5.3,5.92,None
-,2002-04-04,1.77,1.78,2.07,2.61,3.57,4.16,4.76,5.12,5.28,5.89,None
-,2002-04-05,1.76,1.76,2.03,2.54,3.49,4.1,4.68,5.04,5.22,5.84,None
-,2002-04-08,1.76,1.75,2.02,2.61,3.51,4.03,4.7,5.07,5.25,5.89,None
-,2002-04-09,1.73,1.73,2.02,2.55,3.48,4.06,4.67,5.03,5.22,5.84,None
-,2002-04-10,1.72,1.71,1.98,2.52,3.48,4.08,4.68,5.05,5.24,5.88,None
-,2002-04-11,1.72,1.72,1.97,2.51,3.47,4.07,4.66,5.03,5.22,5.85,None
-,2002-04-12,1.71,1.71,1.96,2.44,3.41,4.01,4.6,4.99,5.18,5.81,None
-,2002-04-15,1.71,1.72,1.96,2.44,3.38,3.99,4.57,4.95,5.15,5.78,None
-,2002-04-16,1.71,1.74,1.97,2.46,3.43,4.03,4.62,5.0,5.2,5.83,None
-,2002-04-17,1.71,1.73,1.92,2.43,3.41,3.99,4.64,5.03,5.24,5.9,None
-,2002-04-18,1.7,1.72,1.91,2.4,3.38,3.97,4.64,5.02,5.23,5.88,None
-,2002-04-19,1.69,1.73,1.91,2.39,3.36,3.95,4.62,5.0,5.21,5.85,None
-,2002-04-22,1.67,1.72,1.92,2.41,3.37,3.94,4.62,4.98,5.19,5.85,None
-,2002-04-23,1.68,1.73,1.92,2.41,3.39,3.96,4.62,4.98,5.18,5.83,None
-,2002-04-24,1.67,1.72,1.89,2.35,3.28,3.87,4.53,4.9,5.11,5.77,None
-,2002-04-25,1.68,1.74,1.9,2.33,3.25,3.83,4.52,4.89,5.1,5.77,None
-,2002-04-26,1.68,1.75,1.9,2.31,3.22,3.8,4.49,4.86,5.08,5.73,None
-,2002-04-29,1.73,1.78,1.93,2.36,3.26,3.85,4.55,4.91,5.13,5.77,None
-,2002-04-30,1.77,1.77,1.91,2.35,3.24,3.83,4.53,4.88,5.11,5.74,None
-,2002-05-01,1.76,1.77,1.91,2.33,3.21,3.78,4.49,4.86,5.08,5.71,None
-,2002-05-02,1.74,1.77,1.92,2.35,3.25,3.83,4.54,4.91,5.13,5.74,None
-,2002-05-03,1.73,1.76,1.88,2.28,3.17,3.75,4.48,4.85,5.08,5.7,None
-,2002-05-06,1.74,1.78,1.9,2.3,3.19,3.77,4.5,4.87,5.1,5.71,None
-,2002-05-07,1.77,1.76,1.86,2.27,3.14,3.67,4.43,4.85,5.09,5.71,None
-,2002-05-08,1.76,1.76,1.91,2.37,3.32,3.87,4.58,4.99,5.24,5.84,None
-,2002-05-09,1.74,1.77,1.9,2.33,3.27,3.8,4.53,4.96,5.2,5.8,None
-,2002-05-10,1.73,1.77,1.88,2.27,3.19,3.71,4.46,4.89,5.15,5.77,None
-,2002-05-13,1.77,1.79,1.92,2.36,3.28,3.81,4.54,4.98,5.23,5.86,None
-,2002-05-14,1.78,1.78,1.95,2.43,3.4,3.94,4.64,5.06,5.32,5.94,None
-,2002-05-15,1.76,1.76,1.93,2.41,3.37,3.9,4.59,5.02,5.28,5.92,None
-,2002-05-16,1.74,1.75,1.9,2.35,3.28,3.81,4.52,4.94,5.2,5.87,None
-,2002-05-17,1.73,1.76,1.95,2.45,3.41,3.95,4.6,5.01,5.27,5.94,None
-,2002-05-20,1.73,1.77,1.94,2.41,3.33,3.87,4.53,4.94,5.21,5.88,None
-,2002-05-21,1.73,1.75,1.92,2.38,3.28,3.82,4.49,4.9,5.18,5.84,None
-,2002-05-22,1.72,1.74,1.9,2.34,3.23,3.75,4.43,4.85,5.13,5.8,None
-,2002-05-23,1.73,1.74,1.91,2.38,3.28,3.8,4.46,4.87,5.16,5.83,None
-,2002-05-24,1.71,1.74,1.91,2.37,3.28,3.81,4.47,4.87,5.16,5.83,None
-,2002-05-28,1.73,1.77,1.94,2.41,3.3,3.82,4.46,4.87,5.16,5.83,None
-,2002-05-29,1.73,1.75,1.91,2.35,3.24,3.76,4.41,4.81,5.11,5.79,None
-,2002-05-30,1.73,1.75,1.9,2.31,3.17,3.69,4.36,4.74,5.06,5.74,None
-,2002-05-31,1.72,1.74,1.91,2.34,3.22,3.73,4.37,4.77,5.08,5.77,None
-,2002-06-03,1.72,1.77,1.93,2.35,3.19,3.72,4.36,4.75,5.06,5.76,None
-,2002-06-04,1.73,1.76,1.9,2.31,3.13,3.64,4.31,4.72,5.04,5.75,None
-,2002-06-05,1.75,1.75,1.9,2.33,3.16,3.68,4.35,4.76,5.08,5.79,None
-,2002-06-06,1.74,1.74,1.88,2.3,3.13,3.63,4.3,4.72,5.04,5.75,None
-,2002-06-07,1.74,1.74,1.89,2.31,3.16,3.67,4.36,4.78,5.1,5.81,None
-,2002-06-10,1.75,1.76,1.89,2.3,3.15,3.66,4.34,4.75,5.07,5.76,None
-,2002-06-11,1.75,1.75,1.87,2.27,3.09,3.59,4.29,4.69,5.02,5.71,None
-,2002-06-12,1.74,1.74,1.85,2.25,3.05,3.55,4.24,4.65,4.98,5.68,None
-,2002-06-13,1.71,1.72,1.82,2.2,3.0,3.5,4.2,4.61,4.94,5.65,None
-,2002-06-14,1.71,1.71,1.8,2.16,2.92,3.4,4.1,4.51,4.83,5.54,None
-,2002-06-17,1.7,1.74,1.85,2.2,2.96,3.44,4.14,4.57,4.89,5.61,None
-,2002-06-18,1.7,1.73,1.82,2.16,2.93,3.41,4.13,4.55,4.88,5.6,None
-,2002-06-19,1.69,1.71,1.77,2.07,2.81,3.28,4.01,4.43,4.76,5.51,None
-,2002-06-20,1.68,1.73,1.81,2.12,2.93,3.4,4.11,4.53,4.85,5.59,None
-,2002-06-21,1.68,1.72,1.79,2.09,2.88,3.35,4.06,4.47,4.79,5.54,None
-,2002-06-24,1.66,1.74,1.82,2.15,2.93,3.41,4.13,4.55,4.87,5.6,None
-,2002-06-25,1.74,1.73,1.81,2.16,2.92,3.41,4.13,4.55,4.88,5.62,None
-,2002-06-26,1.72,1.7,1.74,2.05,2.77,3.25,3.99,4.4,4.75,5.53,None
-,2002-06-27,1.7,1.7,1.76,2.09,2.85,3.34,4.08,4.51,4.84,5.63,None
-,2002-06-28,1.69,1.7,1.75,2.06,2.9,3.37,4.09,4.52,4.86,5.65,None
-,2002-07-01,1.71,1.72,1.78,2.09,2.88,3.35,4.08,4.54,4.85,5.64,None
-,2002-07-02,1.72,1.72,1.76,2.04,2.78,3.24,3.99,4.45,4.77,5.56,None
-,2002-07-03,1.71,1.72,1.74,2.02,2.78,3.25,4.0,4.47,4.78,5.57,None
-,2002-07-05,1.71,1.72,1.77,2.08,2.9,3.38,4.13,4.6,4.9,5.67,None
-,2002-07-08,1.73,1.73,1.78,2.08,2.84,3.32,4.07,4.53,4.84,5.63,None
-,2002-07-09,1.72,1.72,1.75,2.01,2.74,3.21,3.98,4.47,4.78,5.57,None
-,2002-07-10,1.73,1.72,1.74,1.97,2.61,3.07,3.85,4.33,4.66,5.48,None
-,2002-07-11,1.72,1.72,1.74,1.95,2.61,3.07,3.86,4.33,4.66,5.47,None
-,2002-07-12,1.71,1.71,1.74,1.97,2.56,3.02,3.82,4.3,4.63,5.45,None
-,2002-07-15,1.71,1.72,1.73,1.97,2.55,3.04,3.85,4.33,4.66,5.49,None
-,2002-07-16,1.74,1.72,1.75,1.99,2.66,3.14,3.93,4.42,4.75,5.58,None
-,2002-07-17,1.72,1.72,1.75,1.99,2.63,3.1,3.89,4.36,4.71,5.54,None
-,2002-07-18,1.72,1.72,1.74,1.95,2.55,3.01,3.82,4.29,4.66,5.52,None
-,2002-07-19,1.71,1.71,1.73,1.94,2.48,2.94,3.76,4.25,4.61,5.47,None
-,2002-07-22,1.71,1.7,1.73,1.94,2.4,2.83,3.65,4.15,4.51,5.4,None
-,2002-07-23,1.73,1.7,1.71,1.91,2.34,2.76,3.59,4.11,4.47,5.39,None
-,2002-07-24,1.7,1.69,1.7,1.89,2.38,2.81,3.6,4.13,4.49,5.42,None
-,2002-07-25,1.71,1.7,1.69,1.86,2.28,2.69,3.51,4.05,4.43,5.39,None
-,2002-07-26,1.71,1.69,1.68,1.8,2.2,2.62,3.46,4.03,4.43,5.42,None
-,2002-07-29,1.73,1.72,1.74,1.93,2.41,2.84,3.68,4.22,4.62,5.54,None
-,2002-07-30,1.73,1.72,1.75,1.96,2.44,2.88,3.71,4.24,4.65,5.54,None
-,2002-07-31,1.73,1.71,1.7,1.8,2.23,2.67,3.53,4.09,4.51,5.41,None
-,2002-08-01,1.7,1.68,1.66,1.75,2.15,2.6,3.46,4.04,4.47,5.41,None
-,2002-08-02,1.66,1.63,1.59,1.65,1.99,2.43,3.27,3.88,4.33,5.29,None
-,2002-08-05,1.68,1.64,1.59,1.68,1.93,2.34,3.21,3.83,4.29,5.26,None
-,2002-08-06,1.71,1.65,1.6,1.69,2.11,2.53,3.36,3.98,4.42,5.35,None
-,2002-08-07,1.66,1.59,1.55,1.64,1.98,2.4,3.24,3.89,4.35,5.31,None
-,2002-08-08,1.67,1.62,1.59,1.68,2.1,2.52,3.35,3.96,4.4,5.34,None
-,2002-08-09,1.66,1.62,1.59,1.68,2.1,2.49,3.28,3.85,4.27,5.22,None
-,2002-08-12,1.68,1.68,1.64,1.75,2.1,2.48,3.24,3.81,4.22,5.16,None
-,2002-08-13,1.68,1.63,1.58,1.7,2.0,2.37,3.15,3.72,4.12,5.09,None
-,2002-08-14,1.68,1.64,1.61,1.77,2.12,2.47,3.19,3.74,4.06,5.03,None
-,2002-08-15,1.66,1.62,1.63,1.78,2.22,2.58,3.28,3.85,4.17,5.12,None
-,2002-08-16,1.66,1.62,1.65,1.82,2.28,2.67,3.41,3.99,4.32,5.24,None
-,2002-08-19,1.67,1.67,1.68,1.86,2.25,2.64,3.4,3.97,4.29,5.21,None
-,2002-08-20,1.69,1.62,1.64,1.77,2.12,2.5,3.25,3.84,4.17,5.12,None
-,2002-08-21,1.68,1.63,1.65,1.77,2.12,2.51,3.28,3.85,4.2,5.14,None
-,2002-08-22,1.66,1.65,1.68,1.85,2.22,2.61,3.37,3.95,4.3,5.22,None
-,2002-08-23,1.66,1.65,1.67,1.8,2.19,2.56,3.31,3.88,4.25,5.15,None
-,2002-08-26,1.68,1.68,1.69,1.79,2.19,2.56,3.29,3.85,4.22,5.12,None
-,2002-08-27,1.69,1.68,1.71,1.89,2.26,2.63,3.37,3.93,4.29,5.2,None
-,2002-08-28,1.71,1.67,1.69,1.85,2.23,2.59,3.31,3.86,4.22,5.14,None
-,2002-08-29,1.71,1.68,1.66,1.75,2.14,2.51,3.24,3.8,4.16,5.08,None
-,2002-08-30,1.7,1.69,1.67,1.74,2.14,2.5,3.22,3.78,4.14,5.06,None
-,2002-09-03,1.69,1.64,1.62,1.71,2.01,2.36,3.04,3.63,3.98,4.92,None
-,2002-09-04,1.69,1.63,1.6,1.69,2.02,2.35,3.02,3.58,3.96,4.91,None
-,2002-09-05,1.66,1.61,1.58,1.66,1.95,2.29,2.95,3.52,3.91,4.88,None
-,2002-09-06,1.68,1.66,1.66,1.75,2.08,2.42,3.1,3.66,4.05,5.0,None
-,2002-09-09,1.7,1.69,1.69,1.77,2.13,2.46,3.11,3.66,4.05,4.99,None
-,2002-09-10,1.72,1.68,1.68,1.77,2.12,2.44,3.08,3.63,4.0,4.96,None
-,2002-09-11,1.71,1.69,1.69,1.84,2.18,2.51,3.15,3.71,4.07,5.01,None
-,2002-09-12,1.7,1.69,1.68,1.79,2.12,2.44,3.07,3.61,3.98,4.93,None
-,2002-09-13,1.68,1.69,1.68,1.74,2.07,2.38,3.0,3.55,3.92,4.87,None
-,2002-09-16,1.69,1.71,1.69,1.78,2.07,2.38,3.0,3.53,3.9,4.85,None
-,2002-09-17,1.7,1.7,1.69,1.77,2.06,2.36,2.97,3.49,3.87,4.83,None
-,2002-09-18,1.7,1.68,1.68,1.75,2.04,2.35,2.96,3.5,3.86,4.85,None
-,2002-09-19,1.64,1.65,1.64,1.68,1.93,2.24,2.87,3.42,3.79,4.8,None
-,2002-09-20,1.64,1.65,1.64,1.68,1.94,2.25,2.86,3.42,3.79,4.82,None
-,2002-09-23,1.65,1.65,1.62,1.68,1.93,2.21,2.76,3.32,3.7,4.75,None
-,2002-09-24,1.68,1.65,1.61,1.68,1.93,2.2,2.76,3.31,3.69,4.74,None
-,2002-09-25,1.67,1.66,1.63,1.73,2.0,2.28,2.83,3.4,3.77,4.83,None
-,2002-09-26,1.66,1.65,1.61,1.68,1.97,2.27,2.86,3.42,3.79,4.85,None
-,2002-09-27,1.63,1.63,1.57,1.62,1.82,2.13,2.74,3.31,3.69,4.78,None
-,2002-09-30,1.6,1.57,1.51,1.53,1.72,2.02,2.63,3.25,3.63,4.75,None
-,2002-10-01,1.63,1.59,1.54,1.56,1.8,2.11,2.75,3.34,3.72,4.81,None
-,2002-10-02,1.61,1.58,1.52,1.53,1.75,2.07,2.74,3.33,3.71,4.78,None
-,2002-10-03,1.58,1.57,1.51,1.53,1.75,2.08,2.74,3.33,3.7,4.79,None
-,2002-10-04,1.6,1.61,1.56,1.58,1.78,2.09,2.73,3.31,3.69,4.77,None
-,2002-10-07,1.61,1.63,1.57,1.59,1.77,2.07,2.67,3.27,3.64,4.75,None
-,2002-10-08,1.62,1.61,1.57,1.6,1.8,2.1,2.7,3.29,3.65,4.75,None
-,2002-10-09,1.6,1.57,1.53,1.55,1.72,2.03,2.65,3.24,3.61,4.72,None
-,2002-10-10,1.59,1.58,1.56,1.6,1.75,2.06,2.68,3.3,3.68,4.78,None
-,2002-10-11,1.59,1.58,1.58,1.63,1.85,2.17,2.83,3.45,3.83,4.91,None
-,2002-10-15,1.66,1.68,1.69,1.79,2.08,2.42,3.11,3.7,4.07,5.09,None
-,2002-10-16,1.66,1.66,1.67,1.74,2.02,2.38,3.11,3.68,4.06,5.1,None
-,2002-10-17,1.66,1.67,1.69,1.78,2.1,2.47,3.2,3.77,4.16,5.18,None
-,2002-10-18,1.66,1.67,1.68,1.77,2.09,2.45,3.17,3.73,4.14,5.17,None
-,2002-10-21,1.69,1.71,1.72,1.86,2.23,2.58,3.28,3.83,4.24,5.23,None
-,2002-10-22,1.71,1.69,1.71,1.85,2.21,2.57,3.29,3.85,4.27,5.26,None
-,2002-10-23,1.68,1.68,1.69,1.84,2.2,2.55,3.26,3.82,4.26,5.26,None
-,2002-10-24,1.64,1.65,1.66,1.73,2.09,2.45,3.18,3.74,4.16,5.2,None
-,2002-10-25,1.63,1.64,1.62,1.69,1.98,2.35,3.1,3.69,4.12,5.16,None
-,2002-10-28,1.59,1.59,1.55,1.6,1.88,2.26,3.03,3.65,4.1,5.15,None
-,2002-10-29,1.58,1.51,1.46,1.53,1.79,2.15,2.89,3.51,3.97,5.05,None
-,2002-10-30,1.56,1.51,1.46,1.49,1.74,2.12,2.87,3.53,3.99,5.07,None
-,2002-10-31,1.48,1.44,1.43,1.46,1.68,2.05,2.81,3.45,3.93,5.03,None
-,2002-11-01,1.44,1.43,1.42,1.46,1.76,2.14,2.92,3.54,4.01,5.07,None
-,2002-11-04,1.44,1.43,1.43,1.48,1.79,2.19,3.0,3.59,4.07,5.11,None
-,2002-11-05,1.44,1.42,1.41,1.48,1.82,2.21,3.0,3.62,4.1,5.13,None
-,2002-11-06,1.24,1.23,1.26,1.46,1.87,2.26,3.01,3.62,4.09,5.12,None
-,2002-11-07,1.2,1.22,1.27,1.46,1.86,2.2,2.86,3.46,3.88,4.94,None
-,2002-11-08,1.19,1.22,1.26,1.43,1.87,2.21,2.87,3.44,3.85,4.87,None
-,2002-11-12,1.2,1.22,1.26,1.44,1.79,2.14,2.83,3.42,3.84,4.87,None
-,2002-11-13,1.22,1.21,1.25,1.42,1.76,2.11,2.82,3.4,3.84,4.86,None
-,2002-11-14,1.22,1.22,1.27,1.48,1.89,2.28,3.01,3.6,4.03,5.01,None
-,2002-11-15,1.23,1.22,1.28,1.49,1.91,2.3,3.05,3.63,4.05,5.02,None
-,2002-11-18,1.24,1.23,1.27,1.48,1.91,2.3,3.04,3.61,4.02,4.98,None
-,2002-11-19,1.23,1.21,1.27,1.49,1.91,2.3,3.02,3.58,3.99,4.94,None
-,2002-11-20,1.22,1.22,1.27,1.5,1.98,2.39,3.13,3.72,4.08,5.04,None
-,2002-11-21,1.23,1.22,1.27,1.52,2.05,2.46,3.2,3.8,4.14,5.1,None
-,2002-11-22,1.23,1.23,1.29,1.54,2.1,2.52,3.26,3.84,4.18,5.12,None
-,2002-11-25,1.24,1.24,1.3,1.56,2.09,2.51,3.26,3.85,4.19,5.13,None
-,2002-11-26,1.27,1.22,1.28,1.51,1.97,2.38,3.14,3.71,4.08,5.03,None
-,2002-11-27,1.28,1.23,1.3,1.58,2.13,2.58,3.34,3.93,4.26,5.23,None
-,2002-11-29,1.25,1.22,1.3,1.56,2.08,2.51,3.28,3.88,4.22,5.18,None
-,2002-12-02,1.26,1.24,1.31,1.56,2.07,2.51,3.31,3.89,4.22,5.17,None
-,2002-12-03,1.23,1.23,1.31,1.57,2.08,2.53,3.33,3.92,4.24,5.18,None
-,2002-12-04,1.23,1.22,1.29,1.53,2.02,2.45,3.25,3.85,4.18,5.14,None
-,2002-12-05,1.23,1.22,1.28,1.5,1.97,2.39,3.19,3.79,4.13,5.09,None
-,2002-12-06,1.23,1.21,1.27,1.47,1.89,2.31,3.13,3.73,4.09,5.08,None
-,2002-12-09,1.24,1.23,1.28,1.48,1.88,2.28,3.08,3.68,4.06,5.05,None
-,2002-12-10,1.23,1.21,1.27,1.48,1.9,2.3,3.07,3.67,4.06,5.02,None
-,2002-12-11,1.23,1.21,1.26,1.46,1.85,2.24,3.02,3.61,4.01,4.97,None
-,2002-12-12,1.2,1.21,1.27,1.46,1.85,2.25,3.03,3.62,4.01,4.97,None
-,2002-12-13,1.2,1.21,1.28,1.47,1.87,2.27,3.08,3.68,4.07,5.03,None
-,2002-12-16,1.2,1.23,1.29,1.5,1.94,2.35,3.14,3.75,4.15,5.11,None
-,2002-12-17,1.22,1.22,1.27,1.48,1.89,2.3,3.11,3.71,4.13,5.11,None
-,2002-12-18,1.2,1.21,1.26,1.43,1.81,2.21,3.03,3.63,4.06,5.05,None
-,2002-12-19,1.19,1.21,1.24,1.37,1.74,2.13,2.91,3.52,3.96,4.97,None
-,2002-12-20,1.18,1.21,1.25,1.39,1.76,2.15,2.93,3.53,3.97,4.97,None
-,2002-12-23,1.15,1.19,1.26,1.43,1.79,2.17,2.95,3.54,3.98,4.98,None
-,2002-12-24,1.17,1.19,1.26,1.42,1.73,2.1,2.92,3.51,3.95,4.93,None
-,2002-12-26,1.14,1.18,1.27,1.41,1.7,2.08,2.89,3.47,3.93,4.91,None
-,2002-12-27,1.07,1.16,1.23,1.36,1.6,1.97,2.79,3.36,3.83,4.83,None
-,2002-12-30,1.15,1.22,1.24,1.36,1.61,1.95,2.76,3.34,3.82,4.82,None
-,2002-12-31,1.2,1.22,1.23,1.32,1.61,1.99,2.78,3.36,3.83,4.83,None
-,2003-01-02,1.18,1.22,1.25,1.42,1.8,2.22,3.05,3.62,4.07,5.05,None
-,2003-01-03,1.18,1.22,1.25,1.41,1.79,2.2,3.03,3.6,4.05,5.03,None
-,2003-01-06,1.17,1.21,1.27,1.44,1.84,2.26,3.1,3.64,4.09,5.05,None
-,2003-01-07,1.17,1.19,1.24,1.4,1.77,2.19,3.04,3.6,4.04,5.03,None
-,2003-01-08,1.17,1.19,1.23,1.36,1.71,2.14,3.01,3.56,4.0,5.0,None
-,2003-01-09,1.18,1.2,1.25,1.44,1.87,2.33,3.23,3.77,4.19,5.17,None
-,2003-01-10,1.17,1.2,1.24,1.39,1.79,2.26,3.2,3.74,4.16,5.14,None
-,2003-01-13,1.17,1.21,1.26,1.41,1.81,2.27,3.17,3.72,4.15,5.13,None
-,2003-01-14,1.18,1.19,1.24,1.4,1.76,2.21,3.1,3.66,4.1,5.09,None
-,2003-01-15,1.17,1.2,1.23,1.37,1.75,2.21,3.1,3.65,4.1,5.07,None
-,2003-01-16,1.17,1.18,1.22,1.37,1.75,2.21,3.11,3.65,4.1,5.06,None
-,2003-01-17,1.17,1.18,1.21,1.34,1.7,2.15,3.05,3.6,4.05,5.0,None
-,2003-01-21,1.17,1.19,1.22,1.33,1.67,2.11,3.0,3.55,4.01,4.98,None
-,2003-01-22,1.17,1.17,1.19,1.31,1.66,2.09,2.94,3.49,3.95,4.94,None
-,2003-01-23,1.16,1.17,1.2,1.33,1.69,2.12,2.97,3.52,3.98,4.98,None
-,2003-01-24,1.14,1.16,1.19,1.31,1.66,2.08,2.93,3.48,3.94,4.92,None
-,2003-01-27,1.15,1.17,1.19,1.31,1.7,2.13,2.97,3.53,3.98,4.96,None
-,2003-01-28,1.19,1.18,1.2,1.34,1.7,2.13,2.99,3.54,4.0,4.96,None
-,2003-01-29,1.18,1.18,1.2,1.36,1.77,2.21,3.07,3.61,4.06,5.01,None
-,2003-01-30,1.17,1.18,1.19,1.3,1.7,2.15,3.02,3.56,4.0,4.96,None
-,2003-01-31,1.17,1.18,1.19,1.31,1.72,2.16,3.02,3.55,4.0,4.93,None
-,2003-02-03,1.16,1.18,1.21,1.34,1.72,2.17,3.05,3.58,4.01,4.93,None
-,2003-02-04,1.18,1.16,1.19,1.33,1.68,2.12,2.99,3.53,3.96,4.89,None
-,2003-02-05,1.18,1.18,1.2,1.34,1.73,2.18,3.07,3.6,4.02,4.97,None
-,2003-02-06,1.17,1.17,1.19,1.32,1.68,2.13,3.02,3.55,3.97,4.91,None
-,2003-02-07,1.17,1.17,1.18,1.28,1.63,2.08,2.97,3.51,3.96,4.88,None
-,2003-02-10,1.17,1.17,1.2,1.33,1.68,2.13,3.03,3.57,3.99,4.94,None
-,2003-02-11,1.19,1.18,1.19,1.3,1.65,2.1,3.0,3.55,3.98,4.93,None
-,2003-02-12,1.18,1.18,1.19,1.29,1.62,2.05,2.92,3.48,3.93,4.9,None
-,2003-02-13,1.18,1.17,1.18,1.27,1.57,1.99,2.85,3.42,3.89,4.86,None
-,2003-02-14,1.19,1.18,1.19,1.3,1.62,2.05,2.91,3.48,3.95,4.94,None
-,2003-02-18,1.19,1.19,1.2,1.31,1.66,2.08,2.92,3.48,3.94,4.92,None
-,2003-02-19,1.19,1.18,1.19,1.29,1.61,2.03,2.87,3.41,3.88,4.86,None
-,2003-02-20,1.19,1.19,1.2,1.29,1.59,2.0,2.82,3.38,3.85,4.84,None
-,2003-02-21,1.2,1.19,1.2,1.31,1.63,2.04,2.86,3.42,3.9,4.88,None
-,2003-02-24,1.21,1.21,1.21,1.28,1.6,2.0,2.82,3.38,3.86,4.85,None
-,2003-02-25,1.25,1.2,1.2,1.27,1.58,1.98,2.77,3.34,3.81,4.81,None
-,2003-02-26,1.26,1.21,1.2,1.27,1.57,1.96,2.75,3.3,3.78,4.77,None
-,2003-02-27,1.24,1.21,1.2,1.27,1.58,1.96,2.75,3.29,3.76,4.75,None
-,2003-02-28,1.21,1.2,1.19,1.24,1.53,1.91,2.69,3.24,3.71,4.7,None
-,2003-03-03,1.2,1.2,1.21,1.26,1.52,1.89,2.66,3.21,3.68,4.69,None
-,2003-03-04,1.23,1.19,1.2,1.24,1.49,1.85,2.62,3.17,3.65,4.68,None
-,2003-03-05,1.21,1.18,1.18,1.22,1.46,1.82,2.58,3.14,3.63,4.67,None
-,2003-03-06,1.2,1.18,1.18,1.22,1.47,1.85,2.63,3.18,3.67,4.7,None
-,2003-03-07,1.16,1.12,1.11,1.15,1.39,1.77,2.56,3.14,3.63,4.67,None
-,2003-03-10,1.13,1.08,1.06,1.09,1.35,1.73,2.51,3.08,3.59,4.64,None
-,2003-03-11,1.15,1.1,1.07,1.12,1.38,1.76,2.54,3.11,3.6,4.64,None
-,2003-03-12,1.15,1.1,1.08,1.14,1.45,1.82,2.57,3.13,3.6,4.62,None
-,2003-03-13,1.15,1.12,1.14,1.24,1.59,1.98,2.75,3.31,3.74,4.75,None
-,2003-03-14,1.14,1.13,1.14,1.22,1.56,1.95,2.72,3.27,3.72,4.73,None
-,2003-03-17,1.16,1.15,1.15,1.24,1.63,2.03,2.82,3.37,3.82,4.82,None
-,2003-03-18,1.19,1.14,1.19,1.35,1.72,2.12,2.93,3.46,3.91,4.89,None
-,2003-03-19,1.19,1.16,1.18,1.32,1.72,2.14,2.98,3.53,3.98,4.94,None
-,2003-03-20,1.19,1.17,1.19,1.34,1.75,2.18,3.02,3.56,4.01,4.99,None
-,2003-03-21,1.18,1.18,1.2,1.36,1.8,2.25,3.12,3.67,4.11,5.08,None
-,2003-03-24,1.18,1.17,1.19,1.32,1.71,2.14,2.98,3.55,3.98,4.97,None
-,2003-03-25,1.21,1.18,1.19,1.28,1.69,2.12,2.97,3.54,3.97,4.97,None
-,2003-03-26,1.19,1.18,1.18,1.27,1.68,2.11,2.94,3.52,3.96,4.96,None
-,2003-03-27,1.18,1.16,1.17,1.25,1.62,2.05,2.92,3.5,3.95,4.96,None
-,2003-03-28,1.15,1.14,1.15,1.22,1.56,1.99,2.86,3.45,3.92,4.93,None
-,2003-03-31,1.16,1.14,1.13,1.19,1.51,1.93,2.78,3.35,3.83,4.84,None
-,2003-04-01,1.17,1.12,1.1,1.16,1.5,1.92,2.78,3.35,3.84,4.85,None
-,2003-04-02,1.17,1.13,1.12,1.22,1.6,2.03,2.89,3.48,3.94,4.94,None
-,2003-04-03,1.17,1.11,1.1,1.18,1.55,1.99,2.87,3.45,3.93,4.95,None
-,2003-04-04,1.17,1.11,1.1,1.18,1.55,2.0,2.88,3.48,3.96,4.97,None
-,2003-04-07,1.19,1.17,1.17,1.25,1.65,2.1,2.99,3.55,4.03,5.01,None
-,2003-04-08,1.19,1.15,1.15,1.21,1.59,2.03,2.91,3.47,3.95,4.93,None
-,2003-04-09,1.17,1.13,1.13,1.22,1.55,1.99,2.87,3.44,3.93,4.92,None
-,2003-04-10,1.18,1.14,1.16,1.25,1.6,2.03,2.89,3.46,3.95,4.94,None
-,2003-04-11,1.18,1.17,1.19,1.3,1.65,2.09,2.95,3.49,4.0,4.96,None
-,2003-04-14,1.19,1.2,1.22,1.33,1.74,2.17,3.02,3.55,4.04,4.99,None
-,2003-04-15,1.17,1.18,1.21,1.32,1.69,2.12,2.96,3.49,3.98,4.93,None
-,2003-04-16,1.15,1.17,1.2,1.31,1.67,2.1,2.95,3.48,3.96,4.92,None
-,2003-04-17,1.14,1.18,1.2,1.34,1.71,2.15,2.99,3.5,3.98,4.91,None
-,2003-04-21,1.14,1.18,1.22,1.35,1.71,2.16,3.03,3.54,4.0,4.92,None
-,2003-04-22,1.14,1.18,1.21,1.34,1.7,2.14,3.01,3.53,4.01,4.94,None
-,2003-04-23,1.14,1.17,1.21,1.33,1.7,2.14,3.02,3.54,4.02,4.92,None
-,2003-04-24,1.13,1.15,1.18,1.28,1.62,2.05,2.92,3.45,3.93,4.84,None
-,2003-04-25,1.13,1.14,1.17,1.26,1.57,2.0,2.88,3.42,3.91,4.83,None
-,2003-04-28,1.13,1.14,1.18,1.28,1.59,2.02,2.9,3.43,3.92,4.83,None
-,2003-04-29,1.14,1.15,1.18,1.28,1.62,2.06,2.94,3.47,3.96,4.86,None
-,2003-04-30,1.13,1.13,1.15,1.22,1.51,1.95,2.85,3.39,3.89,4.79,None
-,2003-05-01,1.09,1.1,1.13,1.21,1.5,1.93,2.82,3.37,3.88,4.8,None
-,2003-05-02,1.07,1.12,1.16,1.27,1.56,2.0,2.9,3.45,3.94,4.84,None
-,2003-05-05,1.08,1.13,1.17,1.27,1.55,1.98,2.87,3.41,3.92,4.8,None
-,2003-05-06,1.09,1.1,1.12,1.19,1.45,1.87,2.76,3.31,3.84,4.76,None
-,2003-05-07,1.08,1.11,1.14,1.21,1.45,1.83,2.64,3.19,3.72,4.67,None
-,2003-05-08,1.06,1.09,1.14,1.24,1.49,1.82,2.62,3.17,3.7,4.65,None
-,2003-05-09,1.07,1.11,1.14,1.22,1.45,1.81,2.61,3.17,3.69,4.64,None
-,2003-05-12,1.07,1.1,1.13,1.22,1.46,1.81,2.58,3.12,3.64,4.6,None
-,2003-05-13,1.02,1.09,1.12,1.23,1.47,1.82,2.58,3.12,3.63,4.58,None
-,2003-05-14,0.95,1.06,1.1,1.2,1.41,1.72,2.47,3.02,3.53,4.47,None
-,2003-05-15,0.98,1.06,1.11,1.21,1.46,1.78,2.52,3.07,3.53,4.48,None
-,2003-05-16,0.98,1.05,1.06,1.15,1.38,1.69,2.43,3.0,3.46,4.44,None
-,2003-05-19,1.01,1.05,1.06,1.14,1.35,1.66,2.41,2.98,3.46,4.44,None
-,2003-05-20,1.02,1.04,1.04,1.1,1.31,1.62,2.34,2.89,3.38,4.36,None
-,2003-05-21,1.14,1.06,1.08,1.15,1.38,1.67,2.37,2.91,3.39,4.33,None
-,2003-05-22,1.13,1.08,1.08,1.14,1.36,1.65,2.32,2.87,3.34,4.29,None
-,2003-05-23,1.14,1.08,1.08,1.14,1.38,1.65,2.33,2.87,3.34,4.28,None
-,2003-05-27,1.15,1.09,1.09,1.13,1.33,1.63,2.34,2.93,3.41,4.39,None
-,2003-05-28,1.21,1.12,1.11,1.15,1.35,1.62,2.35,2.94,3.44,4.42,None
-,2003-05-29,1.18,1.1,1.08,1.11,1.3,1.56,2.27,2.84,3.34,4.35,None
-,2003-05-30,1.16,1.11,1.09,1.13,1.33,1.58,2.3,2.87,3.37,4.36,None
-,2003-06-02,1.17,1.14,1.12,1.15,1.33,1.61,2.37,2.94,3.43,4.43,None
-,2003-06-03,1.17,1.08,1.05,1.07,1.2,1.51,2.25,2.82,3.34,4.35,None
-,2003-06-04,1.15,1.05,1.03,1.04,1.2,1.46,2.19,2.78,3.3,4.32,None
-,2003-06-05,1.12,1.04,1.03,1.07,1.25,1.52,2.25,2.83,3.34,4.37,None
-,2003-06-06,1.14,1.05,1.03,1.08,1.27,1.53,2.29,2.87,3.37,4.37,None
-,2003-06-09,1.14,1.03,1.0,1.04,1.19,1.45,2.2,2.79,3.29,4.31,None
-,2003-06-10,1.1,0.97,0.95,0.98,1.13,1.38,2.12,2.69,3.2,4.22,None
-,2003-06-11,1.07,0.94,0.95,1.0,1.16,1.42,2.16,2.72,3.21,4.23,None
-,2003-06-12,1.02,0.92,0.9,0.95,1.13,1.38,2.1,2.68,3.18,4.18,None
-,2003-06-13,0.92,0.86,0.86,0.9,1.1,1.34,2.08,2.63,3.13,4.13,None
-,2003-06-16,0.93,0.87,0.88,0.95,1.18,1.44,2.14,2.71,3.18,4.18,None
-,2003-06-17,0.93,0.9,0.91,1.0,1.25,1.53,2.26,2.81,3.27,4.26,None
-,2003-06-18,0.9,0.89,0.89,0.96,1.27,1.59,2.34,2.9,3.37,4.35,None
-,2003-06-19,0.83,0.81,0.82,0.88,1.17,1.5,2.28,2.87,3.35,4.37,None
-,2003-06-20,0.81,0.83,0.85,0.94,1.22,1.55,2.31,2.9,3.4,4.41,None
-,2003-06-23,0.83,0.85,0.87,0.94,1.17,1.47,2.24,2.82,3.32,4.35,None
-,2003-06-24,0.82,0.83,0.84,0.91,1.14,1.44,2.21,2.78,3.29,4.31,None
-,2003-06-25,0.92,0.92,0.94,1.05,1.3,1.57,2.32,2.9,3.38,4.4,None
-,2003-06-26,0.86,0.91,0.96,1.11,1.41,1.73,2.49,3.07,3.55,4.52,None
-,2003-06-27,0.8,0.87,0.95,1.09,1.38,1.72,2.52,3.09,3.58,4.57,None
-,2003-06-30,0.81,0.9,0.98,1.09,1.32,1.66,2.46,3.03,3.54,4.52,None
-,2003-07-01,0.89,0.89,0.96,1.07,1.3,1.66,2.48,3.06,3.56,4.54,None
-,2003-07-02,0.87,0.87,0.95,1.06,1.3,1.65,2.47,3.05,3.56,4.54,None
-,2003-07-03,0.87,0.87,0.95,1.07,1.32,1.69,2.55,3.15,3.67,4.64,None
-,2003-07-07,0.9,0.92,0.97,1.08,1.36,1.76,2.63,3.22,3.74,4.69,None
-,2003-07-08,0.92,0.92,0.96,1.09,1.39,1.79,2.65,3.23,3.75,4.71,None
-,2003-07-09,0.9,0.9,0.95,1.09,1.37,1.77,2.63,3.21,3.73,4.69,None
-,2003-07-10,0.89,0.89,0.95,1.07,1.33,1.72,2.59,3.17,3.7,4.68,None
-,2003-07-11,0.89,0.89,0.95,1.06,1.29,1.67,2.52,3.12,3.66,4.65,None
-,2003-07-14,0.88,0.91,0.96,1.07,1.35,1.74,2.6,3.2,3.74,4.74,None
-,2003-07-15,0.88,0.92,0.97,1.1,1.45,1.89,2.81,3.4,3.94,4.91,None
-,2003-07-16,0.85,0.91,0.97,1.12,1.49,1.94,2.87,3.44,3.97,4.91,None
-,2003-07-17,0.84,0.9,0.96,1.11,1.47,1.93,2.88,3.45,3.98,4.92,None
-,2003-07-18,0.84,0.91,0.96,1.12,1.51,1.98,2.93,3.49,4.0,4.93,None
-,2003-07-21,0.86,0.93,0.99,1.17,1.61,2.11,3.1,3.67,4.19,5.09,None
-,2003-07-22,0.89,0.93,0.97,1.12,1.57,2.1,3.07,3.64,4.17,5.07,None
-,2003-07-23,0.9,0.93,0.97,1.11,1.54,2.04,3.04,3.6,4.12,5.04,None
-,2003-07-24,0.91,0.93,0.98,1.13,1.54,2.05,3.08,3.66,4.2,5.12,None
-,2003-07-25,0.92,0.93,0.98,1.13,1.52,2.06,3.1,3.69,4.22,5.15,None
-,2003-07-28,0.97,0.97,1.01,1.17,1.61,2.17,3.21,3.79,4.31,5.23,None
-,2003-07-29,0.99,0.99,1.01,1.17,1.67,2.26,3.33,3.9,4.42,5.33,None
-,2003-07-30,0.94,0.98,1.01,1.17,1.64,2.21,3.27,3.85,4.34,5.27,None
-,2003-07-31,0.91,0.96,1.02,1.28,1.8,2.33,3.38,3.98,4.49,5.43,None
-,2003-08-01,0.91,0.95,1.05,1.31,1.85,2.38,3.37,4.01,4.44,5.42,None
-,2003-08-04,0.91,0.97,1.05,1.24,1.71,2.24,3.24,3.86,4.35,5.36,None
-,2003-08-05,0.93,0.96,1.05,1.32,1.88,2.44,3.37,3.98,4.47,5.48,None
-,2003-08-06,0.92,0.95,1.04,1.28,1.78,2.36,3.25,3.82,4.32,5.31,None
-,2003-08-07,0.91,0.95,1.04,1.26,1.74,2.3,3.19,3.78,4.3,5.27,None
-,2003-08-08,0.91,0.96,1.03,1.22,1.72,2.27,3.17,3.76,4.27,5.29,None
-,2003-08-11,0.92,0.96,1.06,1.3,1.81,2.35,3.26,3.86,4.38,5.36,None
-,2003-08-12,0.93,0.95,1.04,1.25,1.71,2.29,3.23,3.85,4.37,5.36,None
-,2003-08-13,0.95,0.96,1.05,1.31,1.86,2.47,3.43,4.06,4.58,5.55,None
-,2003-08-14,0.96,0.96,1.06,1.31,1.86,2.47,3.42,4.05,4.55,5.49,None
-,2003-08-15,0.92,0.95,1.05,1.3,1.85,2.47,3.42,4.04,4.55,5.49,None
-,2003-08-18,0.97,0.96,1.06,1.33,1.87,2.46,3.37,3.99,4.49,5.45,None
-,2003-08-19,0.96,0.96,1.04,1.29,1.81,2.37,3.27,3.89,4.38,5.33,None
-,2003-08-20,0.94,0.96,1.04,1.3,1.84,2.43,3.35,3.96,4.45,5.39,None
-,2003-08-21,0.95,0.97,1.07,1.37,1.98,2.56,3.51,4.07,4.53,5.43,None
-,2003-08-22,0.96,0.98,1.06,1.35,1.97,2.54,3.47,4.03,4.48,5.37,None
-,2003-08-25,0.97,1.02,1.07,1.35,2.02,2.59,3.52,4.08,4.53,5.43,None
-,2003-08-26,1.01,1.01,1.06,1.32,1.96,2.55,3.5,4.05,4.5,5.39,None
-,2003-08-27,1.0,1.0,1.06,1.38,2.05,2.61,3.55,4.11,4.54,5.43,None
-,2003-08-28,0.99,0.99,1.06,1.34,1.93,2.48,3.42,3.96,4.42,5.31,None
-,2003-08-29,0.98,0.98,1.06,1.35,1.95,2.51,3.46,4.0,4.45,5.33,None
-,2003-09-02,0.98,0.98,1.07,1.39,2.04,2.62,3.63,4.17,4.61,5.48,None
-,2003-09-03,0.98,0.97,1.04,1.36,2.02,2.62,3.61,4.15,4.6,5.49,None
-,2003-09-04,0.96,0.97,1.05,1.33,1.91,2.51,3.5,4.04,4.52,5.43,None
-,2003-09-05,0.95,0.96,1.03,1.24,1.72,2.28,3.28,3.83,4.35,5.29,None
-,2003-09-08,0.95,0.97,1.05,1.27,1.75,2.33,3.32,3.88,4.41,5.33,None
-,2003-09-09,0.95,0.96,1.03,1.23,1.71,2.29,3.28,3.85,4.37,5.31,None
-,2003-09-10,0.94,0.96,1.02,1.2,1.64,2.19,3.18,3.73,4.28,5.22,None
-,2003-09-11,0.93,0.96,1.02,1.22,1.71,2.27,3.24,3.79,4.35,5.27,None
-,2003-09-12,0.91,0.96,1.02,1.2,1.66,2.19,3.15,3.72,4.27,5.22,None
-,2003-09-15,0.91,0.96,1.03,1.2,1.63,2.17,3.12,3.71,4.28,5.24,None
-,2003-09-16,0.91,0.93,1.02,1.22,1.63,2.16,3.12,3.72,4.29,5.26,None
-,2003-09-17,0.9,0.95,1.02,1.19,1.63,2.13,3.06,3.64,4.2,5.15,None
-,2003-09-18,0.89,0.96,1.02,1.23,1.68,2.16,3.09,3.66,4.19,5.15,None
-,2003-09-19,0.88,0.95,1.02,1.23,1.7,2.2,3.11,3.66,4.17,5.12,None
-,2003-09-22,0.88,0.95,1.04,1.24,1.7,2.21,3.16,3.73,4.26,5.2,None
-,2003-09-23,0.89,0.93,1.03,1.24,1.68,2.2,3.13,3.7,4.24,5.16,None
-,2003-09-24,0.89,0.95,1.02,1.22,1.66,2.15,3.07,3.62,4.16,5.09,None
-,2003-09-25,0.88,0.94,1.02,1.21,1.65,2.14,3.05,3.59,4.12,5.04,None
-,2003-09-26,0.87,0.94,1.02,1.21,1.6,2.06,2.95,3.49,4.04,4.98,None
-,2003-09-29,0.87,0.96,1.03,1.21,1.61,2.07,2.98,3.54,4.09,5.03,None
-,2003-09-30,0.87,0.95,1.01,1.15,1.5,1.95,2.85,3.41,3.96,4.91,None
-,2003-10-01,0.88,0.95,1.0,1.13,1.47,1.93,2.84,3.4,3.96,4.92,None
-,2003-10-02,0.86,0.94,1.0,1.14,1.48,1.96,2.9,3.48,4.03,4.97,None
-,2003-10-03,0.87,0.94,1.01,1.2,1.65,2.17,3.12,3.69,4.21,5.15,None
-,2003-10-06,0.87,0.94,0.97,1.15,1.6,2.11,3.06,3.63,4.17,5.1,None
-,2003-10-07,0.85,0.92,1.01,1.21,1.67,2.19,3.15,3.73,4.27,5.21,None
-,2003-10-08,0.88,0.91,1.0,1.21,1.65,2.17,3.14,3.72,4.27,5.22,None
-,2003-10-09,0.9,0.91,1.0,1.22,1.69,2.2,3.17,3.77,4.32,5.27,None
-,2003-10-10,0.89,0.92,1.0,1.21,1.65,2.18,3.15,3.72,4.29,5.23,None
-,2003-10-14,0.89,0.93,1.01,1.23,1.73,2.25,3.23,3.82,4.37,5.32,None
-,2003-10-15,0.9,0.93,1.01,1.27,1.79,2.32,3.3,3.88,4.43,5.36,None
-,2003-10-16,0.9,0.93,1.03,1.34,1.96,2.47,3.4,3.97,4.47,5.38,None
-,2003-10-17,0.9,0.93,1.02,1.31,1.9,2.41,3.33,3.9,4.41,5.32,None
-,2003-10-20,0.9,0.95,1.04,1.32,1.88,2.42,3.33,3.89,4.41,5.3,None
-,2003-10-21,0.92,0.93,1.04,1.32,1.89,2.41,3.31,3.86,4.38,5.28,None
-,2003-10-22,0.92,0.96,1.03,1.28,1.8,2.33,3.21,3.77,4.29,5.19,None
-,2003-10-23,0.92,0.96,1.03,1.3,1.84,2.37,3.24,3.81,4.34,5.25,None
-,2003-10-24,0.92,0.95,1.03,1.27,1.76,2.26,3.13,3.68,4.24,5.14,None
-,2003-10-27,0.95,0.98,1.05,1.31,1.83,2.35,3.21,3.75,4.3,5.19,None
-,2003-10-28,0.98,0.96,1.03,1.25,1.71,2.23,3.11,3.67,4.23,5.14,None
-,2003-10-29,0.98,0.96,1.04,1.29,1.79,2.32,3.2,3.76,4.31,5.21,None
-,2003-10-30,0.97,0.96,1.04,1.32,1.86,2.39,3.29,3.83,4.36,5.25,None
-,2003-10-31,0.96,0.96,1.04,1.31,1.85,2.36,3.27,3.8,4.33,5.2,None
-,2003-11-03,0.97,0.96,1.05,1.33,1.9,2.44,3.34,3.88,4.4,5.25,None
-,2003-11-04,0.97,0.95,1.03,1.31,1.86,2.4,3.28,3.81,4.33,5.19,None
-,2003-11-05,0.96,0.96,1.05,1.35,1.94,2.46,3.35,3.88,4.38,5.24,None
-,2003-11-06,0.95,0.96,1.06,1.38,2.01,2.55,3.43,3.96,4.45,5.32,None
-,2003-11-07,0.95,0.96,1.07,1.4,2.04,2.6,3.47,3.99,4.48,5.33,None
-,2003-11-10,0.92,0.97,1.07,1.39,2.06,2.63,3.49,4.0,4.49,5.34,None
-,2003-11-12,0.92,0.95,1.06,1.39,2.05,2.59,3.45,3.95,4.44,5.29,None
-,2003-11-13,0.91,0.94,1.04,1.33,1.92,2.45,3.29,3.79,4.3,5.16,None
-,2003-11-14,0.92,0.95,1.04,1.31,1.84,2.36,3.19,3.7,4.22,5.1,None
-,2003-11-17,0.93,0.96,1.04,1.29,1.8,2.31,3.14,3.68,4.18,5.07,None
-,2003-11-18,0.95,0.96,1.04,1.3,1.83,2.32,3.14,3.66,4.17,5.05,None
-,2003-11-19,0.94,0.95,1.03,1.32,1.9,2.42,3.22,3.75,4.24,5.12,None
-,2003-11-20,0.93,0.95,1.01,1.28,1.83,2.35,3.14,3.67,4.16,5.06,None
-,2003-11-21,0.93,0.94,1.02,1.29,1.84,2.35,3.15,3.67,4.15,5.05,None
-,2003-11-24,0.94,0.96,1.04,1.33,1.94,2.44,3.24,3.76,4.23,5.11,None
-,2003-11-25,0.97,0.95,1.03,1.32,1.89,2.4,3.2,3.72,4.19,5.07,None
-,2003-11-26,0.97,0.94,1.04,1.35,1.97,2.48,3.27,3.79,4.25,5.12,None
-,2003-11-28,0.96,0.93,1.04,1.39,2.06,2.56,3.38,3.89,4.34,5.2,None
-,2003-12-01,0.96,0.95,1.06,1.41,2.12,2.64,3.46,3.98,4.4,5.23,None
-,2003-12-02,0.96,0.94,1.04,1.38,2.07,2.6,3.43,3.95,4.38,5.22,None
-,2003-12-03,0.96,0.94,1.04,1.39,2.09,2.63,3.46,3.98,4.41,5.25,None
-,2003-12-04,0.94,0.93,1.04,1.38,2.06,2.61,3.42,3.93,4.38,5.22,None
-,2003-12-05,0.93,0.92,1.01,1.3,1.88,2.42,3.23,3.76,4.23,5.09,None
-,2003-12-08,0.94,0.93,1.03,1.33,1.94,2.48,3.28,3.81,4.29,5.15,None
-,2003-12-09,0.93,0.93,1.04,1.35,1.97,2.51,3.33,3.85,4.32,5.18,None
-,2003-12-10,0.92,0.93,1.03,1.33,1.94,2.48,3.28,3.82,4.3,5.16,None
-,2003-12-11,0.87,0.9,0.99,1.27,1.83,2.37,3.21,3.76,4.27,5.14,None
-,2003-12-12,0.88,0.91,0.99,1.28,1.84,2.4,3.23,3.75,4.26,5.12,None
-,2003-12-15,0.87,0.9,1.01,1.3,1.88,2.41,3.26,3.79,4.28,5.13,None
-,2003-12-16,0.88,0.91,1.0,1.28,1.83,2.37,3.21,3.74,4.24,5.1,None
-,2003-12-17,0.85,0.9,0.99,1.26,1.83,2.37,3.18,3.7,4.19,5.05,None
-,2003-12-18,0.86,0.89,0.96,1.24,1.85,2.38,3.17,3.67,4.16,4.99,None
-,2003-12-19,0.87,0.88,0.96,1.25,1.82,2.35,3.16,3.67,4.15,4.99,None
-,2003-12-22,0.88,0.9,0.99,1.27,1.84,2.37,3.19,3.7,4.18,5.02,None
-,2003-12-23,0.89,0.9,1.0,1.31,1.96,2.47,3.3,3.81,4.28,5.09,None
-,2003-12-24,0.87,0.9,1.0,1.28,1.83,2.36,3.2,3.72,4.2,5.02,None
-,2003-12-26,0.76,0.87,0.99,1.27,1.82,2.33,3.17,3.67,4.17,4.99,None
-,2003-12-29,0.79,0.9,1.03,1.31,1.86,2.37,3.23,3.76,4.24,5.07,None
-,2003-12-30,0.88,0.94,1.02,1.28,1.86,2.39,3.26,3.8,4.29,5.12,None
-,2003-12-31,0.9,0.95,1.02,1.26,1.84,2.37,3.25,3.77,4.27,5.1,None
-,2004-01-02,0.88,0.93,1.02,1.31,1.94,2.47,3.36,3.9,4.38,5.21,None
-,2004-01-05,0.88,0.91,1.05,1.35,1.95,2.51,3.39,3.92,4.41,5.23,None
-,2004-01-06,0.88,0.91,1.03,1.3,1.84,2.38,3.26,3.8,4.29,5.13,None
-,2004-01-07,0.88,0.91,1.02,1.29,1.84,2.36,3.25,3.76,4.27,5.11,None
-,2004-01-08,0.87,0.88,1.01,1.29,1.85,2.37,3.24,3.76,4.27,5.12,None
-,2004-01-09,0.87,0.87,0.97,1.21,1.68,2.17,3.05,3.58,4.11,4.98,None
-,2004-01-12,0.88,0.89,0.98,1.21,1.68,2.18,3.04,3.58,4.11,4.99,None
-,2004-01-13,0.86,0.89,0.97,1.18,1.63,2.12,2.98,3.51,4.05,4.95,None
-,2004-01-14,0.85,0.88,0.96,1.19,1.65,2.13,2.96,3.49,4.01,4.9,None
-,2004-01-15,0.82,0.88,0.96,1.18,1.67,2.16,2.97,3.48,3.99,4.87,None
-,2004-01-16,0.8,0.89,0.97,1.21,1.7,2.19,3.03,3.54,4.04,4.9,None
-,2004-01-20,0.8,0.89,0.98,1.21,1.69,2.21,3.05,3.58,4.08,4.93,None
-,2004-01-21,0.82,0.89,0.96,1.19,1.69,2.2,3.02,3.55,4.05,4.92,None
-,2004-01-22,0.74,0.88,0.96,1.19,1.66,2.14,2.96,3.49,3.99,4.86,None
-,2004-01-23,0.79,0.9,0.96,1.21,1.71,2.22,3.06,3.59,4.09,4.95,None
-,2004-01-26,0.82,0.9,0.99,1.23,1.75,2.27,3.13,3.66,4.16,5.01,None
-,2004-01-27,0.89,0.91,0.98,1.21,1.7,2.21,3.07,3.6,4.11,4.96,None
-,2004-01-28,0.89,0.94,1.0,1.26,1.87,2.39,3.22,3.72,4.22,5.06,None
-,2004-01-29,0.87,0.94,1.02,1.29,1.88,2.39,3.22,3.74,4.22,5.05,None
-,2004-01-30,0.85,0.92,1.01,1.28,1.84,2.35,3.17,3.68,4.16,5.0,None
-,2004-02-02,0.87,0.94,1.03,1.29,1.83,2.36,3.18,3.7,4.18,5.02,None
-,2004-02-03,0.93,0.94,1.02,1.27,1.78,2.3,3.12,3.65,4.13,4.98,None
-,2004-02-04,0.91,0.94,1.01,1.27,1.8,2.32,3.15,3.67,4.15,5.0,None
-,2004-02-05,0.89,0.94,1.02,1.29,1.85,2.4,3.21,3.72,4.2,5.02,None
-,2004-02-06,0.89,0.93,1.01,1.26,1.77,2.29,3.12,3.63,4.12,4.95,None
-,2004-02-09,0.89,0.94,1.02,1.25,1.76,2.26,3.08,3.6,4.09,4.93,None
-,2004-02-10,0.91,0.95,1.02,1.27,1.82,2.33,3.13,3.64,4.13,4.97,None
-,2004-02-11,0.89,0.93,1.0,1.23,1.73,2.23,3.03,3.56,4.05,4.9,None
-,2004-02-12,0.9,0.93,1.0,1.24,1.75,2.26,3.07,3.58,4.1,4.94,None
-,2004-02-13,0.9,0.92,0.98,1.21,1.7,2.19,3.01,3.54,4.05,4.92,None
-,2004-02-17,0.9,0.95,1.0,1.21,1.7,2.2,3.02,3.54,4.05,4.91,None
-,2004-02-18,0.93,0.94,1.0,1.23,1.72,2.22,3.03,3.55,4.05,4.91,None
-,2004-02-19,0.93,0.94,1.0,1.23,1.7,2.2,3.02,3.54,4.05,4.91,None
-,2004-02-20,0.93,0.94,1.01,1.26,1.75,2.25,3.08,3.59,4.1,4.96,None
-,2004-02-23,0.95,0.97,1.02,1.22,1.69,2.21,3.03,3.55,4.05,4.92,None
-,2004-02-24,0.97,0.97,1.02,1.23,1.69,2.2,3.01,3.53,4.04,4.9,None
-,2004-02-25,0.96,0.96,1.02,1.23,1.67,2.16,2.98,3.51,4.02,4.89,None
-,2004-02-26,0.97,0.96,1.02,1.23,1.69,2.18,3.01,3.54,4.05,4.92,None
-,2004-02-27,0.95,0.96,1.01,1.21,1.66,2.13,3.01,3.48,3.99,4.85,None
-,2004-03-01,0.97,0.97,1.02,1.23,1.67,2.15,2.98,3.49,4.0,4.86,None
-,2004-03-02,0.98,0.97,1.03,1.26,1.74,2.21,3.04,3.55,4.05,4.9,None
-,2004-03-03,0.97,0.97,1.02,1.26,1.74,2.23,3.06,3.57,4.07,4.92,None
-,2004-03-04,0.97,0.96,1.02,1.25,1.73,2.21,3.02,3.53,4.04,4.89,None
-,2004-03-05,0.95,0.94,0.99,1.16,1.57,2.02,2.81,3.32,3.85,4.73,None
-,2004-03-08,0.95,0.96,1.01,1.15,1.52,1.95,2.74,3.26,3.78,4.69,None
-,2004-03-09,0.98,0.96,1.0,1.15,1.51,1.92,2.68,3.2,3.73,4.64,None
-,2004-03-10,0.97,0.96,1.0,1.17,1.54,1.94,2.71,3.21,3.74,4.65,None
-,2004-03-11,0.96,0.97,1.0,1.15,1.52,1.95,2.72,3.23,3.74,4.66,None
-,2004-03-12,0.96,0.96,1.01,1.18,1.54,1.95,2.73,3.24,3.78,4.68,None
-,2004-03-15,0.94,0.96,1.02,1.18,1.56,1.97,2.74,3.25,3.78,4.67,None
-,2004-03-16,0.97,0.96,1.01,1.17,1.51,1.89,2.65,3.17,3.7,4.61,None
-,2004-03-17,0.94,0.93,1.01,1.18,1.53,1.92,2.66,3.18,3.71,4.62,None
-,2004-03-18,0.93,0.93,1.0,1.17,1.55,1.96,2.72,3.25,3.76,4.66,None
-,2004-03-19,0.93,0.94,1.01,1.19,1.56,1.97,2.75,3.28,3.8,4.68,None
-,2004-03-22,0.94,0.95,1.02,1.17,1.52,1.93,2.69,3.22,3.74,4.63,None
-,2004-03-23,0.96,0.95,1.01,1.17,1.52,1.92,2.69,3.21,3.73,4.62,None
-,2004-03-24,0.95,0.93,1.0,1.16,1.5,1.91,2.68,3.21,3.73,4.62,None
-,2004-03-25,0.95,0.94,0.99,1.15,1.51,1.91,2.7,3.23,3.75,4.65,None
-,2004-03-26,0.94,0.95,1.0,1.19,1.59,2.0,2.81,3.33,3.85,4.75,None
-,2004-03-29,0.95,0.96,1.02,1.21,1.63,2.05,2.86,3.39,3.91,4.8,None
-,2004-03-30,0.97,0.96,1.01,1.21,1.63,2.05,2.86,3.39,3.91,4.8,None
-,2004-03-31,0.96,0.95,1.01,1.2,1.6,1.99,2.8,3.33,3.86,4.77,None
-,2004-04-01,0.95,0.93,1.02,1.23,1.65,2.06,2.87,3.38,3.91,4.77,None
-,2004-04-02,0.93,0.95,1.03,1.3,1.86,2.33,3.15,3.66,4.15,4.97,None
-,2004-04-05,0.94,0.94,1.06,1.34,1.91,2.4,3.24,3.76,4.24,5.05,None
-,2004-04-06,0.94,0.94,1.04,1.31,1.86,2.35,3.19,3.7,4.19,5.01,None
-,2004-04-07,0.94,0.95,1.04,1.31,1.87,2.36,3.19,3.71,4.19,5.02,None
-,2004-04-08,0.93,0.93,1.04,1.32,1.88,2.37,3.22,3.73,4.21,5.04,None
-,2004-04-12,0.92,0.94,1.06,1.34,1.91,2.41,3.26,3.78,4.25,5.08,None
-,2004-04-13,0.91,0.94,1.08,1.39,2.01,2.52,3.37,3.89,4.35,5.17,None
-,2004-04-14,0.92,0.95,1.13,1.48,2.13,2.6,3.44,3.95,4.4,5.21,None
-,2004-04-15,0.92,0.95,1.12,1.46,2.1,2.59,3.45,3.96,4.42,5.22,None
-,2004-04-16,0.91,0.94,1.08,1.4,2.03,2.53,3.39,3.9,4.37,5.2,None
-,2004-04-19,0.92,0.96,1.11,1.43,2.07,2.58,3.42,3.93,4.39,5.22,None
-,2004-04-20,0.93,0.97,1.13,1.46,2.11,2.62,3.45,3.97,4.43,5.24,None
-,2004-04-21,0.93,0.99,1.17,1.52,2.22,2.71,3.52,4.01,4.45,5.25,None
-,2004-04-22,0.81,0.97,1.14,1.49,2.15,2.64,3.46,3.95,4.4,5.2,None
-,2004-04-23,0.87,0.98,1.2,1.59,2.29,2.78,3.58,4.07,4.48,5.27,None
-,2004-04-26,0.88,0.99,1.19,1.57,2.28,2.78,3.57,4.05,4.46,5.25,None
-,2004-04-27,0.91,0.98,1.17,1.53,2.21,2.74,3.52,4.01,4.43,5.22,None
-,2004-04-28,0.87,0.97,1.16,1.54,2.3,2.82,3.6,4.08,4.5,5.28,None
-,2004-04-29,0.85,0.97,1.15,1.55,2.34,2.88,3.66,4.14,4.55,5.33,None
-,2004-04-30,0.83,0.98,1.17,1.55,2.31,2.86,3.63,4.11,4.53,5.31,None
-,2004-05-03,0.83,1.0,1.21,1.6,2.34,2.86,3.63,4.11,4.53,5.3,None
-,2004-05-04,0.93,1.0,1.19,1.57,2.32,2.88,3.66,4.15,4.56,5.34,None
-,2004-05-05,0.9,0.99,1.17,1.56,2.34,2.91,3.71,4.18,4.61,5.38,None
-,2004-05-06,0.89,1.0,1.21,1.61,2.39,2.94,3.72,4.2,4.63,5.41,None
-,2004-05-07,0.9,1.07,1.35,1.83,2.64,3.19,3.96,4.41,4.79,5.53,None
-,2004-05-10,0.89,1.08,1.36,1.85,2.61,3.18,3.95,4.41,4.81,5.54,None
-,2004-05-11,0.91,1.05,1.35,1.83,2.61,3.19,3.94,4.39,4.79,5.53,None
-,2004-05-12,0.9,1.04,1.33,1.81,2.62,3.19,3.96,4.41,4.83,5.57,None
-,2004-05-13,0.88,1.0,1.34,1.84,2.67,3.24,4.01,4.46,4.85,5.61,None
-,2004-05-14,0.87,0.99,1.34,1.81,2.59,3.16,3.92,4.39,4.79,5.54,None
-,2004-05-17,0.9,1.06,1.35,1.8,2.51,3.07,3.83,4.29,4.7,5.47,None
-,2004-05-18,0.91,1.05,1.37,1.83,2.58,3.13,3.87,4.34,4.74,5.48,None
-,2004-05-19,0.91,1.04,1.38,1.85,2.61,3.18,3.93,4.39,4.79,5.54,None
-,2004-05-20,0.9,1.03,1.36,1.81,2.55,3.12,3.86,4.33,4.72,5.47,None
-,2004-05-21,0.91,1.03,1.39,1.84,2.6,3.18,3.91,4.37,4.76,5.5,None
-,2004-05-24,0.92,1.07,1.41,1.86,2.59,3.17,3.9,4.36,4.75,5.48,None
-,2004-05-25,0.95,1.07,1.41,1.84,2.58,3.16,3.89,4.34,4.73,5.45,None
-,2004-05-26,0.94,1.08,1.39,1.81,2.52,3.08,3.81,4.27,4.67,5.41,None
-,2004-05-27,0.94,1.06,1.37,1.77,2.46,3.02,3.74,4.2,4.6,5.34,None
-,2004-05-28,0.94,1.08,1.39,1.83,2.54,3.1,3.81,4.26,4.66,5.39,None
-,2004-06-01,0.97,1.17,1.44,1.89,2.6,3.14,3.86,4.31,4.71,5.45,None
-,2004-06-02,0.97,1.17,1.45,1.92,2.65,3.19,3.91,4.35,4.74,5.47,None
-,2004-06-03,0.96,1.17,1.45,1.91,2.63,3.17,3.89,4.34,4.71,5.46,None
-,2004-06-04,0.96,1.21,1.51,1.97,2.7,3.25,3.97,4.41,4.78,5.51,None
-,2004-06-07,0.97,1.24,1.54,1.96,2.67,3.22,3.95,4.39,4.78,5.51,None
-,2004-06-08,1.03,1.27,1.56,2.02,2.73,3.24,3.96,4.4,4.78,5.5,None
-,2004-06-09,1.03,1.27,1.61,2.14,2.79,3.31,4.01,4.44,4.82,5.54,None
-,2004-06-10,1.02,1.3,1.65,2.14,2.81,3.32,4.0,4.43,4.81,5.52,None
-,2004-06-14,1.07,1.41,1.77,2.25,2.97,3.45,4.1,4.51,4.89,5.59,None
-,2004-06-15,1.09,1.34,1.68,2.16,2.77,3.26,3.9,4.31,4.69,5.41,None
-,2004-06-16,1.05,1.3,1.69,2.24,2.84,3.31,3.96,4.36,4.74,5.46,None
-,2004-06-17,1.02,1.28,1.66,2.21,2.81,3.28,3.93,4.33,4.71,5.42,None
-,2004-06-18,1.03,1.29,1.68,2.24,2.81,3.28,3.94,4.34,4.72,5.43,None
-,2004-06-21,1.04,1.33,1.7,2.17,2.8,3.26,3.91,4.33,4.7,5.42,None
-,2004-06-22,1.08,1.32,1.69,2.21,2.8,3.28,3.92,4.34,4.72,5.43,None
-,2004-06-23,1.08,1.29,1.69,2.15,2.78,3.25,3.9,4.33,4.71,5.41,None
-,2004-06-24,1.1,1.29,1.68,2.11,2.74,3.21,3.85,4.27,4.66,5.36,None
-,2004-06-25,1.1,1.31,1.69,2.14,2.74,3.2,3.85,4.27,4.66,5.37,None
-,2004-06-28,1.12,1.38,1.77,2.3,2.86,3.32,3.97,4.37,4.76,5.46,None
-,2004-06-29,1.19,1.38,1.75,2.2,2.83,3.28,3.92,4.33,4.7,5.41,None
-,2004-06-30,1.17,1.33,1.68,2.09,2.7,3.16,3.81,4.24,4.62,5.33,None
-,2004-07-01,1.01,1.22,1.64,2.07,2.64,3.08,3.74,4.18,4.57,5.31,None
-,2004-07-02,1.07,1.3,1.61,2.02,2.54,2.96,3.62,4.08,4.48,5.22,None
-,2004-07-06,1.11,1.34,1.68,2.15,2.56,2.99,3.65,4.1,4.49,5.24,None
-,2004-07-07,1.16,1.3,1.64,2.0,2.56,2.99,3.67,4.1,4.5,5.24,None
-,2004-07-08,1.14,1.27,1.63,1.99,2.55,2.97,3.65,4.09,4.49,5.24,None
-,2004-07-09,1.14,1.28,1.63,2.0,2.55,2.96,3.64,4.08,4.49,5.23,None
-,2004-07-12,1.16,1.34,1.67,2.02,2.53,2.96,3.62,4.06,4.46,5.22,None
-,2004-07-13,1.19,1.34,1.69,2.05,2.58,3.0,3.66,4.1,4.5,5.25,None
-,2004-07-14,1.17,1.34,1.69,2.08,2.62,3.02,3.68,4.1,4.5,5.24,None
-,2004-07-15,1.15,1.35,1.68,2.11,2.64,3.04,3.69,4.1,4.5,5.24,None
-,2004-07-16,1.15,1.35,1.66,2.08,2.54,2.93,3.56,3.99,4.38,5.14,None
-,2004-07-19,1.16,1.35,1.68,2.1,2.56,2.94,3.57,3.99,4.38,5.14,None
-,2004-07-20,1.22,1.36,1.7,2.13,2.67,3.06,3.68,4.09,4.47,5.21,None
-,2004-07-21,1.21,1.35,1.71,2.14,2.71,3.1,3.72,4.13,4.5,5.24,None
-,2004-07-22,1.21,1.37,1.71,2.12,2.69,3.09,3.71,4.11,4.48,5.22,None
-,2004-07-23,1.23,1.38,1.71,2.12,2.69,3.08,3.69,4.08,4.45,5.2,None
-,2004-07-26,1.29,1.45,1.78,2.18,2.75,3.13,3.73,4.13,4.49,5.23,None
-,2004-07-27,1.35,1.46,1.79,2.19,2.82,3.23,3.85,4.25,4.62,5.35,None
-,2004-07-28,1.32,1.46,1.78,2.17,2.78,3.19,3.82,4.23,4.61,5.35,None
-,2004-07-29,1.29,1.45,1.77,2.15,2.75,3.16,3.8,4.23,4.6,5.34,None
-,2004-07-30,1.27,1.45,1.77,2.13,2.68,3.09,3.71,4.13,4.5,5.24,None
-,2004-08-02,1.28,1.5,1.78,2.12,2.66,3.06,3.68,4.1,4.48,5.22,None
-,2004-08-03,1.37,1.48,1.77,2.11,2.66,3.05,3.67,4.08,4.45,5.2,None
-,2004-08-04,1.34,1.49,1.76,2.11,2.66,3.05,3.66,4.08,4.45,5.2,None
-,2004-08-05,1.34,1.48,1.75,2.09,2.64,3.04,3.64,4.05,4.43,5.18,None
-,2004-08-06,1.36,1.44,1.67,1.91,2.4,2.79,3.4,3.84,4.24,5.04,None
-,2004-08-09,1.4,1.51,1.73,1.97,2.45,2.86,3.45,3.88,4.28,5.06,None
-,2004-08-10,1.42,1.5,1.75,2.01,2.55,2.94,3.52,3.94,4.32,5.08,None
-,2004-08-11,1.4,1.44,1.73,2.0,2.54,2.91,3.51,3.92,4.3,5.07,None
-,2004-08-12,1.31,1.43,1.73,1.99,2.52,2.89,3.47,3.89,4.27,5.05,None
-,2004-08-13,1.32,1.44,1.72,1.97,2.47,2.85,3.42,3.85,4.22,5.02,None
-,2004-08-16,1.36,1.49,1.77,2.01,2.51,2.87,3.45,3.89,4.26,5.06,None
-,2004-08-17,1.38,1.48,1.75,1.98,2.44,2.81,3.39,3.83,4.21,5.02,None
-,2004-08-18,1.37,1.49,1.74,1.97,2.44,2.82,3.41,3.85,4.23,5.04,None
-,2004-08-19,1.35,1.48,1.73,1.96,2.43,2.8,3.39,3.84,4.22,5.03,None
-,2004-08-20,1.34,1.49,1.74,1.98,2.46,2.83,3.42,3.86,4.24,5.03,None
-,2004-08-23,1.33,1.54,1.8,2.03,2.5,2.87,3.46,3.9,4.28,5.08,None
-,2004-08-24,1.39,1.54,1.8,2.03,2.5,2.87,3.46,3.91,4.28,5.08,None
-,2004-08-25,1.38,1.54,1.79,2.03,2.51,2.88,3.46,3.89,4.26,5.06,None
-,2004-08-26,1.4,1.55,1.79,2.02,2.48,2.85,3.42,3.85,4.22,5.03,None
-,2004-08-27,1.43,1.56,1.8,2.03,2.48,2.85,3.43,3.86,4.23,5.02,None
-,2004-08-30,1.45,1.61,1.83,2.04,2.47,2.82,3.4,3.82,4.19,4.99,None
-,2004-08-31,1.45,1.59,1.79,1.99,2.41,2.75,3.33,3.76,4.13,4.93,None
-,2004-09-01,1.43,1.58,1.79,1.99,2.41,2.74,3.32,3.76,4.13,4.93,None
-,2004-09-02,1.46,1.6,1.8,2.02,2.46,2.8,3.4,3.83,4.2,4.99,None
-,2004-09-03,1.49,1.65,1.87,2.12,2.61,2.94,3.52,3.93,4.3,5.07,None
-,2004-09-07,1.53,1.66,1.91,2.13,2.58,2.91,3.48,3.89,4.26,5.03,None
-,2004-09-08,1.57,1.65,1.88,2.09,2.5,2.83,3.4,3.8,4.18,4.96,None
-,2004-09-09,1.57,1.64,1.88,2.09,2.5,2.85,3.41,3.84,4.22,4.99,None
-,2004-09-10,1.6,1.66,1.87,2.08,2.5,2.84,3.4,3.79,4.19,4.97,None
-,2004-09-13,1.59,1.66,1.89,2.1,2.5,2.83,3.38,3.78,4.16,4.94,None
-,2004-09-14,1.57,1.66,1.88,2.08,2.47,2.81,3.35,3.76,4.15,4.93,None
-,2004-09-15,1.56,1.67,1.88,2.09,2.51,2.84,3.39,3.8,4.18,4.96,None
-,2004-09-16,1.55,1.67,1.87,2.06,2.44,2.75,3.29,3.69,4.08,4.86,None
-,2004-09-17,1.58,1.71,1.9,2.11,2.53,2.83,3.35,3.75,4.14,4.91,None
-,2004-09-20,1.6,1.73,1.92,2.1,2.46,2.75,3.28,3.68,4.07,4.85,None
-,2004-09-21,1.62,1.72,1.93,2.12,2.49,2.79,3.28,3.66,4.05,4.82,None
-,2004-09-22,1.53,1.71,1.93,2.12,2.5,2.78,3.26,3.62,4.0,4.75,None
-,2004-09-23,1.53,1.72,1.95,2.16,2.57,2.83,3.3,3.66,4.02,4.78,None
-,2004-09-24,1.53,1.73,1.99,2.2,2.62,2.88,3.33,3.69,4.04,4.78,None
-,2004-09-27,1.59,1.74,2.0,2.2,2.59,2.84,3.29,3.65,4.01,4.75,None
-,2004-09-28,1.62,1.72,1.99,2.18,2.55,2.8,3.28,3.66,4.02,4.78,None
-,2004-09-29,1.52,1.72,1.99,2.2,2.61,2.89,3.37,3.75,4.1,4.85,None
-,2004-09-30,1.47,1.71,2.0,2.21,2.63,2.89,3.38,3.79,4.14,4.89,None
-,2004-10-01,1.52,1.71,2.0,2.21,2.63,2.92,3.44,3.85,4.21,4.95,None
-,2004-10-04,1.54,1.71,2.04,2.25,2.65,2.93,3.44,3.84,4.19,4.93,None
-,2004-10-05,1.57,1.71,2.03,2.23,2.65,2.93,3.44,3.83,4.18,4.93,None
-,2004-10-06,1.56,1.71,2.04,2.26,2.7,2.99,3.51,3.88,4.23,4.97,None
-,2004-10-07,1.56,1.7,2.03,2.26,2.72,3.01,3.53,3.92,4.26,5.0,None
-,2004-10-08,1.56,1.71,2.01,2.21,2.61,2.88,3.39,3.8,4.15,4.91,None
-,2004-10-12,1.59,1.72,2.02,2.2,2.56,2.84,3.35,3.77,4.12,4.88,None
-,2004-10-13,1.59,1.72,2.0,2.17,2.53,2.8,3.32,3.74,4.09,4.86,None
-,2004-10-14,1.6,1.74,1.99,2.15,2.48,2.76,3.26,3.68,4.03,4.81,None
-,2004-10-15,1.59,1.76,2.0,2.18,2.53,2.8,3.31,3.72,4.07,4.84,None
-,2004-10-18,1.61,1.81,2.05,2.21,2.55,2.82,3.31,3.72,4.07,4.84,None
-,2004-10-19,1.63,1.82,2.05,2.22,2.57,2.84,3.32,3.73,4.07,4.83,None
-,2004-10-20,1.62,1.82,2.04,2.2,2.53,2.78,3.26,3.66,4.01,4.77,None
-,2004-10-21,1.64,1.85,2.06,2.23,2.57,2.83,3.29,3.68,4.01,4.76,None
-,2004-10-22,1.65,1.85,2.07,2.23,2.55,2.79,3.26,3.66,4.0,4.75,None
-,2004-10-25,1.73,1.9,2.1,2.24,2.54,2.78,3.25,3.63,3.99,4.74,None
-,2004-10-26,1.82,1.91,2.1,2.24,2.54,2.8,3.26,3.65,4.01,4.75,None
-,2004-10-27,1.78,1.92,2.13,2.3,2.63,2.89,3.37,3.76,4.11,4.85,None
-,2004-10-28,1.71,1.91,2.14,2.29,2.59,2.86,3.34,3.74,4.09,4.83,None
-,2004-10-29,1.73,1.91,2.13,2.28,2.56,2.82,3.3,3.7,4.05,4.79,None
-,2004-11-01,1.79,1.99,2.2,2.34,2.61,2.89,3.36,3.76,4.11,4.84,None
-,2004-11-02,1.86,1.97,2.19,2.33,2.6,2.86,3.34,3.75,4.1,4.84,None
-,2004-11-03,1.83,1.96,2.18,2.32,2.6,2.85,3.35,3.74,4.09,4.83,None
-,2004-11-04,1.85,1.98,2.19,2.34,2.63,2.89,3.37,3.76,4.1,4.82,None
-,2004-11-05,1.86,2.03,2.27,2.44,2.8,3.04,3.51,3.88,4.21,4.92,None
-,2004-11-08,1.88,2.07,2.3,2.47,2.8,3.08,3.51,3.88,4.22,4.95,None
-,2004-11-09,1.89,2.08,2.29,2.46,2.8,3.05,3.53,3.88,4.22,4.95,None
-,2004-11-10,1.88,2.08,2.29,2.47,2.82,3.07,3.56,3.89,4.25,4.97,None
-,2004-11-12,1.91,2.08,2.31,2.49,2.86,3.1,3.53,3.89,4.2,4.91,None
-,2004-11-15,1.92,2.12,2.34,2.53,2.89,3.12,3.53,3.89,4.2,4.91,None
-,2004-11-16,1.93,2.14,2.36,2.54,2.91,3.14,3.56,3.91,4.21,4.92,None
-,2004-11-17,1.9,2.13,2.33,2.5,2.85,3.07,3.47,3.83,4.14,4.85,None
-,2004-11-18,1.91,2.13,2.34,2.51,2.86,3.08,3.48,3.81,4.12,4.82,None
-,2004-11-19,1.98,2.15,2.36,2.56,2.95,3.17,3.57,3.91,4.2,4.89,None
-,2004-11-22,1.98,2.2,2.43,2.6,2.95,3.18,3.56,3.9,4.18,4.85,None
-,2004-11-23,1.99,2.19,2.41,2.6,2.98,3.2,3.58,3.92,4.19,4.85,None
-,2004-11-24,1.98,2.18,2.4,2.6,3.01,3.23,3.61,3.93,4.2,4.85,None
-,2004-11-26,2.01,2.21,2.4,2.61,3.03,3.25,3.64,3.98,4.24,4.9,None
-,2004-11-29,2.02,2.23,2.46,2.66,3.07,3.31,3.72,4.06,4.34,4.99,None
-,2004-11-30,2.07,2.23,2.44,2.63,3.02,3.29,3.72,4.07,4.36,5.03,None
-,2004-12-01,2.06,2.22,2.4,2.6,3.01,3.28,3.72,4.08,4.38,5.04,None
-,2004-12-02,2.06,2.22,2.41,2.62,3.04,3.3,3.75,4.1,4.4,5.07,None
-,2004-12-03,2.06,2.21,2.39,2.58,2.94,3.19,3.61,3.96,4.27,4.95,None
-,2004-12-06,2.09,2.25,2.44,2.6,2.93,3.17,3.59,3.94,4.24,4.92,None
-,2004-12-07,2.08,2.25,2.43,2.6,2.95,3.19,3.6,3.94,4.23,4.91,None
-,2004-12-08,2.08,2.24,2.42,2.59,2.91,3.12,3.53,3.85,4.14,4.8,None
-,2004-12-09,2.07,2.24,2.42,2.59,2.93,3.15,3.54,3.87,4.19,4.84,None
-,2004-12-10,2.07,2.25,2.44,2.61,2.95,3.15,3.52,3.85,4.16,4.83,None
-,2004-12-13,2.04,2.24,2.5,2.66,2.98,3.18,3.54,3.85,4.16,4.81,None
-,2004-12-14,2.01,2.21,2.48,2.65,2.99,3.17,3.53,3.83,4.14,4.79,None
-,2004-12-15,1.98,2.21,2.47,2.64,2.97,3.14,3.48,3.78,4.09,4.72,None
-,2004-12-16,1.93,2.2,2.47,2.66,3.01,3.21,3.58,3.89,4.19,4.84,None
-,2004-12-17,1.95,2.2,2.48,2.67,3.03,3.22,3.59,3.91,4.21,4.85,None
-,2004-12-20,1.97,2.22,2.54,2.72,3.06,3.23,3.59,3.91,4.21,4.84,None
-,2004-12-21,1.92,2.2,2.54,2.72,3.05,3.22,3.57,3.89,4.18,4.82,None
-,2004-12-22,1.84,2.18,2.53,2.71,3.04,3.21,3.57,3.91,4.21,4.85,None
-,2004-12-23,1.83,2.19,2.54,2.7,3.02,3.21,3.58,3.92,4.23,4.86,None
-,2004-12-27,1.9,2.26,2.63,2.78,3.07,3.26,3.65,3.99,4.3,4.95,None
-,2004-12-28,1.88,2.25,2.62,2.77,3.08,3.27,3.66,4.0,4.31,4.94,None
-,2004-12-29,1.76,2.22,2.6,2.77,3.12,3.32,3.69,4.03,4.33,4.96,None
-,2004-12-30,1.68,2.22,2.59,2.76,3.1,3.27,3.64,3.97,4.27,4.92,None
-,2004-12-31,1.89,2.22,2.59,2.75,3.08,3.25,3.63,3.94,4.24,4.85,None
-,2005-01-03,1.99,2.32,2.63,2.79,3.1,3.28,3.64,3.94,4.23,4.84,None
-,2005-01-04,2.05,2.33,2.63,2.82,3.2,3.38,3.72,4.02,4.29,4.91,None
-,2005-01-05,2.04,2.33,2.63,2.83,3.22,3.39,3.73,4.02,4.29,4.88,None
-,2005-01-06,2.04,2.31,2.63,2.82,3.18,3.36,3.71,4.01,4.29,4.88,None
-,2005-01-07,2.03,2.32,2.63,2.82,3.2,3.4,3.73,4.03,4.29,4.88,None
-,2005-01-10,2.07,2.36,2.67,2.86,3.23,3.41,3.75,4.03,4.29,4.86,None
-,2005-01-11,2.03,2.34,2.67,2.86,3.24,3.41,3.73,4.0,4.26,4.83,None
-,2005-01-12,2.01,2.34,2.64,2.84,3.22,3.38,3.72,4.0,4.25,4.81,None
-,2005-01-13,2.06,2.35,2.65,2.84,3.21,3.36,3.68,3.95,4.2,4.75,None
-,2005-01-14,2.06,2.37,2.68,2.87,3.24,3.41,3.71,3.97,4.23,4.76,None
-,2005-01-18,2.05,2.39,2.71,2.9,3.26,3.42,3.72,3.97,4.21,4.73,None
-,2005-01-19,1.95,2.37,2.69,2.88,3.26,3.42,3.73,3.97,4.2,4.71,None
-,2005-01-20,1.89,2.35,2.67,2.85,3.21,3.38,3.68,3.94,4.17,4.7,None
-,2005-01-21,2.02,2.36,2.66,2.83,3.16,3.33,3.65,3.92,4.16,4.69,None
-,2005-01-24,2.05,2.37,2.69,2.86,3.2,3.36,3.65,3.9,4.14,4.65,None
-,2005-01-25,2.13,2.39,2.7,2.88,3.23,3.39,3.71,3.97,4.2,4.72,None
-,2005-01-26,2.16,2.41,2.71,2.9,3.27,3.43,3.73,3.98,4.21,4.72,None
-,2005-01-27,2.16,2.44,2.72,2.91,3.28,3.45,3.75,4.0,4.22,4.73,None
-,2005-01-28,2.12,2.46,2.71,2.89,3.25,3.41,3.69,3.93,4.16,4.66,None
-,2005-01-31,2.06,2.51,2.79,2.96,3.29,3.43,3.71,3.92,4.14,4.64,None
-,2005-02-01,2.23,2.51,2.77,2.95,3.29,3.43,3.71,3.93,4.15,4.65,None
-,2005-02-02,2.22,2.51,2.76,2.95,3.32,3.47,3.73,3.93,4.15,4.63,None
-,2005-02-03,2.18,2.48,2.76,2.96,3.34,3.51,3.76,3.97,4.18,4.64,None
-,2005-02-04,2.2,2.47,2.75,2.93,3.29,3.44,3.68,3.88,4.09,4.54,None
-,2005-02-07,2.27,2.51,2.78,2.96,3.31,3.46,3.67,3.87,4.07,4.49,None
-,2005-02-08,2.34,2.49,2.78,2.97,3.33,3.47,3.68,3.86,4.05,4.46,None
-,2005-02-09,2.34,2.51,2.77,2.93,3.24,3.38,3.58,3.79,4.0,4.43,None
-,2005-02-10,2.35,2.51,2.78,2.96,3.29,3.43,3.65,3.86,4.07,4.52,None
-,2005-02-11,2.36,2.55,2.83,3.0,3.34,3.48,3.7,3.9,4.1,4.55,None
-,2005-02-14,2.37,2.59,2.84,3.03,3.38,3.51,3.7,3.88,4.08,4.51,None
-,2005-02-15,2.4,2.59,2.86,3.03,3.37,3.51,3.71,3.91,4.1,4.55,None
-,2005-02-16,2.39,2.57,2.86,3.05,3.41,3.56,3.78,3.97,4.16,4.6,None
-,2005-02-17,2.4,2.58,2.85,3.03,3.38,3.55,3.78,3.99,4.19,4.65,None
-,2005-02-18,2.39,2.61,2.9,3.09,3.45,3.62,3.86,4.07,4.27,4.72,None
-,2005-02-22,2.43,2.67,2.94,3.12,3.46,3.62,3.88,4.09,4.29,4.75,None
-,2005-02-23,2.47,2.67,2.94,3.12,3.46,3.63,3.87,4.08,4.27,4.73,None
-,2005-02-24,2.48,2.69,2.94,3.13,3.52,3.67,3.91,4.1,4.29,4.74,None
-,2005-02-25,2.5,2.74,2.95,3.15,3.54,3.68,3.91,4.09,4.27,4.72,None
-,2005-02-28,2.51,2.76,3.01,3.2,3.59,3.75,4.0,4.18,4.36,4.79,None
-,2005-03-01,2.55,2.75,3.0,3.2,3.59,3.76,4.02,4.19,4.38,4.8,None
-,2005-03-02,2.54,2.74,3.0,3.19,3.57,3.75,4.0,4.2,4.38,4.82,None
-,2005-03-03,2.55,2.76,3.0,3.19,3.59,3.76,4.02,4.2,4.39,4.82,None
-,2005-03-04,2.56,2.76,3.01,3.2,3.57,3.73,3.97,4.15,4.32,4.73,None
-,2005-03-07,2.59,2.76,3.02,3.22,3.61,3.76,3.99,4.15,4.31,4.7,None
-,2005-03-08,2.61,2.75,3.03,3.23,3.62,3.79,4.05,4.22,4.38,4.78,None
-,2005-03-09,2.6,2.76,3.03,3.24,3.66,3.87,4.16,4.35,4.52,4.92,None
-,2005-03-10,2.6,2.75,3.04,3.25,3.68,3.87,4.13,4.29,4.48,4.85,None
-,2005-03-11,2.6,2.76,3.06,3.28,3.73,3.94,4.22,4.39,4.56,4.93,None
-,2005-03-14,2.62,2.8,3.1,3.32,3.75,3.95,4.2,4.36,4.52,4.9,None
-,2005-03-15,2.7,2.81,3.1,3.32,3.75,3.96,4.22,4.38,4.54,4.93,None
-,2005-03-16,2.68,2.8,3.09,3.3,3.72,3.92,4.18,4.35,4.52,4.91,None
-,2005-03-17,2.68,2.79,3.08,3.29,3.7,3.89,4.14,4.3,4.47,4.87,None
-,2005-03-18,2.7,2.81,3.11,3.32,3.72,3.91,4.18,4.34,4.51,4.92,None
-,2005-03-21,2.72,2.85,3.13,3.33,3.72,3.93,4.18,4.35,4.53,4.94,None
-,2005-03-22,2.77,2.89,3.17,3.4,3.86,4.06,4.31,4.45,4.63,5.01,None
-,2005-03-23,2.72,2.83,3.14,3.38,3.84,4.05,4.3,4.45,4.61,4.99,None
-,2005-03-24,2.7,2.84,3.16,3.41,3.88,4.06,4.3,4.44,4.6,4.97,None
-,2005-03-28,2.69,2.84,3.19,3.43,3.9,4.09,4.33,4.48,4.64,5.01,None
-,2005-03-29,2.7,2.84,3.17,3.41,3.87,4.05,4.3,4.44,4.6,4.98,None
-,2005-03-30,2.71,2.83,3.15,3.39,3.86,4.03,4.26,4.4,4.56,4.93,None
-,2005-03-31,2.63,2.79,3.13,3.35,3.8,3.96,4.18,4.33,4.5,4.88,None
-,2005-04-01,2.66,2.8,3.13,3.34,3.75,3.9,4.13,4.29,4.46,4.85,None
-,2005-04-04,2.64,2.8,3.14,3.34,3.74,3.9,4.13,4.3,4.47,4.84,None
-,2005-04-05,2.63,2.79,3.13,3.34,3.75,3.91,4.15,4.31,4.48,4.87,None
-,2005-04-06,2.6,2.76,3.11,3.31,3.7,3.86,4.09,4.26,4.44,4.85,None
-,2005-04-07,2.61,2.77,3.12,3.32,3.72,3.89,4.13,4.3,4.49,4.9,None
-,2005-04-08,2.61,2.79,3.14,3.35,3.77,3.94,4.17,4.32,4.5,4.88,None
-,2005-04-11,2.6,2.76,3.17,3.37,3.75,3.91,4.13,4.28,4.45,4.84,None
-,2005-04-12,2.62,2.76,3.16,3.34,3.71,3.85,4.05,4.2,4.38,4.78,None
-,2005-04-13,2.62,2.77,3.15,3.32,3.66,3.83,4.03,4.2,4.38,4.8,None
-,2005-04-14,2.62,2.78,3.14,3.3,3.6,3.76,3.99,4.17,4.37,4.8,None
-,2005-04-15,2.63,2.79,3.12,3.26,3.54,3.68,3.9,4.09,4.27,4.73,None
-,2005-04-18,2.67,2.9,3.15,3.29,3.55,3.69,3.9,4.08,4.27,4.7,None
-,2005-04-19,2.73,2.91,3.13,3.26,3.5,3.64,3.85,4.02,4.21,4.64,None
-,2005-04-20,2.65,2.87,3.11,3.25,3.52,3.65,3.86,4.03,4.22,4.66,None
-,2005-04-21,2.59,2.88,3.13,3.31,3.65,3.77,3.97,4.13,4.32,4.73,None
-,2005-04-22,2.64,2.93,3.14,3.3,3.62,3.73,3.92,4.08,4.26,4.68,None
-,2005-04-25,2.67,2.93,3.19,3.34,3.64,3.75,3.94,4.08,4.26,4.65,None
-,2005-04-26,2.7,2.91,3.18,3.35,3.67,3.77,3.96,4.1,4.28,4.67,None
-,2005-04-27,2.65,2.89,3.17,3.33,3.64,3.75,3.92,4.06,4.25,4.65,None
-,2005-04-28,2.6,2.88,3.15,3.3,3.59,3.67,3.85,3.99,4.19,4.6,None
-,2005-04-29,2.7,2.9,3.17,3.33,3.66,3.73,3.9,4.03,4.21,4.61,None
-,2005-05-02,2.68,2.93,3.19,3.34,3.64,3.71,3.88,4.02,4.21,4.61,None
-,2005-05-03,2.65,2.91,3.19,3.35,3.68,3.73,3.9,4.03,4.21,4.6,None
-,2005-05-04,2.59,2.87,3.17,3.32,3.63,3.7,3.87,4.01,4.2,4.64,None
-,2005-05-05,2.6,2.81,3.14,3.29,3.58,3.65,3.82,3.98,4.19,4.64,None
-,2005-05-06,2.64,2.87,3.19,3.37,3.73,3.8,3.95,4.09,4.28,4.69,None
-,2005-05-09,2.66,2.91,3.22,3.4,3.76,3.83,3.99,4.11,4.29,4.69,None
-,2005-05-10,2.6,2.9,3.2,3.37,3.69,3.79,3.93,4.04,4.23,4.65,None
-,2005-05-11,2.6,2.87,3.18,3.35,3.68,3.78,3.91,4.01,4.21,4.61,None
-,2005-05-12,2.58,2.88,3.17,3.34,3.66,3.75,3.87,3.99,4.18,4.59,None
-,2005-05-13,2.47,2.83,3.13,3.29,3.61,3.71,3.83,3.95,4.12,4.56,None
-,2005-05-16,2.48,2.89,3.18,3.33,3.61,3.71,3.83,3.9,4.13,4.56,None
-,2005-05-17,2.6,2.88,3.17,3.32,3.61,3.71,3.82,3.88,4.12,4.54,None
-,2005-05-18,2.6,2.86,3.15,3.29,3.56,3.67,3.77,3.83,4.07,4.49,None
-,2005-05-19,2.63,2.87,3.14,3.31,3.64,3.73,3.84,3.86,4.11,4.52,None
-,2005-05-20,2.66,2.9,3.17,3.35,3.69,3.77,3.88,3.89,4.13,4.52,None
-,2005-05-23,2.69,2.97,3.19,3.35,3.65,3.73,3.83,3.83,4.07,4.46,None
-,2005-05-24,2.82,2.94,3.17,3.32,3.61,3.68,3.78,3.8,4.04,4.43,None
-,2005-05-25,2.79,2.95,3.17,3.32,3.61,3.68,3.81,3.85,4.08,4.48,None
-,2005-05-26,2.77,2.94,3.15,3.31,3.64,3.72,3.82,3.92,4.08,4.49,None
-,2005-05-27,2.77,2.97,3.14,3.31,3.64,3.72,3.82,3.92,4.08,4.49,None
-,2005-05-31,2.8,2.99,3.18,3.32,3.6,3.65,3.76,3.86,4.0,4.4,None
-,2005-06-01,2.79,2.97,3.12,3.25,3.5,3.55,3.63,3.74,3.91,4.31,None
-,2005-06-02,2.8,2.97,3.13,3.26,3.52,3.56,3.65,3.74,3.89,4.28,None
-,2005-06-03,2.82,3.01,3.13,3.28,3.57,3.63,3.73,3.83,3.98,4.34,None
-,2005-06-06,2.83,3.02,3.15,3.3,3.59,3.64,3.73,3.82,3.96,4.31,None
-,2005-06-07,2.82,3.02,3.14,3.28,3.57,3.62,3.7,3.78,3.92,4.26,None
-,2005-06-08,2.83,3.02,3.15,3.3,3.6,3.65,3.73,3.81,3.95,4.29,None
-,2005-06-09,2.81,2.99,3.14,3.31,3.64,3.68,3.76,3.84,3.98,4.31,None
-,2005-06-10,2.82,3.01,3.14,3.33,3.71,3.75,3.84,3.92,4.05,4.39,None
-,2005-06-13,2.82,3.03,3.22,3.38,3.71,3.77,3.87,3.96,4.09,4.44,None
-,2005-06-14,2.78,3.01,3.22,3.39,3.71,3.78,3.89,3.99,4.13,4.49,None
-,2005-06-15,2.78,3.0,3.22,3.39,3.72,3.79,3.9,3.99,4.12,4.49,None
-,2005-06-16,2.76,2.98,3.21,3.38,3.7,3.76,3.87,3.96,4.09,4.45,None
-,2005-06-17,2.79,2.99,3.23,3.39,3.72,3.76,3.88,3.97,4.09,4.44,None
-,2005-06-20,2.81,3.02,3.26,3.42,3.72,3.78,3.88,3.98,4.11,4.46,None
-,2005-06-21,2.85,3.02,3.28,3.42,3.71,3.75,3.84,3.93,4.06,4.4,None
-,2005-06-22,2.84,3.03,3.25,3.37,3.62,3.65,3.72,3.81,3.95,4.31,None
-,2005-06-23,2.79,3.07,3.27,3.39,3.63,3.66,3.74,3.82,3.96,4.32,None
-,2005-06-24,2.78,3.09,3.27,3.38,3.59,3.63,3.69,3.78,3.92,4.28,None
-,2005-06-27,2.85,3.15,3.33,3.42,3.6,3.62,3.69,3.77,3.9,4.25,None
-,2005-06-28,2.99,3.14,3.35,3.46,3.65,3.68,3.76,3.84,3.97,4.3,None
-,2005-06-29,2.95,3.13,3.33,3.44,3.65,3.69,3.77,3.85,3.99,4.33,None
-,2005-06-30,2.99,3.13,3.34,3.45,3.66,3.67,3.72,3.8,3.94,4.28,None
-,2005-07-01,3.02,3.17,3.38,3.51,3.76,3.77,3.84,3.92,4.06,4.37,None
-,2005-07-05,3.03,3.22,3.43,3.55,3.79,3.82,3.9,3.98,4.11,4.43,None
-,2005-07-06,3.04,3.19,3.41,3.53,3.77,3.8,3.86,3.95,4.08,4.4,None
-,2005-07-07,3.0,3.15,3.37,3.48,3.71,3.75,3.83,3.92,4.05,4.37,None
-,2005-07-08,2.99,3.17,3.39,3.52,3.78,3.82,3.89,3.98,4.11,4.42,None
-,2005-07-11,2.98,3.19,3.46,3.58,3.81,3.85,3.91,3.99,4.11,4.42,None
-,2005-07-12,3.02,3.21,3.48,3.59,3.82,3.88,3.94,4.03,4.15,4.46,None
-,2005-07-13,3.03,3.22,3.46,3.59,3.84,3.89,3.96,4.04,4.17,4.47,None
-,2005-07-14,3.04,3.23,3.47,3.6,3.86,3.91,3.98,4.06,4.19,4.49,None
-,2005-07-15,3.04,3.26,3.48,3.61,3.86,3.92,3.98,4.06,4.18,4.47,None
-,2005-07-18,3.06,3.3,3.54,3.66,3.89,3.94,4.01,4.1,4.22,4.53,None
-,2005-07-19,3.13,3.31,3.54,3.65,3.88,3.93,3.99,4.07,4.2,4.5,None
-,2005-07-20,3.11,3.3,3.54,3.66,3.9,3.93,3.99,4.06,4.17,4.47,None
-,2005-07-21,3.13,3.35,3.6,3.72,3.96,4.01,4.09,4.16,4.28,4.58,None
-,2005-07-22,3.16,3.38,3.61,3.72,3.92,3.97,4.04,4.11,4.23,4.52,None
-,2005-07-25,3.2,3.44,3.68,3.77,3.95,3.99,4.06,4.14,4.25,4.53,None
-,2005-07-26,3.25,3.43,3.67,3.76,3.95,4.0,4.06,4.14,4.24,4.53,None
-,2005-07-27,3.23,3.4,3.67,3.77,3.99,4.04,4.09,4.16,4.27,4.55,None
-,2005-07-28,3.25,3.41,3.66,3.75,3.96,4.0,4.04,4.1,4.2,4.48,None
-,2005-07-29,3.25,3.42,3.69,3.8,4.02,4.06,4.12,4.19,4.28,4.56,None
-,2005-08-01,3.3,3.48,3.73,3.83,4.04,4.09,4.16,4.22,4.32,4.59,None
-,2005-08-02,3.35,3.49,3.73,3.84,4.06,4.1,4.17,4.24,4.34,4.62,None
-,2005-08-03,3.34,3.46,3.72,3.82,4.02,4.07,4.13,4.2,4.3,4.58,None
-,2005-08-04,3.34,3.47,3.72,3.83,4.04,4.09,4.15,4.22,4.32,4.6,None
-,2005-08-05,3.35,3.52,3.75,3.87,4.11,4.16,4.24,4.3,4.4,4.66,None
-,2005-08-08,3.38,3.54,3.82,3.93,4.16,4.22,4.28,4.34,4.42,4.68,None
-,2005-08-09,3.37,3.52,3.79,3.9,4.13,4.19,4.25,4.31,4.41,4.66,None
-,2005-08-10,3.38,3.51,3.78,3.9,4.13,4.18,4.24,4.3,4.4,4.65,None
-,2005-08-11,3.31,3.51,3.78,3.89,4.1,4.14,4.18,4.24,4.32,4.6,None
-,2005-08-12,3.32,3.52,3.79,3.88,4.05,4.08,4.11,4.16,4.24,4.52,None
-,2005-08-15,3.28,3.54,3.82,3.91,4.08,4.11,4.15,4.2,4.27,4.53,None
-,2005-08-16,3.32,3.54,3.8,3.88,4.03,4.06,4.1,4.15,4.23,4.49,None
-,2005-08-17,3.31,3.52,3.8,3.89,4.07,4.1,4.15,4.2,4.28,4.53,None
-,2005-08-18,3.3,3.5,3.78,3.86,4.01,4.04,4.08,4.13,4.21,4.48,None
-,2005-08-19,3.33,3.52,3.81,3.89,4.03,4.05,4.08,4.13,4.21,4.47,None
-,2005-08-22,3.34,3.53,3.82,3.89,4.03,4.06,4.08,4.14,4.22,4.48,None
-,2005-08-23,3.34,3.53,3.81,3.88,4.01,4.03,4.07,4.12,4.2,4.46,None
-,2005-08-24,3.34,3.53,3.81,3.87,3.99,4.03,4.06,4.11,4.19,4.46,None
-,2005-08-25,3.34,3.54,3.81,3.87,4.0,4.03,4.06,4.11,4.18,4.45,None
-,2005-08-26,3.36,3.55,3.82,3.9,4.06,4.07,4.09,4.13,4.2,4.46,None
-,2005-08-29,3.42,3.54,3.83,3.91,4.06,4.07,4.08,4.13,4.2,4.45,None
-,2005-08-30,3.4,3.54,3.79,3.85,3.97,4.01,4.03,4.08,4.16,4.43,None
-,2005-08-31,3.41,3.52,3.74,3.77,3.84,3.83,3.87,3.93,4.02,4.3,None
-,2005-09-01,3.35,3.48,3.62,3.66,3.72,3.8,3.85,3.91,4.02,4.31,None
-,2005-09-02,3.38,3.46,3.63,3.67,3.75,3.79,3.85,3.92,4.03,4.33,None
-,2005-09-06,3.39,3.52,3.7,3.73,3.8,3.83,3.89,3.97,4.09,4.39,None
-,2005-09-07,3.36,3.49,3.73,3.77,3.87,3.89,3.93,4.01,4.15,4.46,None
-,2005-09-08,3.31,3.48,3.73,3.77,3.87,3.89,3.94,4.03,4.15,4.45,None
-,2005-09-09,3.32,3.49,3.73,3.78,3.88,3.9,3.94,4.01,4.14,4.45,None
-,2005-09-12,3.33,3.51,3.79,3.83,3.92,3.93,3.98,4.06,4.18,4.5,None
-,2005-09-13,3.3,3.47,3.77,3.81,3.88,3.88,3.93,4.01,4.14,4.47,None
-,2005-09-14,3.25,3.42,3.76,3.81,3.9,3.91,3.96,4.04,4.17,4.5,None
-,2005-09-15,3.23,3.45,3.77,3.81,3.9,3.93,3.99,4.08,4.22,4.56,None
-,2005-09-16,3.23,3.5,3.81,3.86,3.97,4.0,4.05,4.13,4.26,4.61,None
-,2005-09-19,3.23,3.58,3.84,3.87,3.93,3.95,4.02,4.11,4.25,4.6,None
-,2005-09-20,3.29,3.61,3.89,3.92,4.0,4.01,4.06,4.14,4.26,4.59,None
-,2005-09-21,3.02,3.41,3.83,3.88,3.96,3.96,4.01,4.08,4.19,4.52,None
-,2005-09-22,2.99,3.47,3.81,3.86,3.95,3.95,3.99,4.07,4.19,4.52,None
-,2005-09-23,3.06,3.48,3.82,3.89,4.02,4.03,4.07,4.14,4.25,4.57,None
-,2005-09-26,3.19,3.52,3.88,3.95,4.07,4.08,4.11,4.18,4.3,4.6,None
-,2005-09-27,3.15,3.49,3.87,3.95,4.08,4.09,4.13,4.2,4.3,4.6,None
-,2005-09-28,3.12,3.46,3.87,3.95,4.09,4.09,4.11,4.17,4.26,4.55,None
-,2005-09-29,3.09,3.54,3.89,3.97,4.13,4.13,4.14,4.2,4.29,4.59,None
-,2005-09-30,3.15,3.55,3.93,4.01,4.18,4.18,4.18,4.23,4.34,4.62,None
-,2005-10-03,3.22,3.61,4.02,4.09,4.21,4.23,4.25,4.31,4.39,4.67,None
-,2005-10-04,3.35,3.63,4.02,4.09,4.22,4.22,4.24,4.3,4.38,4.66,None
-,2005-10-05,3.34,3.58,4.0,4.07,4.21,4.2,4.23,4.28,4.36,4.63,None
-,2005-10-06,3.34,3.61,4.0,4.07,4.2,4.21,4.23,4.28,4.37,4.64,None
-,2005-10-07,3.35,3.63,4.0,4.06,4.18,4.19,4.23,4.28,4.35,4.62,None
-,2005-10-11,3.41,3.73,4.1,4.14,4.22,4.23,4.27,4.32,4.39,4.65,None
-,2005-10-12,3.49,3.7,4.1,4.14,4.24,4.27,4.32,4.37,4.45,4.71,None
-,2005-10-13,3.5,3.75,4.09,4.14,4.24,4.27,4.32,4.38,4.48,4.77,None
-,2005-10-14,3.49,3.78,4.08,4.15,4.27,4.3,4.34,4.4,4.48,4.76,None
-,2005-10-17,3.53,3.86,4.17,4.21,4.29,4.31,4.36,4.41,4.5,4.77,None
-,2005-10-18,3.57,3.85,4.15,4.19,4.27,4.3,4.34,4.4,4.49,4.78,None
-,2005-10-19,3.57,3.86,4.15,4.18,4.25,4.28,4.32,4.38,4.47,4.76,None
-,2005-10-20,3.46,3.85,4.16,4.2,4.27,4.29,4.33,4.38,4.46,4.75,None
-,2005-10-21,3.48,3.87,4.16,4.18,4.22,4.23,4.26,4.31,4.39,4.68,None
-,2005-10-24,3.51,3.92,4.2,4.22,4.25,4.28,4.32,4.37,4.45,4.74,None
-,2005-10-25,3.71,3.93,4.21,4.26,4.34,4.36,4.41,4.46,4.54,4.8,None
-,2005-10-26,3.7,3.9,4.21,4.27,4.38,4.42,4.46,4.52,4.6,4.87,None
-,2005-10-27,3.72,3.88,4.2,4.26,4.36,4.39,4.43,4.49,4.57,4.84,None
-,2005-10-28,3.75,3.93,4.22,4.28,4.4,4.42,4.46,4.51,4.58,4.84,None
-,2005-10-31,3.77,3.98,4.26,4.31,4.4,4.41,4.45,4.49,4.57,4.84,None
-,2005-11-01,3.78,3.96,4.25,4.31,4.42,4.44,4.47,4.51,4.58,4.85,None
-,2005-11-02,3.77,3.94,4.25,4.31,4.43,4.46,4.5,4.54,4.61,4.88,None
-,2005-11-03,3.81,3.94,4.27,4.33,4.47,4.5,4.55,4.59,4.65,4.94,None
-,2005-11-04,3.8,3.98,4.27,4.34,4.47,4.5,4.56,4.6,4.66,4.95,None
-,2005-11-07,3.81,3.96,4.31,4.36,4.47,4.5,4.55,4.59,4.65,4.93,None
-,2005-11-08,3.88,3.96,4.3,4.34,4.43,4.47,4.49,4.52,4.57,4.86,None
-,2005-11-09,3.91,3.99,4.32,4.37,4.49,4.53,4.55,4.58,4.64,4.93,None
-,2005-11-10,3.89,3.97,4.3,4.34,4.44,4.48,4.49,4.51,4.55,4.85,None
-,2005-11-14,3.93,4.02,4.35,4.4,4.5,4.52,4.54,4.57,4.61,4.9,None
-,2005-11-15,4.01,4.01,4.34,4.38,4.47,4.5,4.51,4.52,4.56,4.83,None
-,2005-11-16,4.0,4.0,4.3,4.34,4.42,4.43,4.43,4.45,4.49,4.77,None
-,2005-11-17,3.98,4.01,4.3,4.32,4.37,4.39,4.39,4.42,4.46,4.75,None
-,2005-11-18,3.95,4.01,4.31,4.34,4.4,4.41,4.43,4.45,4.5,4.79,None
-,2005-11-21,3.93,4.0,4.3,4.33,4.39,4.39,4.39,4.42,4.46,4.76,None
-,2005-11-22,3.94,3.93,4.23,4.26,4.32,4.33,4.34,4.37,4.43,4.76,None
-,2005-11-23,3.94,3.95,4.29,4.31,4.36,4.36,4.38,4.41,4.47,4.8,None
-,2005-11-25,3.91,3.95,4.27,4.29,4.33,4.33,4.34,4.37,4.43,4.76,None
-,2005-11-28,3.94,3.98,4.31,4.32,4.33,4.32,4.32,4.35,4.41,4.71,None
-,2005-11-29,3.99,3.98,4.32,4.35,4.4,4.4,4.4,4.42,4.48,4.78,None
-,2005-11-30,4.0,3.95,4.31,4.34,4.42,4.41,4.42,4.45,4.49,4.81,None
-,2005-12-01,3.99,3.97,4.32,4.36,4.45,4.44,4.45,4.47,4.52,4.83,None
-,2005-12-02,4.0,3.99,4.31,4.35,4.43,4.43,4.45,4.48,4.52,4.81,None
-,2005-12-05,4.01,4.04,4.35,4.39,4.47,4.48,4.5,4.53,4.57,4.85,None
-,2005-12-06,3.84,4.04,4.33,4.36,4.42,4.41,4.42,4.44,4.49,4.79,None
-,2005-12-07,3.84,4.03,4.32,4.35,4.42,4.42,4.43,4.46,4.52,4.8,None
-,2005-12-08,3.67,3.94,4.27,4.3,4.37,4.36,4.36,4.39,4.47,4.75,None
-,2005-12-09,3.62,3.94,4.27,4.33,4.43,4.43,4.44,4.47,4.54,4.83,None
-,2005-12-12,3.59,3.9,4.34,4.38,4.45,4.45,4.46,4.49,4.56,4.82,None
-,2005-12-13,3.61,3.91,4.34,4.37,4.43,4.43,4.44,4.47,4.54,4.81,None
-,2005-12-14,3.61,3.89,4.3,4.32,4.37,4.36,4.36,4.38,4.45,4.73,None
-,2005-12-15,3.6,3.93,4.31,4.33,4.37,4.37,4.38,4.41,4.47,4.75,None
-,2005-12-16,3.56,3.93,4.3,4.32,4.37,4.35,4.36,4.39,4.45,4.72,None
-,2005-12-19,3.56,3.96,4.37,4.38,4.38,4.37,4.37,4.39,4.45,4.72,None
-,2005-12-20,3.55,3.95,4.37,4.39,4.42,4.41,4.4,4.41,4.47,4.74,None
-,2005-12-21,3.56,3.98,4.35,4.38,4.43,4.43,4.42,4.44,4.49,4.75,None
-,2005-12-22,3.55,3.98,4.32,4.35,4.4,4.38,4.38,4.39,4.44,4.69,None
-,2005-12-23,3.48,3.99,4.32,4.33,4.37,4.34,4.32,4.33,4.38,4.63,None
-,2005-12-27,3.51,3.98,4.35,4.35,4.35,4.31,4.3,4.31,4.34,4.58,None
-,2005-12-28,3.57,3.95,4.33,4.34,4.37,4.34,4.32,4.34,4.38,4.62,None
-,2005-12-29,3.67,4.01,4.34,4.35,4.38,4.35,4.33,4.34,4.37,4.6,None
-,2005-12-30,4.01,4.08,4.37,4.38,4.41,4.37,4.35,4.36,4.39,4.61,None
-,2006-01-03,4.05,4.16,4.4,4.38,4.34,4.3,4.3,4.32,4.37,4.62,None
-,2006-01-04,4.03,4.19,4.37,4.35,4.31,4.28,4.28,4.31,4.36,4.6,None
-,2006-01-05,4.05,4.2,4.37,4.36,4.32,4.29,4.29,4.31,4.36,4.61,None
-,2006-01-06,4.06,4.22,4.39,4.38,4.36,4.32,4.32,4.33,4.38,4.63,None
-,2006-01-09,4.09,4.23,4.4,4.39,4.36,4.32,4.32,4.34,4.38,4.63,None
-,2006-01-10,4.15,4.29,4.42,4.42,4.41,4.36,4.36,4.38,4.43,4.68,None
-,2006-01-11,4.16,4.3,4.45,4.44,4.44,4.39,4.39,4.41,4.46,4.7,None
-,2006-01-12,4.16,4.32,4.43,4.42,4.39,4.35,4.35,4.37,4.42,4.66,None
-,2006-01-13,4.13,4.33,4.43,4.4,4.34,4.29,4.28,4.3,4.36,4.59,None
-,2006-01-17,4.11,4.38,4.47,4.42,4.33,4.28,4.27,4.29,4.34,4.57,None
-,2006-01-18,4.04,4.35,4.46,4.42,4.33,4.29,4.28,4.3,4.34,4.58,None
-,2006-01-19,3.98,4.35,4.47,4.43,4.37,4.32,4.31,4.33,4.38,4.61,None
-,2006-01-20,3.95,4.35,4.48,4.44,4.37,4.32,4.31,4.32,4.37,4.59,None
-,2006-01-23,3.98,4.38,4.5,4.45,4.35,4.31,4.3,4.31,4.36,4.59,None
-,2006-01-24,4.24,4.4,4.51,4.46,4.37,4.33,4.32,4.34,4.4,4.63,None
-,2006-01-25,4.22,4.42,4.54,4.51,4.46,4.41,4.41,4.43,4.49,4.72,None
-,2006-01-26,4.17,4.45,4.54,4.52,4.49,4.45,4.44,4.46,4.53,4.76,None
-,2006-01-27,4.19,4.45,4.55,4.54,4.51,4.46,4.45,4.47,4.52,4.75,None
-,2006-01-30,4.18,4.48,4.62,4.59,4.52,4.47,4.46,4.49,4.54,4.77,None
-,2006-01-31,4.37,4.47,4.59,4.58,4.54,4.49,4.47,4.49,4.53,4.74,None
-,2006-02-01,4.33,4.47,4.6,4.6,4.59,4.54,4.51,4.52,4.57,4.77,None
-,2006-02-02,4.32,4.48,4.62,4.61,4.59,4.54,4.51,4.53,4.57,4.76,None
-,2006-02-03,4.31,4.48,4.63,4.62,4.59,4.54,4.5,4.51,4.54,4.7,None
-,2006-02-06,4.32,4.48,4.68,4.66,4.62,4.57,4.51,4.52,4.55,4.69,None
-,2006-02-07,4.33,4.49,4.67,4.65,4.61,4.57,4.52,4.54,4.57,4.73,None
-,2006-02-08,4.34,4.5,4.67,4.66,4.64,4.61,4.55,4.55,4.56,4.75,None
-,2006-02-09,4.32,4.52,4.67,4.66,4.66,4.62,4.55,4.55,4.54,4.72,4.51
-,2006-02-10,4.36,4.53,4.7,4.7,4.69,4.67,4.59,4.59,4.59,4.76,4.55
-,2006-02-13,4.38,4.55,4.71,4.7,4.68,4.66,4.58,4.58,4.58,4.76,4.56
-,2006-02-14,4.42,4.55,4.72,4.71,4.69,4.68,4.61,4.61,4.62,4.8,4.6
-,2006-02-15,4.39,4.55,4.7,4.7,4.71,4.68,4.6,4.6,4.61,4.78,4.58
-,2006-02-16,4.38,4.55,4.69,4.69,4.69,4.67,4.59,4.59,4.59,4.77,4.57
-,2006-02-17,4.39,4.54,4.69,4.68,4.66,4.64,4.55,4.54,4.54,4.71,4.51
-,2006-02-21,4.42,4.56,4.73,4.73,4.71,4.68,4.59,4.58,4.57,4.72,4.53
-,2006-02-22,4.44,4.57,4.7,4.69,4.68,4.66,4.57,4.55,4.53,4.68,4.48
-,2006-02-23,4.44,4.59,4.73,4.73,4.72,4.7,4.63,4.58,4.56,4.7,4.51
-,2006-02-24,4.45,4.6,4.73,4.73,4.74,4.7,4.64,4.6,4.58,4.71,4.52
-,2006-02-27,4.48,4.62,4.76,4.76,4.74,4.71,4.66,4.61,4.59,4.74,4.55
-,2006-02-28,4.47,4.62,4.74,4.73,4.69,4.67,4.61,4.57,4.55,4.7,4.51
-,2006-03-01,4.45,4.6,4.75,4.74,4.71,4.68,4.63,4.6,4.59,4.74,4.56
-,2006-03-02,4.45,4.62,4.75,4.74,4.72,4.72,4.68,4.66,4.64,4.8,4.62
-,2006-03-03,4.45,4.62,4.75,4.75,4.76,4.75,4.71,4.69,4.68,4.84,4.66
-,2006-03-06,4.44,4.6,4.77,4.77,4.77,4.77,4.76,4.74,4.74,4.91,4.72
-,2006-03-07,4.47,4.6,4.77,4.77,4.77,4.79,4.76,4.75,4.74,4.91,4.72
-,2006-03-08,4.45,4.58,4.77,4.76,4.72,4.77,4.75,4.74,4.73,4.91,4.72
-,2006-03-09,4.44,4.6,4.77,4.76,4.72,4.77,4.75,4.74,4.74,4.91,4.72
-,2006-03-10,4.46,4.62,4.78,4.77,4.74,4.8,4.77,4.76,4.76,4.93,4.74
-,2006-03-13,4.45,4.61,4.83,4.8,4.74,4.81,4.78,4.78,4.77,4.95,4.77
-,2006-03-14,4.49,4.59,4.8,4.75,4.66,4.72,4.68,4.69,4.71,4.89,4.71
-,2006-03-15,4.5,4.63,4.81,4.77,4.69,4.72,4.69,4.7,4.73,4.93,4.75
-,2006-03-16,4.49,4.62,4.77,4.72,4.62,4.62,4.6,4.61,4.65,4.86,4.7
-,2006-03-17,4.5,4.64,4.78,4.74,4.65,4.64,4.62,4.63,4.68,4.89,4.72
-,2006-03-20,4.56,4.66,4.79,4.74,4.65,4.62,4.61,4.62,4.66,4.87,4.7
-,2006-03-21,4.67,4.69,4.82,4.79,4.72,4.71,4.68,4.69,4.71,4.91,4.74
-,2006-03-22,4.67,4.69,4.81,4.78,4.74,4.72,4.69,4.7,4.7,4.91,4.73
-,2006-03-23,4.66,4.67,4.81,4.8,4.77,4.74,4.73,4.73,4.73,4.93,4.75
-,2006-03-24,4.66,4.65,4.78,4.76,4.72,4.67,4.66,4.66,4.67,4.87,4.7
-,2006-03-27,4.66,4.63,4.8,4.77,4.72,4.69,4.69,4.69,4.7,4.91,4.73
-,2006-03-28,4.71,4.65,4.83,4.82,4.81,4.79,4.79,4.79,4.79,4.98,4.8
-,2006-03-29,4.69,4.63,4.83,4.83,4.82,4.81,4.79,4.79,4.81,5.02,4.84
-,2006-03-30,4.67,4.61,4.84,4.84,4.84,4.84,4.83,4.83,4.86,5.07,4.89
-,2006-03-31,4.65,4.63,4.81,4.82,4.82,4.83,4.82,4.83,4.86,5.07,4.9
-,2006-04-03,4.66,4.67,4.86,4.86,4.86,4.85,4.85,4.86,4.88,5.08,4.9
-,2006-04-04,4.64,4.68,4.85,4.85,4.84,4.83,4.82,4.84,4.87,5.09,4.91
-,2006-04-05,4.62,4.67,4.83,4.82,4.81,4.79,4.79,4.8,4.84,5.07,4.9
-,2006-04-06,4.65,4.68,4.85,4.85,4.84,4.83,4.84,4.86,4.9,5.13,4.96
-,2006-04-07,4.64,4.69,4.85,4.86,4.89,4.89,4.89,4.92,4.97,5.2,5.04
-,2006-04-10,4.64,4.69,4.89,4.89,4.89,4.89,4.89,4.92,4.97,5.21,5.04
-,2006-04-11,4.63,4.7,4.88,4.88,4.88,4.86,4.86,4.88,4.93,5.17,5.0
-,2006-04-12,4.62,4.7,4.91,4.91,4.91,4.9,4.91,4.93,4.98,5.22,5.05
-,2006-04-13,4.54,4.7,4.94,4.95,4.96,4.96,4.97,5.0,5.05,5.28,5.11
-,2006-04-17,4.55,4.72,4.93,4.93,4.91,4.91,4.93,4.96,5.01,5.25,5.08
-,2006-04-18,4.54,4.72,4.9,4.88,4.84,4.86,4.87,4.92,4.99,5.23,5.07
-,2006-04-19,4.54,4.73,4.9,4.89,4.86,4.87,4.91,4.96,5.04,5.29,5.13
-,2006-04-20,4.55,4.73,4.9,4.9,4.89,4.89,4.92,4.97,5.04,5.29,5.14
-,2006-04-21,4.58,4.75,4.9,4.9,4.9,4.89,4.92,4.95,5.01,5.25,5.1
-,2006-04-24,4.58,4.75,4.93,4.92,4.89,4.88,4.9,4.94,4.99,5.22,5.07
-,2006-04-25,4.63,4.79,4.96,4.95,4.95,4.94,4.98,5.02,5.07,5.31,5.16
-,2006-04-26,4.65,4.79,4.98,4.98,4.99,4.99,5.02,5.06,5.12,5.34,5.18
-,2006-04-27,4.64,4.78,4.93,4.93,4.91,4.92,4.95,5.0,5.09,5.32,5.18
-,2006-04-28,4.6,4.77,4.91,4.9,4.87,4.87,4.92,4.98,5.07,5.31,5.17
-,2006-05-01,4.61,4.82,4.98,4.97,4.94,4.95,4.99,5.04,5.14,5.38,5.23
-,2006-05-02,4.66,4.81,4.98,4.96,4.92,4.94,4.98,5.03,5.12,5.35,5.2
-,2006-05-03,4.65,4.82,5.0,4.98,4.94,4.96,5.01,5.06,5.15,5.38,5.24
-,2006-05-04,4.61,4.8,5.01,5.0,4.97,4.99,5.03,5.08,5.16,5.38,5.23
-,2006-05-05,4.61,4.83,5.0,4.98,4.94,4.96,4.99,5.03,5.12,5.35,5.2
-,2006-05-08,4.64,4.87,5.03,5.01,4.97,4.99,5.01,5.05,5.12,5.34,5.19
-,2006-05-09,4.72,4.88,5.03,5.01,4.97,4.98,5.01,5.05,5.13,5.35,5.2
-,2006-05-10,4.69,4.88,5.03,5.02,5.01,5.0,5.03,5.06,5.13,5.34,5.19
-,2006-05-11,4.64,4.82,4.99,4.99,4.99,5.01,5.04,5.07,5.14,5.38,5.23
-,2006-05-12,4.64,4.85,5.0,5.0,5.01,5.03,5.08,5.12,5.19,5.44,5.29
-,2006-05-15,4.68,4.86,5.02,5.01,4.99,5.01,5.04,5.08,5.15,5.41,5.26
-,2006-05-16,4.76,4.83,4.99,4.98,4.96,4.97,4.99,5.03,5.1,5.36,5.22
-,2006-05-17,4.75,4.83,5.0,4.99,4.97,5.0,5.03,5.08,5.16,5.42,5.28
-,2006-05-18,4.75,4.83,4.98,4.96,4.94,4.94,4.96,5.0,5.08,5.32,5.18
-,2006-05-19,4.75,4.82,5.0,4.98,4.96,4.95,4.96,4.98,5.05,5.28,5.14
-,2006-05-22,4.74,4.83,5.02,4.99,4.94,4.94,4.94,4.96,5.04,5.28,5.13
-,2006-05-23,4.75,4.84,5.02,5.0,4.97,4.97,4.98,5.0,5.07,5.3,5.16
-,2006-05-24,4.74,4.82,4.99,4.97,4.94,4.92,4.93,4.96,5.03,5.27,5.13
-,2006-05-25,4.74,4.82,5.01,5.0,4.98,4.97,4.97,4.99,5.07,5.31,5.17
-,2006-05-26,4.75,4.84,5.02,5.0,4.96,4.94,4.95,4.97,5.06,5.3,5.16
-,2006-05-30,4.76,4.84,5.04,5.02,4.99,4.99,4.99,5.01,5.09,5.33,5.19
-,2006-05-31,4.75,4.86,5.08,5.07,5.04,5.03,5.04,5.06,5.12,5.35,5.21
-,2006-06-01,4.75,4.83,5.06,5.05,5.04,5.02,5.03,5.05,5.11,5.34,5.2
-,2006-06-02,4.75,4.81,5.01,4.98,4.92,4.91,4.9,4.92,5.0,5.24,5.1
-,2006-06-05,4.77,4.85,5.04,5.02,4.99,4.95,4.95,4.97,5.02,5.24,5.1
-,2006-06-06,4.8,4.86,5.05,5.03,4.99,4.96,4.95,4.96,5.01,5.22,5.08
-,2006-06-07,4.8,4.86,5.06,5.05,5.02,4.99,4.97,4.98,5.02,5.23,5.09
-,2006-06-08,4.78,4.87,5.06,5.04,5.01,4.97,4.95,4.96,5.0,5.2,5.06
-,2006-06-09,4.78,4.88,5.07,5.05,5.01,4.96,4.95,4.95,4.98,5.17,5.03
-,2006-06-12,4.78,4.93,5.13,5.09,5.02,4.97,4.95,4.96,4.99,5.17,5.03
-,2006-06-13,4.72,4.89,5.13,5.09,5.02,4.96,4.93,4.94,4.97,5.15,5.01
-,2006-06-14,4.68,4.9,5.17,5.15,5.11,5.06,5.03,5.04,5.05,5.23,5.09
-,2006-06-15,4.6,4.85,5.16,5.15,5.14,5.1,5.08,5.08,5.1,5.27,5.13
-,2006-06-16,4.63,4.88,5.19,5.18,5.16,5.13,5.1,5.1,5.13,5.31,5.17
-,2006-06-19,4.67,4.93,5.25,5.23,5.19,5.15,5.12,5.13,5.14,5.32,5.18
-,2006-06-20,4.7,4.92,5.24,5.23,5.19,5.16,5.13,5.14,5.15,5.33,5.19
-,2006-06-21,4.66,4.92,5.23,5.22,5.2,5.16,5.14,5.14,5.16,5.32,5.19
-,2006-06-22,4.55,4.92,5.24,5.24,5.23,5.21,5.18,5.18,5.2,5.37,5.23
-,2006-06-23,4.61,4.98,5.27,5.27,5.27,5.23,5.21,5.21,5.23,5.4,5.26
-,2006-06-26,4.73,5.03,5.32,5.3,5.27,5.25,5.22,5.23,5.25,5.42,5.28
-,2006-06-27,4.86,5.05,5.31,5.28,5.24,5.22,5.19,5.2,5.21,5.38,5.24
-,2006-06-28,4.79,5.01,5.31,5.3,5.29,5.26,5.23,5.23,5.25,5.42,5.28
-,2006-06-29,4.68,5.01,5.26,5.25,5.21,5.19,5.17,5.18,5.22,5.39,5.26
-,2006-06-30,4.54,5.01,5.24,5.21,5.16,5.13,5.1,5.11,5.15,5.31,5.19
-,2006-07-03,4.69,5.08,5.31,5.26,5.17,5.14,5.11,5.12,5.15,5.33,5.2
-,2006-07-05,4.81,5.01,5.32,5.29,5.24,5.21,5.19,5.19,5.23,5.39,5.27
-,2006-07-06,4.8,5.0,5.31,5.28,5.22,5.17,5.15,5.16,5.19,5.35,5.23
-,2006-07-07,4.83,5.02,5.28,5.25,5.17,5.13,5.1,5.1,5.14,5.29,5.18
-,2006-07-10,4.86,5.06,5.32,5.27,5.17,5.13,5.1,5.1,5.13,5.29,5.17
-,2006-07-11,4.9,5.05,5.3,5.26,5.17,5.11,5.07,5.08,5.1,5.26,5.14
-,2006-07-12,4.92,5.06,5.3,5.26,5.17,5.12,5.08,5.09,5.1,5.26,5.14
-,2006-07-13,4.88,5.05,5.27,5.22,5.12,5.07,5.04,5.05,5.08,5.23,5.12
-,2006-07-14,4.87,5.06,5.26,5.2,5.08,5.05,5.02,5.03,5.07,5.23,5.11
-,2006-07-17,4.91,5.11,5.3,5.24,5.12,5.07,5.04,5.04,5.07,5.23,5.1
-,2006-07-18,4.94,5.13,5.33,5.28,5.19,5.13,5.1,5.1,5.13,5.29,5.16
-,2006-07-19,4.91,5.11,5.28,5.22,5.12,5.06,5.02,5.02,5.06,5.22,5.1
-,2006-07-20,4.87,5.08,5.24,5.18,5.06,5.01,4.98,4.99,5.03,5.2,5.08
-,2006-07-21,4.88,5.1,5.25,5.19,5.08,5.02,4.99,5.0,5.05,5.21,5.1
-,2006-07-24,4.91,5.1,5.27,5.21,5.1,5.03,4.99,5.0,5.05,5.22,5.11
-,2006-07-25,5.01,5.13,5.25,5.21,5.11,5.05,5.02,5.03,5.07,5.24,5.13
-,2006-07-26,5.0,5.11,5.21,5.16,5.06,5.02,4.99,5.0,5.04,5.22,5.1
-,2006-07-27,5.02,5.1,5.2,5.16,5.07,5.01,4.98,5.0,5.07,5.22,5.11
-,2006-07-28,4.98,5.07,5.15,5.1,4.98,4.94,4.92,4.94,5.0,5.17,5.07
-,2006-07-31,5.02,5.1,5.18,5.11,4.97,4.93,4.91,4.93,4.99,5.17,5.07
-,2006-08-01,5.2,5.12,5.18,5.11,4.97,4.91,4.9,4.92,4.99,5.17,5.07
-,2006-08-02,5.2,5.1,5.18,5.11,4.97,4.9,4.88,4.9,4.96,5.14,5.05
-,2006-08-03,5.18,5.11,5.19,5.12,4.98,4.92,4.9,4.91,4.96,5.13,5.04
-,2006-08-04,5.15,5.09,5.15,5.07,4.91,4.86,4.84,4.85,4.91,5.09,5.0
-,2006-08-07,5.18,5.12,5.2,5.12,4.96,4.89,4.86,4.87,4.93,5.09,5.0
-,2006-08-08,5.19,5.1,5.16,5.08,4.91,4.86,4.85,4.86,4.93,5.11,5.02
-,2006-08-09,5.14,5.07,5.15,5.07,4.91,4.88,4.86,4.87,4.92,5.13,5.05
-,2006-08-10,5.12,5.05,5.16,5.08,4.93,4.89,4.86,4.87,4.93,5.15,5.06
-,2006-08-11,5.12,5.07,5.2,5.12,4.96,4.93,4.91,4.92,4.97,5.18,5.09
-,2006-08-14,5.15,5.12,5.24,5.17,5.01,4.98,4.95,4.96,5.0,5.21,5.12
-,2006-08-15,5.18,5.1,5.19,5.11,4.94,4.91,4.88,4.89,4.93,5.13,5.05
-,2006-08-16,5.16,5.07,5.16,5.06,4.87,4.83,4.81,4.82,4.87,5.08,5.0
-,2006-08-17,5.15,5.09,5.18,5.08,4.89,4.84,4.82,4.82,4.87,5.08,5.0
-,2006-08-18,5.13,5.1,5.19,5.08,4.87,4.82,4.78,4.78,4.84,5.05,4.97
-,2006-08-21,5.15,5.11,5.18,5.07,4.85,4.79,4.77,4.77,4.82,5.04,4.96
-,2006-08-22,5.17,5.1,5.17,5.07,4.87,4.79,4.77,4.77,4.82,5.03,4.95
-,2006-08-23,5.17,5.09,5.17,5.07,4.87,4.81,4.77,4.78,4.82,5.03,4.95
-,2006-08-24,5.16,5.09,5.17,5.07,4.88,4.8,4.78,4.78,4.81,5.02,4.94
-,2006-08-25,5.17,5.11,5.16,5.06,4.86,4.79,4.76,4.76,4.79,5.01,4.93
-,2006-08-28,5.17,5.1,5.18,5.08,4.88,4.8,4.77,4.77,4.8,5.01,4.94
-,2006-08-29,5.19,5.07,5.16,5.06,4.87,4.79,4.77,4.77,4.79,5.0,4.93
-,2006-08-30,5.16,5.05,5.14,5.03,4.83,4.76,4.72,4.72,4.76,4.98,4.91
-,2006-08-31,5.12,5.05,5.11,5.01,4.79,4.71,4.7,4.7,4.74,4.95,4.88
-,2006-09-01,5.07,5.02,5.1,4.99,4.77,4.7,4.68,4.69,4.73,4.95,4.87
-,2006-09-05,4.96,5.0,5.13,5.02,4.8,4.73,4.73,4.74,4.78,5.01,4.93
-,2006-09-06,4.89,4.97,5.12,5.02,4.82,4.76,4.75,4.76,4.8,5.02,4.95
-,2006-09-07,4.89,4.97,5.13,5.02,4.82,4.76,4.74,4.75,4.8,5.01,4.94
-,2006-09-08,4.83,4.93,5.1,5.0,4.8,4.73,4.71,4.72,4.78,4.99,4.92
-,2006-09-11,4.85,4.93,5.13,5.03,4.83,4.77,4.74,4.75,4.8,5.02,4.95
-,2006-09-12,4.75,4.9,5.12,5.02,4.82,4.74,4.71,4.73,4.78,4.98,4.91
-,2006-09-13,4.78,4.91,5.08,4.99,4.8,4.72,4.7,4.72,4.77,4.97,4.9
-,2006-09-14,4.81,4.95,5.12,5.02,4.83,4.77,4.74,4.75,4.79,4.99,4.92
-,2006-09-15,4.77,4.96,5.11,5.03,4.87,4.79,4.76,4.77,4.8,5.0,4.92
-,2006-09-18,4.76,4.94,5.12,5.04,4.88,4.8,4.77,4.78,4.81,5.01,4.93
-,2006-09-19,4.72,4.94,5.09,4.99,4.79,4.72,4.69,4.69,4.74,4.94,4.86
-,2006-09-20,4.73,4.93,5.09,5.0,4.81,4.73,4.7,4.7,4.73,4.93,4.85
-,2006-09-21,4.72,4.92,5.04,4.93,4.71,4.61,4.6,4.61,4.65,4.86,4.78
-,2006-09-22,4.73,4.93,5.02,4.9,4.67,4.58,4.55,4.56,4.6,4.82,4.74
-,2006-09-25,4.72,4.88,5.01,4.88,4.63,4.54,4.51,4.51,4.56,4.77,4.7
-,2006-09-26,4.64,4.88,5.02,4.91,4.68,4.59,4.55,4.55,4.59,4.79,4.71
-,2006-09-27,4.6,4.88,5.01,4.89,4.66,4.59,4.56,4.56,4.6,4.81,4.73
-,2006-09-28,4.53,4.87,5.01,4.9,4.68,4.6,4.57,4.58,4.63,4.84,4.76
-,2006-09-29,4.6,4.89,5.02,4.91,4.71,4.62,4.59,4.6,4.64,4.84,4.77
-,2006-10-02,4.67,4.88,5.02,4.9,4.66,4.59,4.56,4.57,4.62,4.83,4.76
-,2006-10-03,4.71,4.9,5.02,4.9,4.67,4.59,4.56,4.57,4.62,4.83,4.76
-,2006-10-04,4.78,4.93,5.0,4.87,4.6,4.53,4.5,4.52,4.57,4.79,4.72
-,2006-10-05,4.81,4.94,5.03,4.9,4.65,4.58,4.55,4.56,4.61,4.84,4.76
-,2006-10-06,4.76,4.95,5.05,4.94,4.74,4.67,4.64,4.65,4.7,4.92,4.84
-,2006-10-10,4.81,5.0,5.1,5.0,4.82,4.75,4.71,4.71,4.75,4.96,4.88
-,2006-10-11,4.9,5.02,5.11,5.02,4.85,4.78,4.75,4.75,4.78,4.99,4.91
-,2006-10-12,4.93,5.06,5.13,5.03,4.85,4.78,4.74,4.74,4.79,4.99,4.91
-,2006-10-13,4.93,5.05,5.13,5.05,4.87,4.79,4.77,4.77,4.81,5.02,4.94
-,2006-10-16,5.01,5.09,5.15,5.05,4.85,4.78,4.76,4.76,4.79,5.0,4.92
-,2006-10-17,5.06,5.09,5.15,5.04,4.83,4.77,4.73,4.74,4.78,4.99,4.91
-,2006-10-18,5.05,5.09,5.14,5.04,4.85,4.77,4.74,4.73,4.77,4.97,4.89
-,2006-10-19,5.02,5.1,5.16,5.05,4.85,4.79,4.75,4.75,4.79,4.99,4.91
-,2006-10-20,5.0,5.09,5.14,5.05,4.87,4.8,4.76,4.76,4.79,4.99,4.91
-,2006-10-23,5.05,5.12,5.18,5.09,4.9,4.84,4.8,4.8,4.83,5.03,4.95
-,2006-10-24,5.15,5.13,5.19,5.1,4.91,4.84,4.81,4.81,4.83,5.03,4.95
-,2006-10-25,5.14,5.12,5.18,5.08,4.88,4.79,4.75,4.75,4.78,4.98,4.89
-,2006-10-26,5.16,5.12,5.18,5.06,4.81,4.74,4.69,4.7,4.73,4.93,4.84
-,2006-10-27,5.14,5.11,5.15,5.02,4.76,4.68,4.64,4.64,4.68,4.88,4.8
-,2006-10-30,5.15,5.1,5.16,5.03,4.78,4.68,4.64,4.64,4.68,4.88,4.78
-,2006-10-31,5.18,5.08,5.13,4.99,4.71,4.62,4.57,4.57,4.61,4.81,4.72
-,2006-11-01,5.19,5.07,5.1,4.95,4.66,4.56,4.52,4.52,4.57,4.77,4.68
-,2006-11-02,5.18,5.07,5.13,4.97,4.67,4.6,4.55,4.56,4.6,4.8,4.72
-,2006-11-03,5.18,5.09,5.18,5.06,4.82,4.74,4.7,4.7,4.72,4.9,4.81
-,2006-11-06,5.17,5.09,5.18,5.06,4.82,4.74,4.69,4.69,4.71,4.89,4.79
-,2006-11-07,5.2,5.08,5.16,5.03,4.77,4.69,4.63,4.63,4.66,4.85,4.76
-,2006-11-08,5.2,5.1,5.16,5.02,4.75,4.65,4.61,4.61,4.64,4.82,4.73
-,2006-11-09,5.19,5.09,5.16,5.02,4.75,4.66,4.6,4.6,4.62,4.82,4.73
-,2006-11-10,5.2,5.1,5.16,5.01,4.73,4.63,4.57,4.57,4.59,4.78,4.69
-,2006-11-13,5.17,5.09,5.16,5.03,4.76,4.66,4.6,4.6,4.61,4.8,4.71
-,2006-11-14,5.24,5.09,5.15,5.01,4.74,4.63,4.57,4.57,4.57,4.76,4.66
-,2006-11-15,5.24,5.09,5.16,5.04,4.8,4.69,4.62,4.62,4.61,4.8,4.69
-,2006-11-16,5.22,5.09,5.17,5.06,4.85,4.75,4.67,4.66,4.66,4.84,4.74
-,2006-11-17,5.19,5.09,5.14,5.02,4.76,4.67,4.6,4.6,4.61,4.79,4.69
-,2006-11-20,5.19,5.08,5.15,5.02,4.76,4.66,4.6,4.59,4.6,4.78,4.68
-,2006-11-21,5.26,5.07,5.15,5.02,4.75,4.65,4.58,4.58,4.58,4.76,4.66
-,2006-11-22,5.25,5.05,5.15,5.01,4.74,4.63,4.57,4.57,4.57,4.76,4.65
-,2006-11-24,5.21,5.04,5.13,5.0,4.73,4.62,4.55,4.55,4.55,4.74,4.63
-,2006-11-27,5.22,5.05,5.14,5.0,4.71,4.6,4.54,4.54,4.54,4.73,4.62
-,2006-11-28,5.27,5.04,5.13,4.98,4.67,4.57,4.5,4.5,4.51,4.7,4.59
-,2006-11-29,5.26,5.04,5.13,4.98,4.69,4.58,4.51,4.51,4.52,4.72,4.61
-,2006-11-30,5.22,5.03,5.1,4.94,4.62,4.52,4.45,4.45,4.46,4.66,4.56
-,2006-12-01,5.21,5.03,5.05,4.87,4.52,4.43,4.39,4.39,4.43,4.64,4.54
-,2006-12-04,5.13,5.01,5.04,4.87,4.52,4.43,4.39,4.39,4.43,4.65,4.55
-,2006-12-05,4.88,4.99,5.03,4.86,4.52,4.43,4.39,4.4,4.45,4.67,4.57
-,2006-12-06,4.91,4.99,5.05,4.9,4.59,4.48,4.44,4.44,4.48,4.69,4.6
-,2006-12-07,4.92,4.98,5.05,4.9,4.58,4.48,4.45,4.45,4.49,4.7,4.6
-,2006-12-08,4.89,4.97,5.08,4.95,4.68,4.57,4.53,4.54,4.56,4.76,4.66
-,2006-12-11,4.85,4.93,5.07,4.94,4.67,4.55,4.5,4.5,4.52,4.73,4.63
-,2006-12-12,4.87,4.93,5.06,4.91,4.61,4.49,4.45,4.45,4.49,4.7,4.6
-,2006-12-13,4.86,4.94,5.07,4.95,4.7,4.6,4.54,4.55,4.58,4.78,4.69
-,2006-12-14,4.87,4.96,5.08,4.97,4.73,4.63,4.58,4.58,4.6,4.81,4.72
-,2006-12-15,4.78,4.91,5.07,4.96,4.73,4.62,4.57,4.57,4.6,4.81,4.72
-,2006-12-18,4.8,4.96,5.09,4.97,4.71,4.62,4.57,4.57,4.6,4.81,4.72
-,2006-12-19,4.84,4.96,5.08,4.96,4.71,4.62,4.57,4.57,4.6,4.82,4.73
-,2006-12-20,4.87,4.96,5.08,4.96,4.71,4.62,4.57,4.57,4.6,4.82,4.73
-,2006-12-21,4.84,4.97,5.06,4.93,4.66,4.57,4.52,4.52,4.55,4.78,4.7
-,2006-12-22,4.82,4.99,5.08,4.96,4.71,4.64,4.59,4.6,4.63,4.85,4.76
-,2006-12-26,4.81,4.99,5.11,4.97,4.71,4.63,4.58,4.59,4.61,4.82,4.73
-,2006-12-27,4.75,4.97,5.1,4.99,4.77,4.69,4.64,4.64,4.66,4.87,4.78
-,2006-12-28,4.74,5.0,5.1,5.01,4.82,4.72,4.69,4.69,4.7,4.9,4.81
-,2006-12-29,4.75,5.02,5.09,5.0,4.82,4.74,4.7,4.7,4.71,4.91,4.81
-,2007-01-02,4.79,5.07,5.11,5.0,4.8,4.71,4.68,4.68,4.68,4.87,4.79
-,2007-01-03,4.84,5.05,5.09,4.98,4.76,4.69,4.66,4.66,4.67,4.85,4.77
-,2007-01-04,4.8,5.04,5.07,4.95,4.71,4.63,4.61,4.61,4.62,4.81,4.72
-,2007-01-05,4.81,5.05,5.09,4.98,4.76,4.68,4.65,4.65,4.65,4.84,4.74
-,2007-01-08,4.87,5.08,5.13,5.01,4.78,4.7,4.66,4.66,4.66,4.84,4.74
-,2007-01-09,4.9,5.08,5.13,5.02,4.79,4.7,4.65,4.65,4.66,4.83,4.74
-,2007-01-10,4.94,5.09,5.13,5.02,4.81,4.72,4.68,4.68,4.69,4.87,4.77
-,2007-01-11,4.99,5.11,5.15,5.05,4.86,4.78,4.73,4.73,4.74,4.92,4.82
-,2007-01-12,4.98,5.09,5.15,5.06,4.88,4.81,4.76,4.76,4.77,4.96,4.86
-,2007-01-16,5.0,5.11,5.16,5.06,4.86,4.79,4.74,4.74,4.75,4.94,4.85
-,2007-01-17,5.01,5.12,5.16,5.08,4.91,4.83,4.78,4.78,4.79,4.98,4.88
-,2007-01-18,4.97,5.12,5.16,5.07,4.89,4.8,4.75,4.75,4.75,4.94,4.85
-,2007-01-19,4.96,5.14,5.17,5.09,4.93,4.83,4.78,4.78,4.78,4.96,4.87
-,2007-01-22,4.98,5.13,5.18,5.09,4.91,4.82,4.77,4.76,4.76,4.94,4.84
-,2007-01-23,5.02,5.14,5.18,5.1,4.94,4.85,4.81,4.81,4.81,5.0,4.9
-,2007-01-24,4.99,5.13,5.17,5.09,4.93,4.85,4.81,4.81,4.81,5.0,4.91
-,2007-01-25,4.97,5.14,5.18,5.11,4.98,4.9,4.85,4.85,4.87,5.06,4.96
-,2007-01-26,4.94,5.13,5.18,5.12,4.99,4.91,4.87,4.87,4.88,5.07,4.98
-,2007-01-29,4.95,5.14,5.19,5.12,4.99,4.93,4.89,4.89,4.9,5.09,4.99
-,2007-01-30,4.99,5.13,5.18,5.11,4.98,4.9,4.86,4.86,4.88,5.07,4.98
-,2007-01-31,5.0,5.12,5.16,5.09,4.94,4.85,4.82,4.82,4.83,5.02,4.93
-,2007-02-01,4.99,5.13,5.16,5.09,4.96,4.88,4.84,4.84,4.84,5.02,4.93
-,2007-02-02,5.01,5.14,5.16,5.08,4.94,4.87,4.82,4.82,4.83,5.02,4.93
-,2007-02-05,5.06,5.15,5.16,5.08,4.92,4.84,4.8,4.8,4.81,5.0,4.91
-,2007-02-06,5.14,5.14,5.16,5.07,4.9,4.8,4.76,4.76,4.77,4.96,4.87
-,2007-02-07,5.15,5.15,5.16,5.06,4.87,4.77,4.74,4.73,4.74,4.94,4.86
-,2007-02-08,5.15,5.16,5.16,5.06,4.87,4.77,4.73,4.73,4.73,4.93,4.81
-,2007-02-09,5.15,5.15,5.17,5.08,4.92,4.82,4.78,4.78,4.79,4.98,4.87
-,2007-02-12,5.16,5.18,5.18,5.1,4.94,4.84,4.8,4.8,4.8,5.0,4.88
-,2007-02-13,5.24,5.17,5.17,5.1,4.95,4.85,4.81,4.81,4.82,5.02,4.9
-,2007-02-14,5.23,5.16,5.16,5.06,4.87,4.77,4.72,4.72,4.74,4.94,4.83
-,2007-02-15,5.23,5.17,5.15,5.04,4.83,4.73,4.68,4.69,4.7,4.91,4.81
-,2007-02-16,5.23,5.17,5.15,5.05,4.83,4.73,4.68,4.68,4.69,4.9,4.79
-,2007-02-20,5.23,5.19,5.16,5.04,4.81,4.71,4.67,4.67,4.68,4.89,4.78
-,2007-02-21,5.27,5.18,5.16,5.05,4.82,4.74,4.68,4.68,4.69,4.9,4.79
-,2007-02-22,5.26,5.19,5.17,5.07,4.87,4.77,4.72,4.72,4.73,4.94,4.83
-,2007-02-23,5.25,5.18,5.17,5.05,4.82,4.71,4.67,4.67,4.68,4.89,4.79
-,2007-02-26,5.23,5.19,5.18,5.05,4.77,4.67,4.62,4.62,4.63,4.84,4.73
-,2007-02-27,5.22,5.14,5.1,4.93,4.59,4.5,4.46,4.46,4.5,4.73,4.62
-,2007-02-28,5.24,5.16,5.12,4.96,4.65,4.55,4.52,4.53,4.56,4.78,4.68
-,2007-03-01,5.25,5.15,5.11,4.95,4.63,4.54,4.5,4.51,4.56,4.78,4.68
-,2007-03-02,5.23,5.12,5.07,4.9,4.56,4.48,4.46,4.47,4.52,4.75,4.65
-,2007-03-05,5.22,5.1,5.08,4.89,4.53,4.47,4.45,4.46,4.51,4.74,4.64
-,2007-03-06,5.24,5.14,5.1,4.92,4.58,4.52,4.48,4.49,4.53,4.76,4.66
-,2007-03-07,5.24,5.12,5.09,4.9,4.54,4.48,4.45,4.46,4.5,4.73,4.64
-,2007-03-08,5.24,5.1,5.08,4.91,4.56,4.49,4.45,4.46,4.51,4.74,4.65
-,2007-03-09,5.22,5.1,5.13,4.98,4.66,4.58,4.55,4.55,4.59,4.81,4.72
-,2007-03-12,5.22,5.09,5.13,4.96,4.62,4.55,4.5,4.51,4.56,4.78,4.69
-,2007-03-13,5.23,5.09,5.1,4.9,4.52,4.45,4.41,4.43,4.5,4.75,4.66
-,2007-03-14,5.24,5.06,5.1,4.91,4.54,4.47,4.44,4.46,4.53,4.78,4.69
-,2007-03-15,5.21,5.05,5.12,4.93,4.57,4.5,4.46,4.47,4.54,4.78,4.69
-,2007-03-16,5.18,5.04,5.13,4.95,4.58,4.51,4.47,4.49,4.55,4.79,4.7
-,2007-03-19,5.17,5.06,5.13,4.96,4.61,4.54,4.5,4.51,4.58,4.81,4.72
-,2007-03-20,5.22,5.06,5.12,4.94,4.6,4.51,4.47,4.49,4.56,4.79,4.71
-,2007-03-21,5.24,5.05,5.08,4.89,4.51,4.44,4.43,4.45,4.53,4.78,4.7
-,2007-03-22,5.23,5.06,5.08,4.91,4.58,4.51,4.49,4.52,4.6,4.86,4.78
-,2007-03-23,5.24,5.08,5.1,4.93,4.6,4.54,4.52,4.54,4.62,4.88,4.8
-,2007-03-26,5.22,5.06,5.09,4.91,4.56,4.5,4.48,4.51,4.6,4.86,4.79
-,2007-03-27,5.2,5.08,5.09,4.91,4.58,4.51,4.5,4.53,4.62,4.89,4.81
-,2007-03-28,5.18,5.06,5.08,4.9,4.53,4.49,4.5,4.53,4.62,4.9,4.83
-,2007-03-29,5.05,5.05,5.06,4.9,4.58,4.52,4.53,4.55,4.64,4.9,4.83
-,2007-03-30,5.07,5.04,5.06,4.9,4.58,4.54,4.54,4.58,4.65,4.92,4.84
-,2007-04-02,5.12,5.04,5.09,4.92,4.6,4.53,4.54,4.57,4.65,4.92,4.84
-,2007-04-03,5.15,5.05,5.09,4.93,4.63,4.57,4.56,4.59,4.67,4.93,4.85
-,2007-04-04,5.16,5.07,5.08,4.92,4.61,4.55,4.55,4.58,4.66,4.92,4.85
-,2007-04-05,5.1,5.04,5.07,4.93,4.63,4.57,4.57,4.6,4.68,4.95,4.87
-,2007-04-06,5.1,5.05,5.1,4.98,4.75,4.68,4.67,4.69,4.76,5.0,4.92
-,2007-04-09,5.08,5.02,5.11,4.98,4.73,4.67,4.66,4.68,4.75,5.0,4.92
-,2007-04-10,5.0,5.03,5.1,4.97,4.71,4.64,4.63,4.65,4.73,4.99,4.91
-,2007-04-11,5.01,5.04,5.1,4.97,4.73,4.66,4.66,4.67,4.74,5.0,4.92
-,2007-04-12,5.0,5.03,5.1,4.97,4.73,4.66,4.66,4.67,4.74,4.99,4.91
-,2007-04-13,4.98,5.02,5.09,4.98,4.76,4.71,4.68,4.7,4.76,5.01,4.93
-,2007-04-16,4.97,5.01,5.09,4.97,4.74,4.68,4.67,4.69,4.74,4.98,4.89
-,2007-04-17,4.94,5.01,5.07,4.93,4.68,4.61,4.61,4.62,4.69,4.93,4.85
-,2007-04-18,4.94,5.0,5.04,4.91,4.64,4.57,4.56,4.58,4.66,4.9,4.81
-,2007-04-19,4.93,4.99,5.04,4.91,4.64,4.58,4.57,4.6,4.68,4.92,4.84
-,2007-04-20,4.93,4.99,5.05,4.91,4.64,4.58,4.57,4.6,4.68,4.93,4.85
-,2007-04-23,4.93,4.98,5.04,4.9,4.62,4.55,4.55,4.57,4.66,4.91,4.83
-,2007-04-24,4.92,4.98,5.03,4.88,4.58,4.52,4.51,4.54,4.63,4.88,4.8
-,2007-04-25,4.94,4.97,5.03,4.9,4.63,4.55,4.55,4.57,4.66,4.91,4.83
-,2007-04-26,4.91,4.96,5.04,4.92,4.67,4.6,4.59,4.61,4.69,4.95,4.87
-,2007-04-27,4.85,4.95,5.03,4.91,4.67,4.61,4.59,4.62,4.71,4.96,4.89
-,2007-04-30,4.8,4.91,5.03,4.89,4.6,4.54,4.51,4.55,4.63,4.88,4.81
-,2007-05-01,4.69,4.9,5.01,4.89,4.63,4.56,4.54,4.57,4.64,4.89,4.81
-,2007-05-02,4.72,4.91,5.02,4.9,4.65,4.57,4.55,4.58,4.65,4.89,4.82
-,2007-05-03,4.74,4.9,5.03,4.93,4.71,4.62,4.59,4.61,4.68,4.91,4.84
-,2007-05-04,4.74,4.9,5.03,4.91,4.68,4.59,4.55,4.58,4.65,4.88,4.8
-,2007-05-07,4.76,4.89,5.03,4.92,4.68,4.58,4.55,4.57,4.64,4.86,4.79
-,2007-05-08,4.76,4.9,5.02,4.91,4.68,4.58,4.54,4.56,4.63,4.87,4.8
-,2007-05-09,4.75,4.88,4.99,4.9,4.73,4.64,4.58,4.6,4.67,4.91,4.83
-,2007-05-10,4.77,4.87,4.95,4.86,4.7,4.6,4.56,4.58,4.65,4.9,4.83
-,2007-05-11,4.75,4.87,4.91,4.85,4.71,4.62,4.58,4.6,4.67,4.92,4.85
-,2007-05-14,4.72,4.85,4.94,4.87,4.73,4.65,4.61,4.63,4.69,4.93,4.86
-,2007-05-15,4.79,4.83,4.91,4.85,4.75,4.66,4.63,4.65,4.71,4.95,4.88
-,2007-05-16,4.73,4.75,4.86,4.82,4.73,4.66,4.62,4.64,4.71,4.95,4.88
-,2007-05-17,4.8,4.81,4.9,4.86,4.78,4.71,4.68,4.69,4.76,4.99,4.91
-,2007-05-18,4.78,4.84,4.98,4.92,4.82,4.75,4.74,4.75,4.81,5.03,4.96
-,2007-05-21,4.85,4.88,5.01,4.95,4.81,4.74,4.71,4.73,4.79,5.02,4.94
-,2007-05-22,5.01,4.93,5.02,4.96,4.83,4.77,4.76,4.78,4.83,5.06,4.98
-,2007-05-23,5.0,4.91,5.01,4.96,4.85,4.79,4.79,4.8,4.86,5.09,5.01
-,2007-05-24,4.99,4.91,4.99,4.94,4.85,4.8,4.79,4.8,4.86,5.09,5.0
-,2007-05-25,4.97,4.88,4.97,4.93,4.85,4.81,4.8,4.82,4.86,5.09,5.01
-,2007-05-29,4.95,4.9,5.0,4.96,4.88,4.83,4.82,4.83,4.88,5.09,5.01
-,2007-05-30,4.94,4.85,4.99,4.96,4.89,4.85,4.83,4.84,4.88,5.09,5.01
-,2007-05-31,4.78,4.73,4.96,4.95,4.92,4.88,4.86,4.87,4.9,5.1,5.01
-,2007-06-01,4.8,4.79,4.98,4.98,4.97,4.94,4.92,4.92,4.95,5.15,5.06
-,2007-06-04,4.78,4.81,4.99,4.99,4.97,4.92,4.91,4.91,4.93,5.11,5.02
-,2007-06-05,4.75,4.83,4.99,4.99,4.99,4.97,4.96,4.96,4.98,5.16,5.07
-,2007-06-06,4.78,4.8,4.95,4.96,4.97,4.94,4.94,4.94,4.97,5.17,5.08
-,2007-06-07,4.8,4.8,4.97,4.99,5.03,5.03,5.05,5.07,5.11,5.29,5.2
-,2007-06-08,4.76,4.77,4.93,4.96,5.01,5.03,5.06,5.08,5.12,5.3,5.22
-,2007-06-11,4.7,4.73,4.96,4.98,5.01,5.03,5.07,5.1,5.14,5.32,5.24
-,2007-06-12,4.65,4.72,4.97,5.01,5.08,5.13,5.18,5.21,5.26,5.44,5.35
-,2007-06-13,4.62,4.66,4.94,4.98,5.08,5.1,5.13,5.16,5.2,5.36,5.28
-,2007-06-14,4.51,4.65,4.93,4.98,5.1,5.13,5.16,5.19,5.23,5.39,5.3
-,2007-06-15,4.46,4.56,4.87,4.93,5.05,5.07,5.1,5.12,5.16,5.34,5.26
-,2007-06-18,4.47,4.63,4.93,4.95,5.01,5.05,5.07,5.1,5.15,5.34,5.26
-,2007-06-19,4.44,4.65,4.91,4.92,4.94,4.98,5.0,5.03,5.09,5.28,5.2
-,2007-06-20,4.42,4.74,4.97,4.97,4.97,5.01,5.05,5.09,5.14,5.32,5.24
-,2007-06-21,4.17,4.7,4.96,4.96,4.98,5.01,5.06,5.1,5.16,5.36,5.28
-,2007-06-22,4.29,4.73,4.95,4.94,4.92,4.97,5.02,5.07,5.14,5.34,5.25
-,2007-06-25,4.43,4.82,5.01,4.96,4.87,4.92,4.97,5.01,5.09,5.28,5.2
-,2007-06-26,4.53,4.82,5.01,4.97,4.9,4.95,4.99,5.03,5.1,5.31,5.22
-,2007-06-27,4.24,4.77,4.95,4.93,4.91,4.93,4.97,5.02,5.09,5.28,5.2
-,2007-06-28,4.08,4.78,4.95,4.95,4.96,4.98,5.02,5.06,5.12,5.3,5.22
-,2007-06-29,4.28,4.82,4.93,4.91,4.87,4.89,4.92,4.96,5.03,5.21,5.12
-,2007-07-02,4.55,4.95,5.02,4.97,4.86,4.86,4.9,4.93,5.0,5.18,5.09
-,2007-07-03,4.77,4.95,5.02,4.98,4.89,4.9,4.95,4.99,5.05,5.22,5.14
-,2007-07-05,4.76,4.95,5.03,5.02,4.99,5.0,5.05,5.1,5.16,5.32,5.24
-,2007-07-06,4.71,4.95,5.01,5.0,4.99,5.02,5.1,5.14,5.19,5.36,5.28
-,2007-07-09,4.68,4.97,5.05,5.03,4.97,5.0,5.07,5.11,5.16,5.32,5.25
-,2007-07-10,4.74,4.95,5.03,4.97,4.85,4.87,4.93,4.97,5.03,5.21,5.14
-,2007-07-11,4.73,4.95,5.04,4.99,4.89,4.9,4.98,5.02,5.09,5.26,5.18
-,2007-07-12,4.73,4.97,5.05,5.02,4.94,4.97,5.03,5.08,5.13,5.29,5.22
-,2007-07-13,4.72,4.97,5.05,5.01,4.94,4.95,5.01,5.05,5.11,5.27,5.19
-,2007-07-16,4.75,4.98,5.08,5.01,4.89,4.89,4.95,4.99,5.05,5.21,5.14
-,2007-07-17,4.77,4.96,5.08,5.02,4.91,4.92,4.98,5.02,5.08,5.24,5.16
-,2007-07-18,4.77,4.96,5.05,4.98,4.84,4.86,4.91,4.95,5.02,5.18,5.1
-,2007-07-19,4.78,4.98,5.06,5.0,4.87,4.88,4.94,4.98,5.04,5.2,5.12
-,2007-07-20,4.76,4.97,5.05,4.96,4.79,4.78,4.85,4.9,4.96,5.14,5.07
-,2007-07-23,4.88,5.02,5.1,5.0,4.8,4.81,4.86,4.9,4.97,5.15,5.07
-,2007-07-24,5.05,5.02,5.08,4.97,4.77,4.76,4.82,4.87,4.94,5.13,5.05
-,2007-07-25,5.04,4.99,5.05,4.95,4.74,4.74,4.8,4.85,4.92,5.12,5.04
-,2007-07-26,4.98,4.92,4.96,4.83,4.56,4.54,4.61,4.68,4.79,5.02,4.95
-,2007-07-27,4.89,4.85,4.94,4.82,4.56,4.53,4.6,4.68,4.8,5.03,4.95
-,2007-07-30,4.95,4.96,5.0,4.87,4.59,4.57,4.64,4.71,4.82,5.05,4.97
-,2007-07-31,5.13,4.96,4.99,4.85,4.56,4.55,4.6,4.67,4.78,5.0,4.92
-,2007-08-01,5.05,4.89,4.96,4.82,4.56,4.53,4.6,4.66,4.76,4.99,4.9
-,2007-08-02,5.02,4.89,4.95,4.83,4.59,4.57,4.62,4.68,4.77,5.0,4.91
-,2007-08-03,4.94,4.85,4.91,4.76,4.46,4.45,4.52,4.59,4.71,4.96,4.87
-,2007-08-06,4.92,4.88,4.92,4.76,4.46,4.45,4.52,4.6,4.72,4.98,4.89
-,2007-08-07,5.05,4.94,4.98,4.84,4.56,4.55,4.6,4.66,4.77,5.01,4.92
-,2007-08-08,5.04,4.95,5.01,4.89,4.64,4.64,4.69,4.75,4.84,5.11,5.01
-,2007-08-09,4.7,4.81,4.86,4.74,4.49,4.51,4.58,4.66,4.79,5.1,5.02
-,2007-08-10,4.38,4.57,4.8,4.69,4.47,4.51,4.59,4.68,4.81,5.11,5.03
-,2007-08-13,4.61,4.74,4.9,4.75,4.46,4.49,4.57,4.65,4.78,5.09,5.01
-,2007-08-14,4.62,4.64,4.81,4.67,4.39,4.42,4.51,4.6,4.73,5.06,4.99
-,2007-08-15,4.18,4.21,4.48,4.41,4.27,4.31,4.41,4.52,4.69,5.07,5.0
-,2007-08-16,3.13,3.79,4.22,4.18,4.08,4.15,4.26,4.39,4.6,4.99,4.92
-,2007-08-17,3.03,3.76,4.19,4.19,4.18,4.25,4.35,4.47,4.68,5.06,5.0
-,2007-08-20,2.47,3.12,4.17,4.15,4.11,4.19,4.32,4.44,4.64,5.04,4.98
-,2007-08-21,3.17,3.59,4.08,4.07,4.05,4.12,4.27,4.41,4.6,5.0,4.95
-,2007-08-22,3.12,3.67,4.08,4.1,4.15,4.19,4.34,4.46,4.63,5.01,4.96
-,2007-08-23,3.79,3.89,4.19,4.19,4.2,4.24,4.36,4.47,4.62,4.98,4.93
-,2007-08-24,4.24,4.24,4.32,4.31,4.3,4.31,4.42,4.5,4.63,4.95,4.88
-,2007-08-27,4.74,4.63,4.69,4.55,4.28,4.28,4.39,4.47,4.6,4.92,4.87
-,2007-08-28,4.6,4.4,4.48,4.36,4.13,4.14,4.25,4.36,4.53,4.9,4.86
-,2007-08-29,4.02,3.98,4.3,4.24,4.14,4.19,4.31,4.41,4.57,4.93,4.88
-,2007-08-30,3.69,3.84,4.21,4.17,4.08,4.14,4.21,4.33,4.51,4.87,4.83
-,2007-08-31,4.02,4.01,4.21,4.19,4.15,4.16,4.25,4.36,4.54,4.87,4.83
-,2007-09-04,4.55,4.47,4.52,4.39,4.13,4.16,4.26,4.38,4.56,4.88,4.84
-,2007-09-05,4.41,4.36,4.41,4.28,4.03,4.05,4.16,4.29,4.48,4.82,4.78
-,2007-09-06,4.28,4.29,4.42,4.3,4.08,4.09,4.2,4.32,4.51,4.84,4.79
-,2007-09-07,4.03,4.07,4.2,4.1,3.9,3.92,4.03,4.17,4.38,4.73,4.7
-,2007-09-10,3.93,3.96,4.2,4.09,3.87,3.89,4.0,4.13,4.34,4.68,4.65
-,2007-09-11,4.13,4.11,4.27,4.16,3.95,3.97,4.07,4.19,4.37,4.68,4.65
-,2007-09-12,4.0,4.03,4.2,4.12,3.95,3.99,4.11,4.23,4.41,4.72,4.68
-,2007-09-13,4.04,4.08,4.27,4.2,4.08,4.11,4.22,4.33,4.49,4.79,4.75
-,2007-09-14,3.85,4.01,4.22,4.16,4.05,4.07,4.18,4.3,4.47,4.77,4.72
-,2007-09-17,3.82,4.15,4.31,4.23,4.08,4.11,4.21,4.32,4.48,4.76,4.72
-,2007-09-18,3.87,4.01,4.12,4.08,4.0,4.04,4.19,4.32,4.5,4.81,4.77
-,2007-09-19,3.62,3.93,4.09,4.06,4.0,4.06,4.2,4.33,4.53,4.86,4.83
-,2007-09-20,3.46,3.79,4.11,4.1,4.1,4.19,4.35,4.49,4.69,4.99,4.96
-,2007-09-21,3.24,3.74,4.1,4.09,4.06,4.15,4.31,4.44,4.64,4.95,4.89
-,2007-09-24,3.35,3.84,4.11,4.09,4.05,4.14,4.31,4.44,4.63,4.94,4.88
-,2007-09-25,3.34,3.79,4.06,4.04,4.0,4.09,4.26,4.41,4.63,4.94,4.89
-,2007-09-26,3.25,3.73,4.06,4.03,3.97,4.07,4.27,4.43,4.63,4.95,4.9
-,2007-09-27,3.3,3.71,4.07,4.03,3.95,4.02,4.22,4.37,4.58,4.89,4.84
-,2007-09-28,3.43,3.82,4.09,4.05,3.97,4.03,4.23,4.38,4.59,4.89,4.83
-,2007-10-01,3.52,3.92,4.15,4.11,4.02,4.05,4.24,4.37,4.56,4.85,4.79
-,2007-10-02,3.63,3.96,4.16,4.1,3.98,4.01,4.2,4.34,4.54,4.83,4.77
-,2007-10-03,3.67,3.96,4.16,4.11,4.02,4.07,4.24,4.37,4.55,4.85,4.79
-,2007-10-04,3.63,3.96,4.15,4.1,4.0,4.06,4.22,4.35,4.54,4.83,4.77
-,2007-10-05,3.58,4.0,4.2,4.16,4.08,4.16,4.33,4.46,4.65,4.94,4.87
-,2007-10-09,3.72,4.06,4.28,4.23,4.15,4.21,4.38,4.49,4.67,4.93,4.87
-,2007-10-10,3.81,4.06,4.27,4.23,4.15,4.21,4.37,4.49,4.65,4.93,4.86
-,2007-10-11,3.98,4.12,4.27,4.22,4.13,4.18,4.36,4.48,4.66,4.95,4.87
-,2007-10-12,4.12,4.2,4.31,4.28,4.23,4.27,4.42,4.53,4.7,4.98,4.91
-,2007-10-15,4.25,4.3,4.4,4.33,4.22,4.25,4.4,4.52,4.69,4.98,4.91
-,2007-10-16,4.14,4.25,4.33,4.26,4.12,4.17,4.34,4.47,4.66,4.97,4.9
-,2007-10-17,3.74,4.01,4.17,4.11,4.0,4.04,4.22,4.36,4.57,4.88,4.82
-,2007-10-18,3.21,3.76,4.09,4.03,3.93,3.98,4.17,4.31,4.52,4.84,4.78
-,2007-10-19,3.45,3.86,4.07,3.98,3.8,3.85,4.03,4.19,4.41,4.74,4.68
-,2007-10-22,3.69,4.0,4.15,4.05,3.85,3.88,4.08,4.21,4.42,4.73,4.68
-,2007-10-23,3.98,3.98,4.12,4.01,3.81,3.86,4.06,4.2,4.41,4.74,4.69
-,2007-10-24,3.83,3.85,4.0,3.91,3.74,3.79,3.99,4.14,4.36,4.69,4.64
-,2007-10-25,3.92,3.94,4.02,3.93,3.74,3.78,4.01,4.15,4.37,4.7,4.66
-,2007-10-26,3.97,3.96,4.05,3.96,3.77,3.79,4.04,4.19,4.41,4.73,4.68
-,2007-10-29,3.96,4.01,4.1,4.0,3.79,3.84,4.04,4.19,4.39,4.71,4.66
-,2007-10-30,4.03,3.96,4.07,3.98,3.82,3.85,4.06,4.2,4.4,4.72,4.68
-,2007-10-31,4.01,3.94,4.09,4.04,3.94,3.94,4.16,4.29,4.48,4.79,4.74
-,2007-11-01,3.9,3.81,3.95,3.89,3.77,3.8,4.02,4.16,4.36,4.69,4.64
-,2007-11-02,3.73,3.61,3.79,3.74,3.66,3.68,3.93,4.09,4.31,4.65,4.61
-,2007-11-05,3.86,3.71,3.94,3.86,3.69,3.71,3.96,4.12,4.35,4.67,4.63
-,2007-11-06,3.99,3.76,3.9,3.83,3.7,3.73,3.99,4.15,4.38,4.7,4.66
-,2007-11-07,3.77,3.49,3.76,3.71,3.61,3.6,3.92,4.09,4.34,4.71,4.67
-,2007-11-08,3.56,3.38,3.67,3.61,3.47,3.46,3.81,4.0,4.28,4.7,4.67
-,2007-11-09,3.42,3.27,3.64,3.57,3.42,3.44,3.77,3.96,4.23,4.64,4.61
-,2007-11-13,3.73,3.5,3.76,3.68,3.54,3.52,3.84,4.01,4.26,4.64,4.61
-,2007-11-14,3.86,3.41,3.7,3.65,3.57,3.53,3.86,4.03,4.28,4.65,4.61
-,2007-11-15,3.74,3.3,3.56,3.49,3.35,3.35,3.71,3.9,4.17,4.58,4.54
-,2007-11-16,3.78,3.4,3.57,3.49,3.33,3.3,3.68,3.88,4.15,4.56,4.52
-,2007-11-19,3.74,3.4,3.55,3.43,3.18,3.16,3.57,3.78,4.07,4.5,4.47
-,2007-11-20,3.65,3.25,3.41,3.32,3.14,3.15,3.52,3.74,4.06,4.51,4.49
-,2007-11-21,3.54,3.09,3.28,3.18,2.99,3.03,3.4,3.65,4.0,4.49,4.46
-,2007-11-23,3.64,3.23,3.39,3.28,3.07,3.1,3.42,3.67,4.01,4.46,4.43
-,2007-11-26,3.53,3.13,3.33,3.2,2.92,2.93,3.23,3.48,3.83,4.29,4.26
-,2007-11-27,3.68,3.16,3.37,3.26,3.05,3.04,3.38,3.61,3.95,4.4,4.36
-,2007-11-28,3.52,3.05,3.38,3.31,3.17,3.21,3.5,3.72,4.03,4.46,4.41
-,2007-11-29,3.38,2.99,3.3,3.22,3.06,3.11,3.42,3.64,3.94,4.39,4.35
-,2007-11-30,3.63,3.15,3.37,3.26,3.04,3.09,3.41,3.64,3.97,4.44,4.4
-,2007-12-03,3.55,3.06,3.28,3.15,2.9,2.93,3.28,3.53,3.89,4.38,4.34
-,2007-12-04,3.16,3.07,3.22,3.11,2.9,2.92,3.28,3.54,3.89,4.38,4.34
-,2007-12-05,3.15,3.07,3.24,3.13,2.9,2.91,3.28,3.55,3.92,4.42,4.39
-,2007-12-06,3.09,3.09,3.29,3.2,3.03,3.03,3.39,3.66,4.02,4.52,4.49
-,2007-12-07,3.04,3.12,3.3,3.24,3.12,3.15,3.51,3.77,4.12,4.62,4.58
-,2007-12-10,3.05,3.05,3.31,3.26,3.17,3.19,3.54,3.8,4.15,4.64,4.6
-,2007-12-11,2.89,2.94,3.17,3.09,2.94,2.99,3.32,3.59,3.98,4.51,4.47
-,2007-12-12,2.89,2.88,3.2,3.16,3.07,3.12,3.41,3.68,4.05,4.55,4.51
-,2007-12-13,2.7,2.87,3.22,3.22,3.21,3.22,3.54,3.8,4.18,4.66,4.61
-,2007-12-14,2.61,2.88,3.26,3.28,3.31,3.32,3.63,3.88,4.24,4.71,4.66
-,2007-12-17,2.78,3.07,3.39,3.34,3.24,3.25,3.57,3.83,4.2,4.67,4.62
-,2007-12-18,2.76,3.04,3.37,3.31,3.19,3.2,3.53,3.78,4.14,4.6,4.55
-,2007-12-19,2.66,2.91,3.33,3.26,3.12,3.13,3.46,3.71,4.06,4.52,4.47
-,2007-12-20,2.42,2.92,3.26,3.2,3.09,3.09,3.45,3.7,4.04,4.5,4.46
-,2007-12-21,2.44,3.0,3.38,3.31,3.19,3.2,3.58,3.84,4.18,4.62,4.58
-,2007-12-24,2.75,3.33,3.57,3.46,3.24,3.25,3.65,3.89,4.23,4.67,4.62
-,2007-12-26,3.04,3.32,3.58,3.49,3.31,3.32,3.72,3.96,4.3,4.73,4.68
-,2007-12-27,2.85,3.17,3.43,3.37,3.24,3.23,3.64,3.88,4.21,4.66,4.61
-,2007-12-28,2.57,3.18,3.45,3.34,3.12,3.13,3.52,3.77,4.11,4.56,4.51
-,2007-12-31,2.76,3.36,3.49,3.34,3.05,3.07,3.45,3.7,4.04,4.5,4.45
-,2008-01-02,3.09,3.26,3.32,3.17,2.88,2.89,3.28,3.54,3.91,4.39,4.35
-,2008-01-03,3.19,3.24,3.29,3.13,2.83,2.85,3.26,3.54,3.91,4.41,4.37
-,2008-01-04,3.22,3.2,3.22,3.06,2.74,2.75,3.18,3.47,3.88,4.4,4.36
-,2008-01-07,3.27,3.27,3.29,3.11,2.76,2.76,3.16,3.46,3.86,4.37,4.34
-,2008-01-08,3.31,3.25,3.27,3.09,2.76,2.76,3.16,3.47,3.86,4.39,4.35
-,2008-01-09,3.34,3.22,3.22,3.04,2.69,2.69,3.1,3.4,3.82,4.35,4.32
-,2008-01-10,3.37,3.24,3.21,3.04,2.71,2.74,3.16,3.49,3.91,4.47,4.44
-,2008-01-11,3.23,3.09,3.07,2.91,2.59,2.61,3.06,3.38,3.82,4.4,4.39
-,2008-01-14,3.2,3.19,3.07,2.9,2.58,2.61,3.08,3.39,3.81,4.39,4.37
-,2008-01-15,3.15,3.17,3.05,2.87,2.53,2.55,3.0,3.3,3.72,4.3,4.28
-,2008-01-16,3.14,3.14,3.05,2.86,2.51,2.55,3.0,3.32,3.74,4.34,4.32
-,2008-01-17,3.07,3.07,3.01,2.81,2.44,2.46,2.9,3.22,3.66,4.27,4.25
-,2008-01-18,2.63,2.86,2.86,2.69,2.36,2.39,2.86,3.2,3.66,4.3,4.28
-,2008-01-22,2.15,2.35,2.41,2.29,2.08,2.12,2.64,3.01,3.52,4.23,4.23
-,2008-01-23,2.07,2.21,2.25,2.19,2.09,2.12,2.64,3.01,3.51,4.23,4.23
-,2008-01-24,2.19,2.37,2.48,2.4,2.25,2.3,2.85,3.21,3.68,4.37,4.36
-,2008-01-25,2.07,2.3,2.41,2.34,2.23,2.28,2.81,3.15,3.61,4.3,4.28
-,2008-01-28,2.12,2.34,2.36,2.3,2.2,2.27,2.8,3.15,3.61,4.3,4.29
-,2008-01-29,2.13,2.28,2.36,2.33,2.29,2.33,2.87,3.23,3.69,4.35,4.34
-,2008-01-30,1.93,2.21,2.29,2.3,2.3,2.44,2.96,3.32,3.78,4.45,4.44
-,2008-01-31,1.64,1.96,2.07,2.11,2.17,2.27,2.82,3.19,3.67,4.35,4.35
-,2008-02-01,1.75,2.1,2.15,2.13,2.09,2.22,2.75,3.13,3.62,4.31,4.32
-,2008-02-04,2.15,2.27,2.22,2.17,2.08,2.23,2.78,3.18,3.68,4.37,4.37
-,2008-02-05,2.22,2.19,2.13,2.06,1.93,2.08,2.66,3.08,3.61,4.32,4.33
-,2008-02-06,2.12,2.1,2.1,2.05,1.96,2.11,2.67,3.08,3.61,4.36,4.37
-,2008-02-07,2.19,2.17,2.13,2.08,1.99,2.21,2.79,3.21,3.74,4.5,4.51
-,2008-02-08,2.24,2.23,2.12,2.05,1.93,2.1,2.69,3.11,3.64,4.41,4.43
-,2008-02-11,2.35,2.31,2.13,2.06,1.93,2.1,2.67,3.09,3.62,4.38,4.41
-,2008-02-12,2.55,2.31,2.12,2.06,1.94,2.13,2.71,3.13,3.66,4.43,4.46
-,2008-02-13,2.5,2.28,2.1,2.03,1.91,2.11,2.71,3.14,3.7,4.48,4.52
-,2008-02-14,2.5,2.31,2.12,2.05,1.93,2.18,2.81,3.28,3.85,4.63,4.67
-,2008-02-15,2.4,2.21,2.07,2.02,1.91,2.15,2.76,3.21,3.76,4.55,4.58
-,2008-02-19,2.37,2.28,2.14,2.11,2.06,2.31,2.93,3.37,3.89,4.63,4.66
-,2008-02-20,2.4,2.25,2.17,2.16,2.14,2.43,3.02,3.45,3.93,4.63,4.65
-,2008-02-21,2.35,2.2,2.1,2.05,1.98,2.23,2.8,3.24,3.77,4.52,4.54
-,2008-02-22,2.33,2.2,2.14,2.08,1.98,2.24,2.81,3.26,3.79,4.55,4.58
-,2008-02-25,2.34,2.2,2.13,2.13,2.13,2.39,2.98,3.41,3.91,4.65,4.67
-,2008-02-26,2.34,2.14,2.09,2.07,2.04,2.32,2.92,3.36,3.88,4.64,4.66
-,2008-02-27,2.21,1.98,2.02,2.02,2.01,2.25,2.89,3.33,3.85,4.62,4.65
-,2008-02-28,2.08,1.9,1.95,1.92,1.87,2.1,2.73,3.17,3.71,4.51,4.55
-,2008-02-29,2.07,1.85,1.83,1.77,1.65,1.87,2.5,2.96,3.53,4.37,4.41
-,2008-03-03,1.99,1.7,1.8,1.74,1.61,1.84,2.48,2.96,3.54,4.37,4.42
-,2008-03-04,2.01,1.66,1.76,1.72,1.65,1.86,2.53,3.02,3.63,4.46,4.52
-,2008-03-05,1.91,1.53,1.75,1.72,1.66,1.91,2.59,3.1,3.7,4.55,4.6
-,2008-03-06,1.73,1.39,1.61,1.59,1.53,1.77,2.5,3.0,3.62,4.52,4.57
-,2008-03-07,1.65,1.45,1.56,1.55,1.53,1.75,2.45,2.94,3.56,4.49,4.55
-,2008-03-10,1.63,1.35,1.45,1.46,1.47,1.67,2.37,2.84,3.46,4.39,4.45
-,2008-03-11,1.82,1.48,1.64,1.67,1.74,1.93,2.61,3.04,3.6,4.48,4.53
-,2008-03-12,1.68,1.48,1.56,1.58,1.63,1.81,2.49,2.93,3.49,4.35,4.4
-,2008-03-13,1.56,1.35,1.5,1.54,1.63,1.84,2.53,2.99,3.56,4.42,4.47
-,2008-03-14,1.2,1.18,1.32,1.37,1.47,1.65,2.37,2.84,3.44,4.3,4.35
-,2008-03-17,1.16,1.11,1.31,1.32,1.35,1.52,2.23,2.71,3.34,4.24,4.29
-,2008-03-18,0.71,0.92,1.32,1.4,1.58,1.74,2.42,2.88,3.48,4.3,4.35
-,2008-03-19,0.26,0.61,1.22,1.33,1.54,1.68,2.36,2.8,3.38,4.2,4.22
-,2008-03-20,0.37,0.63,1.2,1.33,1.59,1.71,2.36,2.78,3.34,4.15,4.17
-,2008-03-24,0.67,1.24,1.6,1.68,1.84,1.99,2.64,3.04,3.56,4.31,4.33
-,2008-03-25,1.47,1.29,1.56,1.64,1.79,1.93,2.61,3.0,3.51,4.29,4.3
-,2008-03-26,1.36,1.29,1.48,1.56,1.71,1.86,2.55,2.96,3.51,4.31,4.33
-,2008-03-27,1.32,1.3,1.49,1.57,1.73,1.88,2.61,3.02,3.56,4.37,4.38
-,2008-03-28,1.29,1.33,1.5,1.56,1.67,1.8,2.51,2.91,3.47,4.32,4.33
-,2008-03-31,1.22,1.38,1.51,1.55,1.62,1.79,2.46,2.88,3.45,4.3,4.3
-,2008-04-01,1.55,1.4,1.53,1.62,1.8,1.94,2.65,3.04,3.57,4.4,4.4
-,2008-04-02,1.55,1.41,1.56,1.67,1.88,2.05,2.72,3.09,3.6,4.4,4.38
-,2008-04-03,1.56,1.4,1.56,1.68,1.91,2.08,2.75,3.11,3.61,4.41,4.4
-,2008-04-04,1.5,1.35,1.53,1.63,1.83,1.98,2.63,2.99,3.5,4.32,4.32
-,2008-04-07,1.42,1.45,1.61,1.72,1.95,2.1,2.75,3.09,3.57,4.37,4.36
-,2008-04-08,1.34,1.41,1.58,1.68,1.87,2.06,2.72,3.08,3.58,4.37,4.37
-,2008-04-09,1.06,1.31,1.51,1.6,1.77,1.95,2.59,2.97,3.49,4.3,4.31
-,2008-04-10,0.98,1.27,1.49,1.61,1.84,2.02,2.66,3.05,3.55,4.33,4.34
-,2008-04-11,0.9,1.19,1.4,1.52,1.76,1.94,2.57,2.97,3.49,4.28,4.3
-,2008-04-14,0.85,1.08,1.41,1.53,1.78,1.97,2.6,3.0,3.53,4.32,4.35
-,2008-04-15,0.84,1.1,1.42,1.56,1.84,2.05,2.68,3.08,3.6,4.38,4.42
-,2008-04-16,0.86,1.12,1.49,1.65,1.98,2.2,2.82,3.21,3.72,4.49,4.54
-,2008-04-17,0.87,1.23,1.58,1.77,2.13,2.31,2.9,3.27,3.75,4.5,4.54
-,2008-04-18,0.9,1.35,1.68,1.85,2.19,2.35,2.95,3.29,3.77,4.52,4.51
-,2008-04-21,0.9,1.34,1.68,1.86,2.2,2.37,2.95,3.28,3.75,4.48,4.48
-,2008-04-22,0.72,1.27,1.64,1.84,2.24,2.43,2.96,3.29,3.74,4.47,4.46
-,2008-04-23,0.78,1.26,1.64,1.83,2.22,2.45,2.98,3.32,3.77,4.49,4.49
-,2008-04-24,0.81,1.26,1.66,1.91,2.41,2.61,3.15,3.44,3.87,4.56,4.56
-,2008-04-25,0.8,1.34,1.73,1.97,2.44,2.64,3.2,3.49,3.91,4.61,4.61
-,2008-04-28,0.94,1.43,1.74,1.95,2.36,2.58,3.14,3.44,3.86,4.57,4.57
-,2008-04-29,1.28,1.46,1.74,1.94,2.35,2.55,3.11,3.42,3.85,4.56,4.55
-,2008-04-30,1.17,1.43,1.64,1.85,2.29,2.49,3.03,3.34,3.77,4.49,4.49
-,2008-05-01,1.23,1.45,1.73,1.94,2.37,2.53,3.06,3.36,3.78,4.49,4.49
-,2008-05-02,1.25,1.5,1.72,1.97,2.47,2.64,3.18,3.48,3.89,4.57,4.57
-,2008-05-05,1.34,1.53,1.76,1.98,2.42,2.62,3.14,3.45,3.88,4.58,4.58
-,2008-05-06,1.53,1.63,1.76,1.96,2.38,2.62,3.15,3.51,3.93,4.64,4.64
-,2008-05-07,1.57,1.67,1.75,1.94,2.31,2.56,3.09,3.45,3.87,4.61,4.61
-,2008-05-08,1.55,1.66,1.74,1.91,2.25,2.47,2.99,3.34,3.79,4.55,4.5
-,2008-05-09,1.6,1.69,1.74,1.91,2.25,2.5,2.98,3.33,3.77,4.52,4.53
-,2008-05-12,1.73,1.77,1.87,2.01,2.3,2.54,3.0,3.34,3.78,4.52,4.53
-,2008-05-13,1.86,1.83,1.89,2.08,2.47,2.7,3.17,3.49,3.9,4.61,4.62
-,2008-05-14,1.86,1.82,1.9,2.11,2.53,2.78,3.22,3.5,3.92,4.63,4.63
-,2008-05-15,1.84,1.83,1.9,2.08,2.45,2.7,3.1,3.39,3.83,4.55,4.56
-,2008-05-16,1.85,1.84,1.91,2.09,2.47,2.71,3.12,3.43,3.85,4.57,4.58
-,2008-05-19,1.93,1.82,1.89,2.07,2.42,2.67,3.09,3.4,3.83,4.55,4.56
-,2008-05-20,1.97,1.86,1.9,2.05,2.34,2.58,3.02,3.35,3.78,4.52,4.53
-,2008-05-21,1.95,1.86,1.9,2.07,2.41,2.68,3.09,3.38,3.81,4.53,4.55
-,2008-05-22,1.97,1.86,1.95,2.15,2.56,2.83,3.24,3.52,3.92,4.62,4.63
-,2008-05-23,1.92,1.86,1.94,2.11,2.46,2.73,3.15,3.43,3.85,4.56,4.57
-,2008-05-27,1.91,1.89,1.94,2.15,2.55,2.82,3.25,3.52,3.93,4.65,4.65
-,2008-05-28,2.07,1.89,2.0,2.21,2.62,2.93,3.36,3.63,4.03,4.72,4.71
-,2008-05-29,2.02,1.9,1.93,2.16,2.67,2.94,3.41,3.68,4.08,4.77,4.76
-,2008-05-30,1.98,1.89,2.01,2.22,2.66,2.93,3.41,3.68,4.06,4.74,4.72
-,2008-06-02,1.94,1.85,1.99,2.17,2.51,2.82,3.28,3.56,3.98,4.69,4.68
-,2008-06-03,1.96,1.85,2.0,2.14,2.45,2.75,3.21,3.5,3.92,4.64,4.63
-,2008-06-04,1.85,1.84,1.99,2.14,2.47,2.78,3.26,3.55,3.98,4.72,4.71
-,2008-06-05,1.79,1.85,2.0,2.15,2.52,2.84,3.34,3.63,4.06,4.77,4.75
-,2008-06-06,1.75,1.85,2.0,2.12,2.4,2.73,3.2,3.5,3.94,4.67,4.65
-,2008-06-09,1.8,1.89,2.12,2.29,2.73,3.03,3.41,3.65,4.02,4.68,4.64
-,2008-06-10,2.0,2.02,2.24,2.53,2.91,3.2,3.54,3.77,4.11,4.76,4.7
-,2008-06-11,1.91,1.96,2.18,2.47,2.83,3.16,3.49,3.73,4.1,4.76,4.72
-,2008-06-12,1.92,2.0,2.28,2.62,3.03,3.35,3.68,3.9,4.23,4.83,4.77
-,2008-06-13,1.86,1.99,2.3,2.64,3.05,3.38,3.73,3.95,4.27,4.86,4.79
-,2008-06-16,1.89,2.07,2.42,2.68,3.02,3.33,3.73,3.94,4.25,4.84,4.77
-,2008-06-17,1.82,1.99,2.33,2.58,2.94,3.25,3.66,3.89,4.23,4.85,4.78
-,2008-06-18,1.7,1.93,2.29,2.53,2.89,3.19,3.57,3.81,4.16,4.77,4.72
-,2008-06-19,1.59,1.91,2.29,2.58,2.99,3.28,3.67,3.89,4.22,4.82,4.76
-,2008-06-20,1.49,1.87,2.23,2.49,2.88,3.17,3.57,3.81,4.16,4.76,4.71
-,2008-06-23,1.55,1.87,2.31,2.57,2.98,3.27,3.65,3.87,4.19,4.77,4.71
-,2008-06-24,1.58,1.83,2.25,2.53,2.87,3.14,3.52,3.76,4.1,4.7,4.65
-,2008-06-25,1.49,1.81,2.22,2.48,2.82,3.11,3.54,3.78,4.12,4.72,4.65
-,2008-06-26,1.42,1.74,2.16,2.39,2.68,2.97,3.44,3.69,4.07,4.67,4.62
-,2008-06-27,1.29,1.68,2.12,2.35,2.65,2.92,3.36,3.62,3.99,4.58,4.53
-,2008-06-30,1.6,1.9,2.17,2.36,2.63,2.91,3.34,3.61,3.99,4.59,4.53
-,2008-07-01,1.92,1.87,2.13,2.38,2.63,2.9,3.33,3.62,4.01,4.6,4.55
-,2008-07-02,1.87,1.82,2.1,2.35,2.6,2.87,3.31,3.6,3.99,4.57,4.51
-,2008-07-03,1.86,1.84,2.09,2.3,2.54,2.82,3.28,3.59,3.99,4.58,4.53
-,2008-07-07,1.8,1.87,2.1,2.26,2.47,2.78,3.23,3.53,3.95,4.55,4.51
-,2008-07-08,1.86,1.86,2.09,2.26,2.47,2.78,3.19,3.49,3.91,4.51,4.46
-,2008-07-09,1.82,1.82,2.05,2.21,2.41,2.71,3.11,3.42,3.85,4.47,4.42
-,2008-07-10,1.48,1.67,2.01,2.2,2.44,2.72,3.1,3.4,3.83,4.47,4.42
-,2008-07-11,1.38,1.62,2.02,2.3,2.59,2.88,3.27,3.55,3.96,4.57,4.52
-,2008-07-14,1.41,1.52,1.95,2.23,2.47,2.79,3.2,3.49,3.9,4.52,4.47
-,2008-07-15,1.49,1.39,1.9,2.15,2.39,2.7,3.12,3.43,3.87,4.52,4.48
-,2008-07-16,1.36,1.37,1.89,2.16,2.44,2.75,3.2,3.52,3.97,4.64,4.59
-,2008-07-17,1.31,1.43,1.92,2.26,2.58,2.89,3.35,3.65,4.07,4.7,4.65
-,2008-07-18,1.28,1.48,1.91,2.26,2.66,2.97,3.42,3.71,4.11,4.71,4.66
-,2008-07-21,1.32,1.48,1.93,2.3,2.66,2.97,3.41,3.69,4.09,4.69,4.64
-,2008-07-22,1.5,1.55,1.95,2.33,2.74,3.05,3.48,3.75,4.14,4.73,4.67
-,2008-07-23,1.59,1.59,1.91,2.4,2.81,3.1,3.51,3.77,4.16,4.76,4.69
-,2008-07-24,1.69,1.65,1.9,2.26,2.61,2.92,3.37,3.64,4.03,4.66,4.6
-,2008-07-25,1.72,1.75,1.95,2.35,2.7,3.01,3.45,3.73,4.13,4.75,4.69
-,2008-07-28,1.68,1.73,1.92,2.28,2.59,2.9,3.34,3.64,4.06,4.69,4.63
-,2008-07-29,1.73,1.72,1.96,2.36,2.65,2.95,3.39,3.68,4.09,4.7,4.64
-,2008-07-30,1.66,1.7,1.9,2.33,2.64,2.93,3.36,3.65,4.07,4.69,4.64
-,2008-07-31,1.55,1.68,1.89,2.27,2.52,2.81,3.25,3.56,3.99,4.63,4.59
-,2008-08-01,1.52,1.66,1.88,2.25,2.51,2.79,3.23,3.54,3.97,4.61,4.57
-,2008-08-04,1.61,1.75,1.97,2.27,2.53,2.81,3.23,3.55,3.98,4.62,4.58
-,2008-08-05,1.73,1.75,1.97,2.26,2.54,2.83,3.28,3.6,4.04,4.67,4.63
-,2008-08-06,1.53,1.64,1.92,2.26,2.56,2.85,3.3,3.62,4.06,4.71,4.68
-,2008-08-07,1.53,1.66,1.92,2.17,2.43,2.72,3.16,3.48,3.92,4.58,4.56
-,2008-08-08,1.63,1.7,1.95,2.19,2.51,2.8,3.21,3.51,3.94,4.58,4.55
-,2008-08-11,1.77,1.87,2.05,2.27,2.56,2.84,3.27,3.57,3.99,4.64,4.61
-,2008-08-12,1.73,1.86,2.05,2.18,2.45,2.73,3.16,3.47,3.91,4.58,4.55
-,2008-08-13,1.8,1.85,2.0,2.19,2.5,2.77,3.21,3.51,3.94,4.61,4.57
-,2008-08-14,1.76,1.89,2.0,2.14,2.45,2.72,3.15,3.46,3.89,4.55,4.52
-,2008-08-15,1.73,1.85,1.99,2.12,2.4,2.67,3.11,3.42,3.84,4.5,4.47
-,2008-08-18,1.77,1.82,2.03,2.15,2.35,2.62,3.07,3.39,3.82,4.47,4.44
-,2008-08-19,1.83,1.8,1.97,2.11,2.32,2.61,3.07,3.39,3.83,4.5,4.47
-,2008-08-20,1.74,1.71,1.9,2.06,2.25,2.54,3.0,3.34,3.79,4.46,4.43
-,2008-08-21,1.73,1.72,1.95,2.1,2.33,2.62,3.08,3.4,3.84,4.49,4.46
-,2008-08-22,1.67,1.7,1.97,2.17,2.42,2.7,3.14,3.45,3.87,4.5,4.46
-,2008-08-25,1.66,1.74,1.96,2.12,2.33,2.62,3.04,3.36,3.79,4.42,4.4
-,2008-08-26,1.67,1.71,1.95,2.19,2.35,2.64,3.06,3.37,3.79,4.43,4.4
-,2008-08-27,1.58,1.67,1.93,2.16,2.31,2.58,3.02,3.34,3.77,4.41,4.38
-,2008-08-28,1.63,1.74,1.98,2.19,2.37,2.62,3.09,3.42,3.79,4.41,4.38
-,2008-08-29,1.63,1.72,1.97,2.17,2.36,2.6,3.1,3.45,3.83,4.47,4.43
-,2008-09-02,1.64,1.72,1.93,2.12,2.26,2.51,3.0,3.37,3.74,4.39,4.36
-,2008-09-03,1.57,1.7,1.9,2.08,2.26,2.48,2.95,3.29,3.71,4.36,4.32
-,2008-09-04,1.56,1.69,1.89,2.04,2.2,2.41,2.87,3.21,3.64,4.31,4.27
-,2008-09-05,1.53,1.68,1.9,2.07,2.23,2.44,2.91,3.24,3.66,4.31,4.27
-,2008-09-08,1.59,1.71,1.92,2.12,2.3,2.49,2.96,3.26,3.66,4.3,4.26
-,2008-09-09,1.59,1.66,1.89,2.06,2.23,2.43,2.9,3.21,3.62,4.24,4.2
-,2008-09-10,1.58,1.65,1.87,2.06,2.22,2.42,2.91,3.23,3.65,4.27,4.23
-,2008-09-11,1.53,1.61,1.85,2.01,2.18,2.38,2.87,3.21,3.64,4.25,4.2
-,2008-09-12,1.37,1.49,1.84,2.02,2.23,2.45,2.97,3.32,3.74,4.36,4.32
-,2008-09-15,0.36,1.02,1.55,1.66,1.78,2.01,2.59,2.99,3.47,4.14,4.12
-,2008-09-16,0.23,0.84,1.52,1.72,1.89,2.12,2.64,3.02,3.48,4.12,4.08
-,2008-09-17,0.07,0.03,1.03,1.5,1.64,1.91,2.52,2.93,3.41,4.12,4.08
-,2008-09-18,0.26,0.23,0.79,1.53,1.78,2.05,2.67,3.08,3.54,4.19,4.14
-,2008-09-19,0.75,0.99,1.54,2.05,2.16,2.42,3.01,3.37,3.78,4.42,4.36
-,2008-09-22,0.76,1.28,1.76,2.06,2.13,2.41,3.04,3.42,3.83,4.48,4.41
-,2008-09-23,0.3,0.8,1.63,2.01,2.11,2.4,3.03,3.41,3.85,4.5,4.43
-,2008-09-24,0.13,0.49,1.45,1.9,2.03,2.26,2.91,3.31,3.8,4.48,4.4
-,2008-09-25,0.39,0.76,1.57,1.97,2.16,2.42,3.09,3.44,3.88,4.48,4.4
-,2008-09-26,0.21,0.87,1.54,1.81,2.11,2.38,3.05,3.41,3.85,4.44,4.36
-,2008-09-29,0.16,0.94,1.49,1.6,1.7,1.96,2.7,3.12,3.61,4.21,4.13
-,2008-09-30,1.02,0.92,1.6,1.78,2.0,2.28,2.98,3.38,3.85,4.43,4.31
-,2008-10-01,0.66,0.85,1.49,1.72,1.82,2.12,2.87,3.29,3.77,4.33,4.22
-,2008-10-02,0.21,0.63,1.21,1.45,1.62,1.91,2.68,3.13,3.66,4.28,4.16
-,2008-10-03,0.15,0.51,1.14,1.41,1.6,1.86,2.64,3.09,3.63,4.26,4.11
-,2008-10-06,0.19,0.54,1.12,1.23,1.43,1.69,2.45,2.92,3.48,4.12,3.99
-,2008-10-07,0.39,0.82,1.14,1.27,1.47,1.69,2.45,2.91,3.5,4.15,4.01
-,2008-10-08,0.23,0.68,1.07,1.28,1.65,1.88,2.7,3.15,3.72,4.31,4.09
-,2008-10-09,0.19,0.6,1.07,1.33,1.65,1.93,2.79,3.25,3.84,4.41,4.14
-,2008-10-10,0.07,0.25,0.84,1.08,1.62,1.87,2.77,3.27,3.89,4.41,4.15
-,2008-10-14,0.07,0.34,1.07,1.22,1.82,2.06,3.01,3.48,4.08,4.57,4.27
-,2008-10-15,0.05,0.22,0.92,1.14,1.64,1.91,2.9,3.4,4.04,4.57,4.25
-,2008-10-16,0.12,0.46,1.18,1.29,1.61,1.9,2.84,3.33,3.99,4.59,4.25
-,2008-10-17,0.13,0.83,1.25,1.34,1.64,1.9,2.83,3.3,3.98,4.66,4.32
-,2008-10-20,0.53,1.24,1.74,1.69,1.71,2.0,2.82,3.26,3.91,4.6,4.26
-,2008-10-21,0.71,1.1,1.61,1.74,1.58,1.86,2.63,3.08,3.76,4.52,4.2
-,2008-10-22,0.6,1.05,1.53,1.64,1.53,1.79,2.56,3.0,3.65,4.42,4.07
-,2008-10-23,0.39,0.98,1.51,1.61,1.54,1.76,2.57,3.0,3.63,4.34,3.99
-,2008-10-24,0.33,0.89,1.43,1.6,1.57,1.8,2.64,3.09,3.76,4.44,4.11
-,2008-10-27,0.31,0.84,1.36,1.57,1.59,1.83,2.67,3.12,3.79,4.43,4.12
-,2008-10-28,0.42,0.77,1.25,1.53,1.65,1.85,2.75,3.21,3.89,4.51,4.19
-,2008-10-29,0.41,0.62,1.1,1.41,1.58,1.79,2.77,3.24,3.93,4.59,4.26
-,2008-10-30,0.14,0.41,1.0,1.36,1.59,1.82,2.84,3.3,4.0,4.67,4.3
-,2008-10-31,0.12,0.46,0.94,1.34,1.56,1.8,2.8,3.29,4.01,4.74,4.35
-,2008-11-03,0.2,0.49,1.07,1.31,1.45,1.69,2.71,3.21,3.96,4.73,4.33
-,2008-11-04,0.29,0.48,1.03,1.28,1.39,1.59,2.56,3.06,3.81,4.58,4.2
-,2008-11-05,0.16,0.4,0.9,1.22,1.36,1.64,2.5,2.99,3.73,4.49,4.13
-,2008-11-06,0.13,0.32,0.83,1.17,1.28,1.63,2.46,3.01,3.75,4.52,4.19
-,2008-11-07,0.13,0.31,0.83,1.2,1.33,1.71,2.56,3.11,3.83,4.57,4.25
-,2008-11-10,0.11,0.29,0.91,1.16,1.27,1.78,2.51,3.06,3.82,4.5,4.21
-,2008-11-12,0.1,0.18,0.75,1.03,1.19,1.6,2.37,3.0,3.75,4.44,4.17
-,2008-11-13,0.08,0.22,0.93,1.16,1.24,1.62,2.43,3.07,3.84,4.57,4.34
-,2008-11-14,0.06,0.15,0.9,1.14,1.22,1.53,2.33,2.94,3.72,4.43,4.22
-,2008-11-17,0.06,0.12,0.81,1.08,1.22,1.53,2.32,2.92,3.68,4.42,4.2
-,2008-11-18,0.1,0.12,0.76,1.05,1.15,1.44,2.22,2.79,3.53,4.32,4.14
-,2008-11-19,0.09,0.07,0.66,0.97,1.09,1.36,2.08,2.64,3.38,4.17,3.96
-,2008-11-20,0.05,0.03,0.52,0.87,1.0,1.2,1.94,2.43,3.1,3.87,3.64
-,2008-11-21,0.03,0.02,0.45,0.83,1.09,1.35,2.02,2.53,3.2,3.93,3.7
-,2008-11-24,0.01,0.13,0.54,0.95,1.31,1.53,2.24,2.71,3.35,4.01,3.78
-,2008-11-25,0.04,0.1,0.53,0.95,1.15,1.41,2.06,2.49,3.11,3.85,3.63
-,2008-11-26,0.02,0.05,0.48,0.93,1.09,1.38,2.01,2.43,2.99,3.77,3.54
-,2008-11-28,0.02,0.01,0.44,0.9,1.0,1.27,1.93,2.35,2.93,3.71,3.45
-,2008-12-01,0.09,0.07,0.44,0.81,0.9,1.16,1.71,2.13,2.72,3.51,3.22
-,2008-12-02,0.04,0.06,0.42,0.77,0.9,1.12,1.65,2.08,2.68,3.47,3.18
-,2008-12-03,0.02,0.02,0.35,0.7,0.87,1.07,1.6,2.03,2.67,3.45,3.17
-,2008-12-04,0.01,0.02,0.26,0.61,0.82,1.02,1.51,1.93,2.55,3.35,3.06
-,2008-12-05,0.02,0.02,0.23,0.54,0.93,1.19,1.67,2.09,2.67,3.41,3.11
-,2008-12-08,0.01,0.03,0.28,0.53,0.97,1.27,1.76,2.17,2.77,3.45,3.16
-,2008-12-09,0.04,0.03,0.25,0.49,0.84,1.15,1.61,2.03,2.67,3.35,3.06
-,2008-12-10,0.0,None,0.21,0.49,0.86,1.21,1.62,2.05,2.69,3.39,3.09
-,2008-12-11,0.0,0.01,0.22,0.51,0.79,1.11,1.55,1.99,2.64,3.35,3.07
-,2008-12-12,0.03,0.02,0.21,0.5,0.78,1.05,1.55,1.98,2.6,3.36,3.07
-,2008-12-15,0.0,0.03,0.28,0.5,0.75,1.02,1.5,1.92,2.53,3.29,2.98
-,2008-12-16,0.05,0.04,0.23,0.45,0.65,0.88,1.34,1.77,2.37,3.16,2.86
-,2008-12-17,0.03,0.05,0.19,0.45,0.73,0.98,1.35,1.7,2.2,3.01,2.66
-,2008-12-18,0.03,None,0.15,0.43,0.68,0.92,1.26,1.59,2.08,2.86,2.53
-,2008-12-19,0.0,0.02,0.14,0.44,0.74,1.02,1.35,1.66,2.13,2.89,2.55
-,2008-12-22,0.01,0.01,0.27,0.4,0.87,1.12,1.4,1.7,2.16,2.92,2.6
-,2008-12-23,0.01,0.02,0.26,0.41,0.9,1.13,1.53,1.81,2.18,2.93,2.63
-,2008-12-24,0.0,None,0.23,0.4,0.9,1.14,1.54,1.83,2.2,2.94,2.63
-,2008-12-26,0.01,0.03,0.23,0.38,0.89,1.08,1.51,1.8,2.16,2.91,2.61
-,2008-12-29,0.04,0.06,0.25,0.36,0.78,0.96,1.45,1.75,2.13,2.94,2.63
-,2008-12-30,0.11,0.1,0.26,0.34,0.75,0.94,1.47,1.76,2.11,2.88,2.58
-,2008-12-31,0.11,0.11,0.27,0.37,0.76,1.0,1.55,1.87,2.25,3.05,2.69
-,2009-01-02,0.04,0.08,0.28,0.4,0.88,1.14,1.72,2.07,2.46,3.22,2.83
-,2009-01-05,0.05,0.14,0.32,0.43,0.78,1.08,1.67,2.07,2.49,3.37,3.0
-,2009-01-06,0.05,0.14,0.31,0.45,0.8,1.1,1.68,2.07,2.51,3.41,3.04
-,2009-01-07,0.03,0.11,0.29,0.44,0.82,1.15,1.66,2.02,2.52,3.41,3.05
-,2009-01-08,0.04,0.09,0.28,0.44,0.83,1.16,1.6,1.95,2.47,3.4,3.04
-,2009-01-09,0.03,0.07,0.28,0.43,0.75,1.11,1.51,1.88,2.43,3.39,3.04
-,2009-01-12,0.04,0.12,0.29,0.43,0.74,1.09,1.45,1.81,2.34,3.3,2.99
-,2009-01-13,0.02,0.11,0.29,0.43,0.76,1.07,1.44,1.8,2.33,3.3,3.0
-,2009-01-14,0.07,0.12,0.28,0.42,0.73,1.03,1.36,1.71,2.24,3.17,2.89
-,2009-01-15,0.03,0.11,0.29,0.42,0.73,1.01,1.36,1.71,2.23,3.16,2.86
-,2009-01-16,0.04,0.12,0.29,0.43,0.73,1.05,1.47,1.83,2.36,3.22,2.89
-,2009-01-20,0.04,0.13,0.3,0.42,0.73,1.06,1.48,1.85,2.4,3.3,2.97
-,2009-01-21,0.03,0.11,0.3,0.43,0.78,1.12,1.6,1.99,2.56,3.51,3.15
-,2009-01-22,0.03,0.1,0.29,0.42,0.75,1.11,1.61,2.02,2.62,3.61,3.25
-,2009-01-23,0.03,0.11,0.3,0.46,0.83,1.16,1.64,2.05,2.65,3.65,3.32
-,2009-01-26,0.02,0.14,0.34,0.47,0.85,1.21,1.67,2.09,2.7,3.71,3.39
-,2009-01-27,0.05,0.13,0.32,0.47,0.87,1.15,1.59,1.99,2.59,3.57,3.26
-,2009-01-28,0.08,0.19,0.33,0.48,0.89,1.22,1.7,2.1,2.71,3.73,3.44
-,2009-01-29,0.14,0.23,0.35,0.51,0.95,1.34,1.87,2.28,2.87,3.85,3.57
-,2009-01-30,0.15,0.24,0.36,0.51,0.94,1.32,1.85,2.27,2.87,3.86,3.58
-,2009-02-02,0.19,0.27,0.39,0.51,0.89,1.27,1.75,2.16,2.76,3.75,3.47
-,2009-02-03,0.28,0.32,0.4,0.53,0.96,1.37,1.88,2.28,2.89,3.88,3.64
-,2009-02-04,0.26,0.3,0.4,0.53,0.98,1.42,1.91,2.32,2.95,3.88,3.65
-,2009-02-05,0.21,0.29,0.43,0.54,0.98,1.4,1.89,2.32,2.95,3.86,3.63
-,2009-02-06,0.21,0.28,0.44,0.57,0.99,1.44,1.97,2.4,3.05,3.94,3.7
-,2009-02-09,0.22,0.32,0.47,0.6,1.05,1.5,1.99,2.42,3.07,3.91,3.69
-,2009-02-10,0.24,0.31,0.44,0.6,0.92,1.31,1.79,2.23,2.9,3.77,3.54
-,2009-02-11,0.22,0.3,0.46,0.6,0.93,1.32,1.76,2.17,2.78,3.69,3.45
-,2009-02-12,0.25,0.29,0.43,0.58,0.89,1.28,1.73,2.14,2.75,3.71,3.47
-,2009-02-13,0.23,0.29,0.46,0.61,0.97,1.37,1.88,2.29,2.89,3.91,3.68
-,2009-02-17,0.26,0.32,0.48,0.61,0.87,1.22,1.65,2.05,2.64,3.7,3.47
-,2009-02-18,0.23,0.31,0.5,0.64,0.97,1.33,1.81,2.18,2.74,3.77,3.54
-,2009-02-19,0.22,0.3,0.51,0.67,1.01,1.38,1.89,2.28,2.85,3.92,3.68
-,2009-02-20,0.19,0.27,0.48,0.64,0.96,1.3,1.81,2.21,2.78,3.82,3.56
-,2009-02-23,0.19,0.29,0.5,0.69,0.96,1.34,1.84,2.22,2.78,3.79,3.53
-,2009-02-24,0.22,0.32,0.49,0.71,1.03,1.37,1.89,2.26,2.8,3.77,3.49
-,2009-02-25,0.21,0.3,0.52,0.75,1.09,1.49,2.06,2.42,2.95,3.88,3.59
-,2009-02-26,0.18,0.27,0.47,0.73,1.08,1.5,2.07,2.72,2.98,3.93,3.66
-,2009-02-27,0.16,0.26,0.45,0.72,1.0,1.4,1.99,2.69,3.02,3.98,3.71
-,2009-03-02,0.17,0.28,0.45,0.67,0.89,1.28,1.86,2.54,2.91,3.89,3.64
-,2009-03-03,0.14,0.27,0.44,0.68,0.91,1.31,1.87,2.58,2.93,3.92,3.67
-,2009-03-04,0.15,0.26,0.44,0.71,0.97,1.4,1.97,2.67,3.01,3.96,3.69
-,2009-03-05,0.11,0.2,0.4,0.66,0.9,1.3,1.82,2.49,2.83,3.76,3.51
-,2009-03-06,0.09,0.21,0.39,0.67,0.91,1.34,1.83,2.49,2.83,3.74,3.5
-,2009-03-09,0.12,0.23,0.47,0.69,0.96,1.38,1.9,2.53,2.89,3.83,3.59
-,2009-03-10,0.14,0.24,0.47,0.71,1.01,1.46,1.99,2.63,2.99,3.94,3.7
-,2009-03-11,0.14,0.23,0.46,0.71,1.03,1.45,1.96,2.56,2.95,3.88,3.67
-,2009-03-12,0.11,0.22,0.45,0.7,1.03,1.42,1.92,2.5,2.89,3.82,3.63
-,2009-03-13,0.09,0.2,0.42,0.67,0.98,1.36,1.87,2.48,2.89,3.84,3.66
-,2009-03-16,0.11,0.24,0.46,0.69,1.0,1.39,1.91,2.55,2.97,3.93,3.76
-,2009-03-17,0.14,0.24,0.45,0.69,1.05,1.45,2.0,2.64,3.02,3.99,3.83
-,2009-03-18,0.15,0.21,0.4,0.6,0.82,1.14,1.54,2.11,2.51,3.65,3.57
-,2009-03-19,0.1,0.2,0.4,0.6,0.87,1.21,1.64,2.17,2.61,3.64,3.62
-,2009-03-20,0.09,0.22,0.41,0.6,0.89,1.23,1.66,2.18,2.65,3.67,3.65
-,2009-03-23,0.1,0.22,0.4,0.6,0.93,1.25,1.69,2.2,2.68,3.7,3.69
-,2009-03-24,0.05,0.21,0.42,0.62,0.93,1.24,1.7,2.22,2.68,3.64,3.6
-,2009-03-25,0.03,0.19,0.41,0.6,0.96,1.35,1.84,2.36,2.81,3.76,3.73
-,2009-03-26,0.02,0.15,0.39,0.57,0.9,1.29,1.8,2.34,2.76,3.69,3.66
-,2009-03-27,0.03,0.14,0.39,0.58,0.9,1.27,1.79,2.36,2.78,3.66,3.62
-,2009-03-30,0.05,0.18,0.42,0.58,0.84,1.2,1.72,2.31,2.73,3.64,3.6
-,2009-03-31,0.17,0.21,0.43,0.57,0.81,1.15,1.67,2.28,2.71,3.61,3.56
-,2009-04-01,0.18,0.22,0.41,0.58,0.83,1.16,1.65,2.25,2.68,3.54,3.51
-,2009-04-02,0.17,0.22,0.41,0.59,0.88,1.25,1.74,2.35,2.77,3.63,3.57
-,2009-04-03,0.16,0.21,0.42,0.6,0.96,1.36,1.87,2.51,2.91,3.77,3.7
-,2009-04-06,0.16,0.2,0.4,0.6,0.94,1.37,1.9,2.55,2.95,3.82,3.73
-,2009-04-07,0.17,0.2,0.39,0.6,0.91,1.33,1.87,2.51,2.93,3.79,3.72
-,2009-04-08,0.15,0.18,0.39,0.59,0.93,1.34,1.83,2.43,2.86,3.74,3.66
-,2009-04-09,0.13,0.18,0.39,0.6,0.96,1.36,1.9,2.49,2.96,3.85,3.76
-,2009-04-13,0.12,0.18,0.37,0.57,0.89,1.27,1.81,2.39,2.88,3.78,3.69
-,2009-04-14,0.09,0.17,0.35,0.54,0.86,1.21,1.71,2.31,2.8,3.73,3.64
-,2009-04-15,0.07,0.15,0.34,0.54,0.86,1.22,1.71,2.29,2.82,3.75,3.66
-,2009-04-16,0.02,0.13,0.33,0.54,0.91,1.27,1.79,2.36,2.86,3.81,3.72
-,2009-04-17,0.04,0.14,0.36,0.57,0.99,1.36,1.91,2.48,2.98,3.91,3.79
-,2009-04-20,0.04,0.14,0.34,0.54,0.93,1.27,1.82,2.39,2.88,3.8,3.69
-,2009-04-21,0.07,0.15,0.34,0.53,0.96,1.32,1.87,2.46,2.94,3.86,3.74
-,2009-04-22,0.08,0.14,0.32,0.52,1.0,1.36,1.92,2.5,2.98,3.93,3.82
-,2009-04-23,0.08,0.1,0.31,0.49,0.97,1.34,1.89,2.49,2.96,3.9,3.8
-,2009-04-24,0.07,0.1,0.31,0.5,0.99,1.38,1.96,2.56,3.03,3.99,3.89
-,2009-04-27,0.07,0.13,0.3,0.49,0.9,1.31,1.87,2.48,2.95,3.92,3.84
-,2009-04-28,0.05,0.13,0.31,0.52,0.95,1.39,1.97,2.58,3.05,4.03,3.97
-,2009-04-29,0.04,0.11,0.28,0.5,0.94,1.4,2.01,2.69,3.12,4.07,4.01
-,2009-04-30,0.04,0.14,0.29,0.49,0.91,1.38,2.02,2.7,3.16,4.1,4.05
-,2009-05-01,0.06,0.16,0.31,0.49,0.92,1.39,2.03,2.72,3.21,4.14,4.09
-,2009-05-04,0.14,0.19,0.33,0.52,0.94,1.4,2.03,2.7,3.19,4.11,4.06
-,2009-05-05,0.14,0.19,0.34,0.53,0.98,1.46,2.05,2.7,3.2,4.11,4.06
-,2009-05-06,0.14,0.19,0.32,0.51,0.96,1.43,2.06,2.7,3.18,4.12,4.09
-,2009-05-07,0.15,0.18,0.32,0.54,1.0,1.46,2.15,2.8,3.29,4.26,4.25
-,2009-05-08,0.15,0.19,0.31,0.55,1.0,1.44,2.15,2.78,3.29,4.25,4.28
-,2009-05-11,0.16,0.19,0.3,0.53,0.92,1.34,2.04,2.67,3.17,4.15,4.18
-,2009-05-12,0.16,0.19,0.3,0.54,0.9,1.34,2.02,2.67,3.17,4.13,4.16
-,2009-05-13,0.15,0.17,0.3,0.52,0.89,1.31,1.98,2.62,3.11,4.06,4.09
-,2009-05-14,0.1,0.16,0.28,0.5,0.87,1.3,1.98,2.62,3.1,4.04,4.06
-,2009-05-15,0.11,0.17,0.29,0.5,0.88,1.3,2.01,2.65,3.14,4.07,4.09
-,2009-05-18,0.12,0.19,0.3,0.5,0.93,1.36,2.09,2.73,3.22,4.16,4.18
-,2009-05-19,0.14,0.18,0.29,0.48,0.91,1.37,2.12,2.76,3.25,4.19,4.21
-,2009-05-20,0.18,0.18,0.28,0.44,0.87,1.31,2.05,2.72,3.19,4.11,4.14
-,2009-05-21,0.13,0.19,0.3,0.45,0.89,1.36,2.16,2.86,3.35,4.27,4.3
-,2009-05-22,0.13,0.18,0.3,0.49,0.92,1.39,2.23,2.96,3.45,4.36,4.38
-,2009-05-26,0.13,0.18,0.3,0.5,0.96,1.45,2.3,3.05,3.5,4.42,4.45
-,2009-05-27,0.18,0.17,0.29,0.49,0.96,1.5,2.43,3.22,3.71,4.58,4.59
-,2009-05-28,0.14,0.15,0.31,0.48,0.97,1.52,2.46,3.22,3.67,4.52,4.54
-,2009-05-29,0.14,0.14,0.3,0.47,0.92,1.42,2.34,3.06,3.47,4.34,4.34
-,2009-06-01,0.13,0.13,0.29,0.48,0.97,1.52,2.55,3.28,3.71,4.56,4.55
-,2009-06-02,0.06,0.14,0.27,0.46,0.96,1.52,2.52,3.26,3.65,4.51,4.5
-,2009-06-03,0.08,0.14,0.26,0.45,0.91,1.47,2.43,3.16,3.56,4.44,4.45
-,2009-06-04,0.08,0.14,0.28,0.47,0.96,1.54,2.56,3.31,3.72,4.58,4.58
-,2009-06-05,0.08,0.2,0.35,0.62,1.32,1.88,2.85,3.53,3.84,4.64,4.63
-,2009-06-08,0.08,0.19,0.35,0.62,1.42,2.0,2.95,3.6,3.91,4.66,4.65
-,2009-06-09,0.09,0.19,0.31,0.56,1.33,1.93,2.86,3.51,3.86,4.65,4.64
-,2009-06-10,0.11,0.18,0.31,0.55,1.38,2.0,2.93,3.59,3.98,4.75,4.76
-,2009-06-11,0.09,0.19,0.31,0.53,1.35,1.97,2.87,3.49,3.88,4.67,4.69
-,2009-06-12,0.08,0.19,0.29,0.52,1.3,1.91,2.81,3.46,3.81,4.63,4.65
-,2009-06-15,0.08,0.17,0.29,0.51,1.26,1.84,2.75,3.39,3.76,4.58,4.61
-,2009-06-16,0.09,0.17,0.3,0.51,1.23,1.79,2.7,3.32,3.67,4.47,4.48
-,2009-06-17,0.11,0.17,0.31,0.5,1.19,1.76,2.69,3.33,3.68,4.47,4.5
-,2009-06-18,0.12,0.18,0.34,0.52,1.28,1.88,2.86,3.51,3.86,4.62,4.63
-,2009-06-19,0.1,0.19,0.33,0.51,1.25,1.84,2.82,3.45,3.79,4.54,4.52
-,2009-06-22,0.12,0.2,0.34,0.5,1.17,1.77,2.75,3.37,3.72,4.45,4.45
-,2009-06-23,0.15,0.2,0.34,0.5,1.14,1.74,2.71,3.31,3.65,4.36,4.37
-,2009-06-24,0.1,0.19,0.32,0.5,1.19,1.79,2.74,3.39,3.72,4.43,4.44
-,2009-06-25,0.07,0.18,0.31,0.47,1.12,1.66,2.58,3.22,3.55,4.31,4.33
-,2009-06-26,0.07,0.2,0.31,0.45,1.1,1.63,2.53,3.18,3.52,4.28,4.3
-,2009-06-29,0.11,0.2,0.36,0.51,1.11,1.63,2.53,3.18,3.51,4.29,4.31
-,2009-06-30,0.17,0.19,0.35,0.56,1.11,1.64,2.54,3.19,3.53,4.3,4.32
-,2009-07-01,0.13,0.17,0.33,0.54,1.05,1.57,2.51,3.2,3.55,4.32,4.34
-,2009-07-02,0.15,0.17,0.32,0.49,0.98,1.52,2.43,3.14,3.51,4.28,4.32
-,2009-07-06,0.15,0.19,0.28,0.48,0.96,1.48,2.4,3.12,3.52,4.29,4.35
-,2009-07-07,0.16,0.19,0.28,0.46,0.98,1.52,2.36,3.08,3.47,4.25,4.31
-,2009-07-08,0.15,0.18,0.26,0.45,0.91,1.42,2.23,2.9,3.33,4.13,4.17
-,2009-07-09,0.16,0.19,0.27,0.47,0.94,1.46,2.33,3.01,3.44,4.26,4.31
-,2009-07-10,0.15,0.18,0.26,0.45,0.91,1.4,2.22,2.89,3.32,4.16,4.2
-,2009-07-13,0.15,0.18,0.28,0.47,0.92,1.41,2.27,2.94,3.38,4.21,4.25
-,2009-07-14,0.15,0.18,0.28,0.47,0.97,1.48,2.37,3.05,3.5,4.35,4.38
-,2009-07-15,0.11,0.18,0.29,0.5,1.03,1.6,2.52,3.19,3.63,4.46,4.48
-,2009-07-16,0.15,0.19,0.28,0.47,1.0,1.54,2.46,3.13,3.59,4.43,4.45
-,2009-07-17,0.15,0.17,0.29,0.48,1.02,1.58,2.52,3.21,3.67,4.51,4.53
-,2009-07-20,0.15,0.19,0.28,0.47,0.99,1.54,2.46,3.14,3.61,4.45,4.47
-,2009-07-21,0.16,0.19,0.27,0.46,0.96,1.47,2.36,3.03,3.5,4.35,4.38
-,2009-07-22,0.15,0.19,0.28,0.47,0.98,1.5,2.43,3.11,3.58,4.42,4.45
-,2009-07-23,0.15,0.19,0.29,0.49,1.08,1.62,2.6,3.28,3.72,4.55,4.58
-,2009-07-24,0.15,0.18,0.29,0.47,1.05,1.59,2.57,3.25,3.7,4.53,4.55
-,2009-07-27,0.15,0.19,0.27,0.49,1.08,1.63,2.63,3.31,3.75,4.6,4.62
-,2009-07-28,0.14,0.19,0.26,0.49,1.12,1.66,2.63,3.3,3.72,4.54,4.56
-,2009-07-29,0.14,0.19,0.26,0.5,1.17,1.72,2.69,3.31,3.69,4.49,4.5
-,2009-07-30,0.14,0.18,0.27,0.48,1.19,1.73,2.66,3.31,3.67,4.44,4.44
-,2009-07-31,0.14,0.18,0.26,0.48,1.13,1.62,2.53,3.14,3.52,4.29,4.31
-,2009-08-03,0.15,0.19,0.28,0.48,1.18,1.72,2.66,3.3,3.66,4.4,4.42
-,2009-08-04,0.15,0.18,0.28,0.47,1.2,1.75,2.68,3.32,3.7,4.44,4.45
-,2009-08-05,0.15,0.18,0.29,0.49,1.23,1.78,2.73,3.4,3.8,4.54,4.57
-,2009-08-06,0.15,0.17,0.28,0.48,1.22,1.77,2.73,3.39,3.79,4.51,4.53
-,2009-08-07,0.14,0.19,0.3,0.52,1.32,1.87,2.84,3.5,3.89,4.59,4.61
-,2009-08-10,0.15,0.19,0.29,0.49,1.24,1.79,2.75,3.4,3.8,4.49,4.52
-,2009-08-11,0.14,0.18,0.28,0.48,1.21,1.78,2.69,3.32,3.71,4.4,4.44
-,2009-08-12,0.14,0.17,0.28,0.47,1.18,1.76,2.7,3.35,3.72,4.49,4.53
-,2009-08-13,0.1,0.17,0.28,0.45,1.12,1.66,2.58,3.22,3.59,4.37,4.44
-,2009-08-14,0.1,0.18,0.26,0.44,1.07,1.61,2.51,3.17,3.55,4.33,4.41
-,2009-08-17,0.11,0.18,0.27,0.45,1.04,1.54,2.43,3.09,3.48,4.26,4.33
-,2009-08-18,0.14,0.18,0.27,0.43,1.06,1.57,2.48,3.13,3.51,4.29,4.35
-,2009-08-19,0.1,0.17,0.25,0.43,1.01,1.52,2.43,3.07,3.45,4.23,4.28
-,2009-08-20,0.11,0.17,0.26,0.42,1.03,1.53,2.43,3.06,3.42,4.18,4.24
-,2009-08-21,0.11,0.17,0.26,0.45,1.13,1.65,2.58,3.21,3.56,4.32,4.36
-,2009-08-24,0.11,0.17,0.26,0.44,1.05,1.57,2.5,3.13,3.48,4.22,4.27
-,2009-08-25,0.12,0.17,0.26,0.47,1.05,1.56,2.48,3.1,3.45,4.17,4.22
-,2009-08-26,0.11,0.15,0.25,0.45,1.06,1.57,2.46,3.09,3.44,4.15,4.2
-,2009-08-27,0.11,0.15,0.26,0.46,1.04,1.58,2.48,3.12,3.47,4.19,4.23
-,2009-08-28,0.11,0.15,0.25,0.44,1.01,1.55,2.46,3.09,3.46,4.17,4.21
-,2009-08-31,0.11,0.15,0.24,0.43,0.97,1.49,2.39,3.03,3.4,4.14,4.18
-,2009-09-01,0.08,0.14,0.23,0.43,0.92,1.44,2.33,2.99,3.38,4.14,4.19
-,2009-09-02,0.09,0.14,0.22,0.41,0.89,1.39,2.26,2.91,3.29,4.04,4.09
-,2009-09-03,0.09,0.15,0.23,0.42,0.91,1.42,2.29,2.95,3.33,4.09,4.15
-,2009-09-04,0.09,0.14,0.23,0.42,0.94,1.46,2.36,3.06,3.45,4.21,4.27
-,2009-09-08,0.1,0.14,0.24,0.41,0.93,1.49,2.38,3.06,3.47,4.24,4.31
-,2009-09-09,0.09,0.14,0.22,0.4,0.93,1.48,2.38,3.07,3.48,4.26,4.33
-,2009-09-10,0.08,0.14,0.21,0.4,0.9,1.42,2.29,2.95,3.36,4.11,4.19
-,2009-09-11,0.08,0.14,0.21,0.39,0.9,1.42,2.29,2.93,3.34,4.1,4.18
-,2009-09-14,0.08,0.14,0.21,0.4,0.94,1.46,2.37,3.01,3.42,4.16,4.22
-,2009-09-15,0.05,0.13,0.21,0.39,0.96,1.49,2.41,3.07,3.47,4.21,4.27
-,2009-09-16,0.03,0.1,0.2,0.38,1.01,1.55,2.46,3.11,3.48,4.22,4.26
-,2009-09-17,0.03,0.1,0.2,0.4,0.98,1.51,2.41,3.04,3.42,4.14,4.19
-,2009-09-18,0.03,0.08,0.2,0.41,1.03,1.57,2.49,3.12,3.49,4.2,4.24
-,2009-09-21,0.05,0.11,0.2,0.4,1.02,1.56,2.47,3.11,3.49,4.2,4.23
-,2009-09-22,0.05,0.11,0.2,0.42,1.02,1.54,2.45,3.09,3.46,4.18,4.2
-,2009-09-23,0.05,0.11,0.2,0.41,0.96,1.49,2.4,3.05,3.44,4.18,4.21
-,2009-09-24,0.03,0.1,0.19,0.39,0.93,1.45,2.37,3.03,3.4,4.14,4.17
-,2009-09-25,0.03,0.1,0.2,0.41,0.98,1.49,2.36,2.98,3.34,4.07,4.1
-,2009-09-28,0.03,0.11,0.18,0.4,0.98,1.47,2.33,2.95,3.31,4.02,4.04
-,2009-09-29,0.07,0.13,0.19,0.41,1.0,1.48,2.34,2.94,3.31,4.02,4.03
-,2009-09-30,0.06,0.14,0.18,0.4,0.95,1.45,2.31,2.93,3.31,4.02,4.03
-,2009-10-01,0.03,0.1,0.15,0.37,0.87,1.36,2.2,2.82,3.21,3.95,3.97
-,2009-10-02,0.04,0.1,0.15,0.37,0.88,1.38,2.22,2.83,3.24,3.98,4.01
-,2009-10-05,0.04,0.08,0.15,0.36,0.88,1.38,2.21,2.82,3.24,3.98,4.01
-,2009-10-06,0.05,0.08,0.15,0.37,0.91,1.43,2.25,2.85,3.27,4.03,4.07
-,2009-10-07,0.06,0.09,0.14,0.34,0.87,1.35,2.16,2.77,3.21,3.96,3.99
-,2009-10-08,0.03,0.06,0.15,0.35,0.9,1.4,2.22,2.83,3.27,4.05,4.09
-,2009-10-09,0.04,0.07,0.16,0.38,0.98,1.5,2.36,2.98,3.4,4.2,4.22
-,2009-10-13,0.04,0.07,0.15,0.35,0.91,1.42,2.28,2.9,3.34,4.14,4.16
-,2009-10-14,0.05,0.07,0.15,0.35,0.96,1.47,2.36,3.01,3.45,4.26,4.28
-,2009-10-15,0.06,0.07,0.15,0.36,0.97,1.5,2.41,3.05,3.49,4.29,4.31
-,2009-10-16,0.06,0.07,0.17,0.36,0.97,1.49,2.37,2.99,3.43,4.22,4.24
-,2009-10-19,0.06,0.08,0.18,0.38,0.99,1.5,2.36,2.98,3.41,4.19,4.21
-,2009-10-20,0.05,0.08,0.17,0.39,0.95,1.44,2.3,2.93,3.35,4.14,4.16
-,2009-10-21,0.05,0.07,0.17,0.4,1.0,1.51,2.38,3.01,3.42,4.2,4.22
-,2009-10-22,0.02,0.06,0.15,0.38,0.97,1.5,2.39,3.03,3.44,4.22,4.24
-,2009-10-23,0.02,0.07,0.18,0.4,1.04,1.57,2.46,3.1,3.51,4.27,4.29
-,2009-10-26,0.04,0.08,0.18,0.41,1.06,1.61,2.53,3.17,3.59,4.35,4.37
-,2009-10-27,0.05,0.08,0.17,0.39,0.99,1.51,2.41,3.05,3.49,4.26,4.29
-,2009-10-28,0.04,0.07,0.17,0.39,0.95,1.47,2.37,3.01,3.44,4.22,4.25
-,2009-10-29,0.02,0.06,0.17,0.4,0.98,1.52,2.44,3.12,3.53,4.31,4.35
-,2009-10-30,0.01,0.05,0.16,0.37,0.9,1.43,2.31,2.98,3.41,4.19,4.23
-,2009-11-02,0.03,0.06,0.17,0.38,0.92,1.44,2.33,3.0,3.45,4.22,4.26
-,2009-11-03,0.04,0.06,0.17,0.38,0.92,1.46,2.36,3.05,3.5,4.29,4.34
-,2009-11-04,0.05,0.05,0.16,0.36,0.91,1.46,2.39,3.09,3.57,4.36,4.41
-,2009-11-05,0.06,0.04,0.16,0.36,0.9,1.44,2.35,3.06,3.57,4.36,4.41
-,2009-11-06,0.06,0.06,0.16,0.34,0.86,1.4,2.3,3.02,3.54,4.35,4.4
-,2009-11-09,0.06,0.07,0.17,0.34,0.87,1.4,2.31,3.01,3.52,4.34,4.4
-,2009-11-10,0.06,0.07,0.16,0.33,0.85,1.39,2.31,3.01,3.5,4.36,4.41
-,2009-11-12,0.06,0.07,0.16,0.32,0.82,1.36,2.28,2.98,3.45,4.33,4.41
-,2009-11-13,0.05,0.06,0.17,0.32,0.82,1.34,2.28,2.97,3.43,4.29,4.36
-,2009-11-16,0.05,0.07,0.17,0.31,0.78,1.28,2.19,2.87,3.33,4.18,4.26
-,2009-11-17,0.05,0.06,0.16,0.32,0.78,1.28,2.19,2.87,3.33,4.17,4.26
-,2009-11-18,0.04,0.04,0.15,0.29,0.77,1.27,2.21,2.9,3.36,4.21,4.29
-,2009-11-19,0.03,0.02,0.14,0.27,0.73,1.24,2.18,2.88,3.35,4.19,4.29
-,2009-11-20,0.04,0.02,0.13,0.27,0.75,1.25,2.2,2.9,3.36,4.2,4.3
-,2009-11-23,0.05,0.05,0.14,0.29,0.77,1.28,2.2,2.9,3.37,4.2,4.29
-,2009-11-24,0.06,0.05,0.14,0.28,0.73,1.22,2.15,2.82,3.32,4.16,4.25
-,2009-11-25,0.07,0.05,0.14,0.26,0.73,1.23,2.11,2.78,3.28,4.12,4.23
-,2009-11-27,0.06,0.03,0.14,0.26,0.68,1.15,2.03,2.71,3.21,4.07,4.21
-,2009-11-30,0.08,0.06,0.15,0.27,0.67,1.12,2.01,2.69,3.21,4.07,4.2
-,2009-12-01,0.09,0.06,0.15,0.26,0.67,1.14,2.03,2.74,3.28,4.14,4.26
-,2009-12-02,0.08,0.05,0.15,0.28,0.72,1.19,2.09,2.8,3.32,4.14,4.26
-,2009-12-03,0.09,0.06,0.16,0.3,0.74,1.23,2.14,2.87,3.39,4.23,4.33
-,2009-12-04,0.08,0.06,0.17,0.36,0.84,1.34,2.24,2.97,3.48,4.31,4.4
-,2009-12-07,0.07,0.04,0.16,0.32,0.78,1.26,2.19,2.92,3.44,4.29,4.4
-,2009-12-08,0.02,0.03,0.15,0.29,0.73,1.21,2.12,2.86,3.4,4.28,4.39
-,2009-12-09,0.01,0.03,0.14,0.31,0.76,1.23,2.15,2.89,3.45,4.31,4.41
-,2009-12-10,0.01,0.02,0.15,0.32,0.78,1.26,2.19,2.95,3.49,4.37,4.5
-,2009-12-11,0.01,0.03,0.16,0.35,0.83,1.3,2.26,3.02,3.55,4.39,4.49
-,2009-12-14,0.02,0.04,0.16,0.37,0.87,1.35,2.3,3.04,3.56,4.39,4.49
-,2009-12-15,0.02,0.05,0.17,0.41,0.88,1.38,2.35,3.08,3.6,4.42,4.52
-,2009-12-16,0.02,0.04,0.17,0.38,0.85,1.36,2.35,3.09,3.61,4.42,4.52
-,2009-12-17,0.01,0.04,0.15,0.35,0.77,1.27,2.24,2.97,3.5,4.31,4.42
-,2009-12-18,0.01,0.05,0.16,0.36,0.82,1.32,2.3,3.04,3.55,4.36,4.46
-,2009-12-21,0.01,0.08,0.17,0.4,0.89,1.42,2.43,3.18,3.69,4.47,4.56
-,2009-12-22,0.01,0.08,0.18,0.41,0.95,1.48,2.49,3.24,3.76,4.52,4.6
-,2009-12-23,0.01,0.07,0.17,0.41,0.96,1.51,2.51,3.26,3.77,4.54,4.61
-,2009-12-24,0.02,0.05,0.18,0.43,1.0,1.56,2.57,3.32,3.82,4.6,4.68
-,2009-12-28,0.03,0.11,0.2,0.47,1.09,1.63,2.62,3.34,3.85,4.61,4.69
-,2009-12-29,0.02,0.1,0.2,0.47,1.09,1.64,2.62,3.33,3.82,4.57,4.64
-,2009-12-30,0.02,0.05,0.19,0.45,1.08,1.65,2.61,3.34,3.8,4.54,4.61
-,2009-12-31,0.04,0.06,0.2,0.47,1.14,1.7,2.69,3.39,3.85,4.58,4.63
-,2010-01-04,0.05,0.08,0.18,0.45,1.09,1.66,2.65,3.36,3.85,4.6,4.65
-,2010-01-05,0.03,0.07,0.17,0.41,1.01,1.57,2.56,3.28,3.77,4.54,4.59
-,2010-01-06,0.03,0.06,0.15,0.4,1.01,1.6,2.6,3.33,3.85,4.63,4.7
-,2010-01-07,0.02,0.05,0.16,0.4,1.03,1.62,2.62,3.33,3.85,4.62,4.69
-,2010-01-08,0.02,0.05,0.15,0.37,0.96,1.56,2.57,3.31,3.83,4.61,4.7
-,2010-01-11,0.01,0.04,0.13,0.35,0.95,1.55,2.58,3.32,3.85,4.64,4.74
-,2010-01-12,0.02,0.05,0.14,0.34,0.92,1.5,2.49,3.22,3.74,4.52,4.62
-,2010-01-13,0.02,0.06,0.15,0.37,0.97,1.54,2.55,3.28,3.8,4.6,4.71
-,2010-01-14,0.02,0.05,0.14,0.34,0.94,1.49,2.51,3.23,3.76,4.52,4.63
-,2010-01-15,0.03,0.06,0.15,0.33,0.89,1.44,2.44,3.17,3.7,4.48,4.58
-,2010-01-19,0.03,0.06,0.14,0.33,0.93,1.48,2.48,3.2,3.73,4.49,4.6
-,2010-01-20,0.03,0.05,0.14,0.31,0.92,1.46,2.45,3.16,3.68,4.43,4.54
-,2010-01-21,0.02,0.06,0.14,0.31,0.87,1.41,2.38,3.09,3.62,4.38,4.5
-,2010-01-22,0.02,0.06,0.14,0.3,0.84,1.39,2.37,3.09,3.62,4.38,4.5
-,2010-01-25,0.02,0.06,0.14,0.3,0.86,1.4,2.39,3.12,3.66,4.42,4.55
-,2010-01-26,0.02,0.07,0.14,0.32,0.87,1.4,2.38,3.11,3.65,4.43,4.56
-,2010-01-27,0.01,0.08,0.16,0.33,0.9,1.46,2.43,3.14,3.66,4.42,4.55
-,2010-01-28,0.01,0.08,0.15,0.31,0.87,1.44,2.41,3.15,3.68,4.44,4.57
-,2010-01-29,0.02,0.08,0.15,0.3,0.82,1.38,2.34,3.08,3.63,4.38,4.51
-,2010-02-01,0.05,0.1,0.17,0.33,0.86,1.41,2.38,3.12,3.68,4.43,4.56
-,2010-02-02,0.04,0.1,0.17,0.33,0.86,1.41,2.37,3.11,3.67,4.42,4.55
-,2010-02-03,0.05,0.1,0.17,0.35,0.88,1.44,2.4,3.16,3.73,4.49,4.62
-,2010-02-04,0.04,0.09,0.16,0.32,0.8,1.34,2.29,3.06,3.62,4.39,4.53
-,2010-02-05,0.03,0.1,0.17,0.31,0.77,1.28,2.23,3.0,3.59,4.36,4.51
-,2010-02-08,0.04,0.12,0.17,0.32,0.79,1.3,2.26,3.03,3.62,4.38,4.52
-,2010-02-09,0.05,0.12,0.18,0.34,0.84,1.37,2.32,3.08,3.67,4.44,4.58
-,2010-02-10,0.06,0.11,0.19,0.38,0.91,1.44,2.39,3.14,3.72,4.51,4.65
-,2010-02-11,0.05,0.11,0.18,0.38,0.91,1.43,2.39,3.15,3.73,4.54,4.69
-,2010-02-12,0.04,0.1,0.18,0.35,0.84,1.38,2.35,3.11,3.69,4.52,4.66
-,2010-02-16,0.04,0.1,0.18,0.34,0.82,1.36,2.32,3.08,3.66,4.49,4.63
-,2010-02-17,0.07,0.1,0.18,0.35,0.87,1.42,2.4,3.16,3.74,4.56,4.7
-,2010-02-18,0.07,0.1,0.18,0.37,0.9,1.47,2.46,3.23,3.79,4.61,4.74
-,2010-02-19,0.06,0.11,0.2,0.39,0.95,1.51,2.48,3.24,3.78,4.58,4.71
-,2010-02-22,0.06,0.11,0.19,0.37,0.91,1.48,2.47,3.25,3.8,4.6,4.73
-,2010-02-23,0.08,0.12,0.2,0.36,0.87,1.42,2.37,3.13,3.69,4.49,4.63
-,2010-02-24,0.08,0.12,0.19,0.34,0.87,1.42,2.4,3.14,3.7,4.49,4.63
-,2010-02-25,0.09,0.13,0.19,0.32,0.82,1.38,2.33,3.09,3.64,4.44,4.58
-,2010-02-26,0.09,0.13,0.19,0.32,0.81,1.36,2.3,3.05,3.61,4.4,4.55
-,2010-03-01,0.09,0.13,0.19,0.32,0.8,1.34,2.28,3.04,3.61,4.41,4.56
-,2010-03-02,0.09,0.14,0.19,0.32,0.8,1.33,2.27,3.04,3.62,4.42,4.57
-,2010-03-03,0.09,0.14,0.19,0.33,0.82,1.34,2.27,3.04,3.63,4.43,4.58
-,2010-03-04,0.09,0.14,0.19,0.35,0.86,1.38,2.28,3.03,3.61,4.4,4.56
-,2010-03-05,0.11,0.15,0.2,0.38,0.91,1.43,2.35,3.1,3.69,4.49,4.64
-,2010-03-08,0.11,0.16,0.21,0.39,0.9,1.43,2.36,3.13,3.72,4.52,4.68
-,2010-03-09,0.12,0.16,0.21,0.37,0.89,1.43,2.34,3.11,3.71,4.53,4.68
-,2010-03-10,0.12,0.15,0.21,0.39,0.92,1.45,2.39,3.14,3.73,4.53,4.69
-,2010-03-11,0.12,0.16,0.22,0.4,0.97,1.5,2.43,3.16,3.73,4.51,4.66
-,2010-03-12,0.1,0.15,0.24,0.41,0.97,1.5,2.42,3.15,3.71,4.47,4.62
-,2010-03-15,0.12,0.17,0.24,0.4,0.96,1.49,2.42,3.15,3.71,4.48,4.63
-,2010-03-16,0.14,0.16,0.24,0.41,0.93,1.47,2.37,3.1,3.66,4.43,4.59
-,2010-03-17,0.13,0.15,0.23,0.41,0.95,1.47,2.38,3.1,3.65,4.41,4.56
-,2010-03-18,0.14,0.16,0.26,0.41,0.98,1.52,2.44,3.14,3.68,4.43,4.59
-,2010-03-19,0.13,0.16,0.25,0.42,1.02,1.56,2.48,3.16,3.7,4.41,4.58
-,2010-03-22,0.13,0.15,0.24,0.41,1.01,1.54,2.43,3.12,3.67,4.41,4.57
-,2010-03-23,0.11,0.14,0.23,0.4,1.02,1.55,2.44,3.13,3.69,4.43,4.6
-,2010-03-24,0.12,0.14,0.23,0.44,1.08,1.67,2.62,3.28,3.84,4.56,4.72
-,2010-03-25,0.12,0.14,0.25,0.44,1.1,1.69,2.65,3.37,3.91,4.63,4.77
-,2010-03-26,0.11,0.14,0.25,0.43,1.04,1.64,2.59,3.31,3.86,4.6,4.75
-,2010-03-29,0.11,0.15,0.24,0.42,1.04,1.65,2.6,3.32,3.88,4.61,4.76
-,2010-03-30,0.13,0.16,0.24,0.44,1.06,1.65,2.6,3.32,3.88,4.59,4.75
-,2010-03-31,0.15,0.16,0.24,0.41,1.02,1.6,2.55,3.28,3.84,4.55,4.72
-,2010-04-01,0.16,0.16,0.24,0.42,1.05,1.63,2.59,3.32,3.89,4.58,4.74
-,2010-04-02,0.15,0.16,0.26,0.46,1.11,1.7,2.67,3.4,3.96,4.65,4.81
-,2010-04-05,0.16,0.18,0.27,0.48,1.18,1.77,2.75,3.46,4.01,4.69,4.85
-,2010-04-06,0.17,0.17,0.26,0.49,1.14,1.74,2.71,3.42,3.98,4.68,4.84
-,2010-04-07,0.16,0.17,0.25,0.47,1.06,1.66,2.62,3.33,3.89,4.58,4.74
-,2010-04-08,0.16,0.17,0.24,0.46,1.09,1.68,2.64,3.36,3.91,4.6,4.75
-,2010-04-09,0.16,0.16,0.25,0.46,1.08,1.68,2.65,3.34,3.9,4.58,4.74
-,2010-04-12,0.15,0.16,0.24,0.46,1.07,1.65,2.6,3.29,3.87,4.54,4.7
-,2010-04-13,0.15,0.16,0.24,0.45,1.07,1.65,2.58,3.27,3.84,4.52,4.68
-,2010-04-14,0.15,0.16,0.24,0.45,1.07,1.65,2.61,3.31,3.88,4.57,4.72
-,2010-04-15,0.16,0.16,0.23,0.43,1.04,1.62,2.57,3.28,3.86,4.56,4.72
-,2010-04-16,0.15,0.16,0.24,0.41,0.98,1.56,2.49,3.2,3.79,4.5,4.67
-,2010-04-19,0.15,0.16,0.23,0.43,1.01,1.59,2.54,3.25,3.83,4.54,4.7
-,2010-04-20,0.14,0.16,0.24,0.42,1.05,1.62,2.56,3.25,3.82,4.51,4.67
-,2010-04-21,0.14,0.15,0.23,0.44,1.03,1.6,2.52,3.2,3.77,4.45,4.61
-,2010-04-22,0.15,0.16,0.24,0.45,1.07,1.64,2.57,3.26,3.8,4.48,4.65
-,2010-04-23,0.14,0.16,0.26,0.46,1.1,1.68,2.61,3.3,3.84,4.51,4.67
-,2010-04-26,0.14,0.16,0.25,0.47,1.09,1.67,2.6,3.28,3.83,4.5,4.67
-,2010-04-27,0.14,0.16,0.24,0.42,1.03,1.55,2.46,3.14,3.71,4.4,4.56
-,2010-04-28,0.14,0.16,0.24,0.43,1.03,1.61,2.53,3.23,3.8,4.47,4.63
-,2010-04-29,0.15,0.17,0.23,0.42,1.01,1.58,2.49,3.19,3.76,4.42,4.6
-,2010-04-30,0.14,0.16,0.25,0.41,0.97,1.51,2.43,3.12,3.69,4.36,4.53
-,2010-05-03,0.14,0.17,0.25,0.43,1.0,1.56,2.47,3.16,3.72,4.37,4.53
-,2010-05-04,0.15,0.16,0.24,0.43,0.96,1.49,2.38,3.07,3.63,4.27,4.43
-,2010-05-05,0.14,0.15,0.22,0.39,0.88,1.43,2.31,3.0,3.58,4.23,4.39
-,2010-05-06,0.06,0.11,0.16,0.34,0.75,1.27,2.13,2.83,3.41,4.03,4.19
-,2010-05-07,0.08,0.13,0.21,0.38,0.83,1.32,2.17,2.87,3.45,4.11,4.28
-,2010-05-10,0.13,0.16,0.22,0.39,0.87,1.4,2.27,2.98,3.57,4.23,4.41
-,2010-05-11,0.15,0.16,0.23,0.38,0.85,1.37,2.26,2.97,3.56,4.24,4.42
-,2010-05-12,0.16,0.16,0.22,0.4,0.89,1.4,2.29,3.01,3.56,4.29,4.47
-,2010-05-13,0.15,0.16,0.22,0.4,0.87,1.37,2.27,2.98,3.55,4.26,4.47
-,2010-05-14,0.15,0.16,0.22,0.34,0.79,1.28,2.16,2.87,3.44,4.13,4.32
-,2010-05-17,0.16,0.16,0.23,0.36,0.81,1.3,2.2,2.9,3.47,4.17,4.35
-,2010-05-18,0.17,0.17,0.23,0.35,0.76,1.23,2.11,2.82,3.38,4.08,4.26
-,2010-05-19,0.17,0.17,0.23,0.35,0.8,1.26,2.13,2.82,3.36,4.07,4.24
-,2010-05-20,0.17,0.17,0.22,0.34,0.76,1.2,2.04,2.71,3.25,3.96,4.13
-,2010-05-21,0.17,0.17,0.24,0.35,0.76,1.19,2.02,2.67,3.2,3.91,4.07
-,2010-05-24,0.16,0.17,0.23,0.35,0.77,1.21,2.04,2.69,3.23,3.96,4.12
-,2010-05-25,0.16,0.17,0.22,0.36,0.81,1.21,2.01,2.63,3.18,3.91,4.07
-,2010-05-26,0.16,0.17,0.23,0.37,0.82,1.28,2.06,2.68,3.21,3.94,4.11
-,2010-05-27,0.16,0.17,0.23,0.37,0.87,1.35,2.18,2.81,3.34,4.08,4.24
-,2010-05-28,0.15,0.16,0.22,0.34,0.76,1.26,2.1,2.75,3.31,4.05,4.22
-,2010-06-01,0.14,0.16,0.23,0.35,0.78,1.26,2.09,2.74,3.29,4.03,4.19
-,2010-06-02,0.13,0.16,0.22,0.38,0.82,1.3,2.14,2.81,3.35,4.08,4.24
-,2010-06-03,0.13,0.14,0.22,0.38,0.82,1.31,2.17,2.84,3.39,4.12,4.29
-,2010-06-04,0.12,0.14,0.22,0.34,0.72,1.17,1.98,2.65,3.2,3.95,4.13
-,2010-06-07,0.1,0.12,0.21,0.35,0.74,1.17,1.95,2.62,3.17,3.93,4.11
-,2010-06-08,0.1,0.12,0.19,0.34,0.74,1.21,1.98,2.63,3.18,3.92,4.1
-,2010-06-09,0.08,0.1,0.17,0.33,0.74,1.19,1.99,2.64,3.2,3.94,4.12
-,2010-06-10,0.06,0.1,0.18,0.34,0.79,1.27,2.12,2.78,3.33,4.06,4.25
-,2010-06-11,0.04,0.08,0.16,0.3,0.75,1.21,2.03,2.68,3.24,3.97,4.15
-,2010-06-14,0.02,0.07,0.15,0.31,0.77,1.23,2.07,2.73,3.28,4.02,4.2
-,2010-06-15,0.03,0.09,0.16,0.31,0.79,1.26,2.1,2.77,3.32,4.06,4.23
-,2010-06-16,0.06,0.1,0.17,0.3,0.75,1.22,2.06,2.73,3.27,4.0,4.18
-,2010-06-17,0.05,0.09,0.16,0.28,0.72,1.18,2.01,2.67,3.21,3.95,4.13
-,2010-06-18,0.04,0.11,0.17,0.3,0.74,1.2,2.04,2.7,3.24,3.97,4.15
-,2010-06-21,0.05,0.12,0.17,0.29,0.74,1.21,2.05,2.72,3.26,3.99,4.17
-,2010-06-22,0.08,0.13,0.18,0.29,0.71,1.15,1.98,2.64,3.18,3.92,4.1
-,2010-06-23,0.07,0.13,0.19,0.3,0.66,1.11,1.93,2.58,3.13,3.87,4.05
-,2010-06-24,0.07,0.13,0.19,0.29,0.67,1.1,1.93,2.59,3.14,3.91,4.09
-,2010-06-25,0.05,0.13,0.2,0.29,0.65,1.07,1.9,2.57,3.12,3.89,4.07
-,2010-06-28,0.07,0.17,0.22,0.3,0.62,1.03,1.83,2.49,3.05,3.82,4.01
-,2010-06-29,0.09,0.15,0.22,0.31,0.61,0.99,1.78,2.43,2.97,3.76,3.94
-,2010-06-30,0.17,0.18,0.22,0.32,0.61,1.0,1.79,2.42,2.97,3.74,3.91
-,2010-07-01,0.16,0.17,0.22,0.32,0.63,1.01,1.8,2.43,2.96,3.71,3.88
-,2010-07-02,0.16,0.17,0.22,0.31,0.63,1.04,1.82,2.46,3.0,3.77,3.94
-,2010-07-06,0.17,0.17,0.21,0.32,0.62,1.0,1.76,2.4,2.95,3.71,3.89
-,2010-07-07,0.17,0.16,0.2,0.31,0.63,1.01,1.79,2.45,3.0,3.78,3.96
-,2010-07-08,0.17,0.15,0.19,0.3,0.63,1.01,1.8,2.48,3.04,3.81,4.0
-,2010-07-09,0.16,0.16,0.2,0.3,0.63,1.03,1.85,2.52,3.07,3.85,4.04
-,2010-07-12,0.16,0.16,0.2,0.3,0.65,1.06,1.85,2.51,3.08,3.86,4.05
-,2010-07-13,0.16,0.15,0.2,0.3,0.67,1.09,1.9,2.57,3.15,3.92,4.1
-,2010-07-14,0.16,0.15,0.19,0.27,0.62,1.02,1.82,2.49,3.07,3.84,4.03
-,2010-07-15,0.16,0.15,0.2,0.27,0.61,0.98,1.76,2.43,3.0,3.77,3.97
-,2010-07-16,0.14,0.15,0.19,0.28,0.61,0.94,1.7,2.37,2.96,3.74,3.95
-,2010-07-19,0.15,0.17,0.2,0.28,0.61,0.95,1.73,2.4,2.99,3.78,3.99
-,2010-07-20,0.16,0.16,0.19,0.27,0.61,0.94,1.71,2.39,2.98,3.78,3.99
-,2010-07-21,0.16,0.16,0.19,0.27,0.58,0.91,1.66,2.32,2.9,3.68,3.89
-,2010-07-22,0.15,0.16,0.2,0.27,0.6,0.92,1.69,2.38,2.96,3.75,3.95
-,2010-07-23,0.15,0.16,0.2,0.27,0.6,0.94,1.75,2.43,3.02,3.81,4.01
-,2010-07-26,0.15,0.16,0.2,0.29,0.62,0.97,1.76,2.45,3.03,3.82,4.03
-,2010-07-27,0.16,0.15,0.21,0.3,0.65,1.02,1.82,2.51,3.08,3.88,4.08
-,2010-07-28,0.15,0.15,0.2,0.3,0.61,0.95,1.75,2.43,3.03,3.86,4.07
-,2010-07-29,0.15,0.15,0.2,0.3,0.59,0.92,1.7,2.4,3.03,3.86,4.08
-,2010-07-30,0.14,0.15,0.2,0.29,0.55,0.84,1.6,2.3,2.94,3.74,3.98
-,2010-08-02,0.14,0.16,0.2,0.28,0.56,0.85,1.64,2.35,2.99,3.82,4.06
-,2010-08-03,0.15,0.16,0.2,0.27,0.53,0.8,1.55,2.27,2.94,3.78,4.04
-,2010-08-04,0.15,0.16,0.2,0.28,0.56,0.86,1.62,2.33,2.98,3.81,4.07
-,2010-08-05,0.15,0.15,0.19,0.27,0.53,0.81,1.57,2.28,2.94,3.78,4.05
-,2010-08-06,0.14,0.15,0.19,0.25,0.5,0.78,1.51,2.21,2.86,3.71,4.0
-,2010-08-09,0.14,0.15,0.19,0.26,0.54,0.81,1.54,2.21,2.86,3.73,4.01
-,2010-08-10,0.15,0.15,0.19,0.25,0.52,0.78,1.46,2.14,2.79,3.7,4.0
-,2010-08-11,0.15,0.15,0.19,0.25,0.54,0.78,1.44,2.08,2.72,3.62,3.93
-,2010-08-12,0.15,0.16,0.18,0.25,0.55,0.81,1.48,2.11,2.74,3.63,3.94
-,2010-08-13,0.14,0.15,0.19,0.26,0.54,0.81,1.47,2.07,2.68,3.56,3.87
-,2010-08-16,0.15,0.16,0.19,0.25,0.51,0.76,1.4,2.0,2.58,3.42,3.72
-,2010-08-17,0.16,0.17,0.19,0.26,0.52,0.78,1.44,2.06,2.64,3.47,3.77
-,2010-08-18,0.16,0.16,0.19,0.25,0.51,0.77,1.46,2.06,2.64,3.44,3.73
-,2010-08-19,0.16,0.16,0.19,0.25,0.49,0.74,1.41,2.02,2.58,3.37,3.66
-,2010-08-20,0.15,0.15,0.19,0.26,0.49,0.78,1.47,2.07,2.62,3.38,3.67
-,2010-08-23,0.15,0.16,0.19,0.25,0.49,0.76,1.43,2.04,2.6,3.37,3.65
-,2010-08-24,0.17,0.16,0.2,0.27,0.5,0.72,1.36,1.95,2.5,3.28,3.57
-,2010-08-25,0.17,0.16,0.19,0.26,0.53,0.77,1.4,2.0,2.54,3.31,3.59
-,2010-08-26,0.17,0.16,0.19,0.25,0.51,0.77,1.38,1.97,2.5,3.25,3.53
-,2010-08-27,0.17,0.15,0.19,0.27,0.56,0.83,1.49,2.09,2.66,3.41,3.69
-,2010-08-30,0.16,0.14,0.19,0.26,0.5,0.75,1.39,1.98,2.54,3.3,3.6
-,2010-08-31,0.16,0.14,0.19,0.25,0.47,0.72,1.33,1.92,2.47,3.23,3.52
-,2010-09-01,0.16,0.13,0.19,0.25,0.5,0.75,1.41,2.02,2.58,3.35,3.65
-,2010-09-02,0.15,0.14,0.18,0.25,0.5,0.76,1.43,2.06,2.63,3.41,3.72
-,2010-09-03,0.15,0.14,0.19,0.25,0.52,0.81,1.49,2.14,2.72,3.49,3.79
-,2010-09-07,0.13,0.14,0.18,0.25,0.49,0.77,1.41,2.04,2.61,3.37,3.67
-,2010-09-08,0.1,0.14,0.19,0.24,0.52,0.8,1.46,2.09,2.66,3.42,3.72
-,2010-09-09,0.1,0.14,0.19,0.26,0.57,0.87,1.57,2.2,2.77,3.54,3.84
-,2010-09-10,0.1,0.14,0.19,0.27,0.58,0.88,1.59,2.24,2.81,3.58,3.88
-,2010-09-13,0.1,0.15,0.19,0.26,0.53,0.82,1.51,2.15,2.74,3.52,3.83
-,2010-09-14,0.11,0.15,0.2,0.26,0.5,0.77,1.43,2.09,2.68,3.48,3.79
-,2010-09-15,0.11,0.15,0.2,0.26,0.5,0.77,1.46,2.13,2.74,3.55,3.87
-,2010-09-16,0.12,0.16,0.2,0.25,0.48,0.77,1.48,2.17,2.77,3.61,3.92
-,2010-09-17,0.12,0.16,0.2,0.26,0.48,0.75,1.46,2.14,2.75,3.6,3.9
-,2010-09-20,0.12,0.17,0.2,0.26,0.47,0.73,1.43,2.1,2.72,3.57,3.87
-,2010-09-21,0.12,0.17,0.2,0.26,0.43,0.68,1.34,1.99,2.61,3.49,3.79
-,2010-09-22,0.12,0.16,0.19,0.25,0.44,0.68,1.33,1.96,2.56,3.43,3.74
-,2010-09-23,0.13,0.16,0.2,0.25,0.45,0.67,1.34,1.96,2.56,3.43,3.73
-,2010-09-24,0.09,0.15,0.19,0.25,0.45,0.69,1.37,2.01,2.62,3.5,3.79
-,2010-09-27,0.08,0.16,0.19,0.26,0.44,0.66,1.31,1.92,2.54,3.4,3.7
-,2010-09-28,0.08,0.16,0.2,0.26,0.37,0.64,1.25,1.85,2.48,3.35,3.66
-,2010-09-29,0.12,0.16,0.2,0.27,0.44,0.67,1.28,1.91,2.52,3.38,3.69
-,2010-09-30,0.14,0.16,0.19,0.27,0.42,0.64,1.27,1.91,2.53,3.38,3.69
-,2010-10-01,0.15,0.16,0.19,0.26,0.42,0.63,1.26,1.9,2.54,3.4,3.71
-,2010-10-04,0.15,0.13,0.19,0.26,0.41,0.62,1.23,1.86,2.5,3.39,3.71
-,2010-10-05,0.14,0.12,0.18,0.25,0.41,0.6,1.21,1.83,2.5,3.41,3.74
-,2010-10-06,0.14,0.13,0.17,0.24,0.38,0.57,1.16,1.77,2.41,3.34,3.67
-,2010-10-07,0.15,0.13,0.17,0.23,0.36,0.54,1.14,1.76,2.41,3.38,3.72
-,2010-10-08,0.14,0.12,0.16,0.21,0.35,0.54,1.11,1.75,2.41,3.39,3.75
-,2010-10-12,0.14,0.13,0.17,0.21,0.37,0.59,1.14,1.77,2.44,3.44,3.8
-,2010-10-13,0.14,0.13,0.18,0.22,0.37,0.57,1.13,1.77,2.46,3.48,3.84
-,2010-10-14,0.15,0.14,0.17,0.22,0.38,0.6,1.18,1.83,2.52,3.54,3.91
-,2010-10-15,0.14,0.14,0.17,0.22,0.37,0.59,1.2,1.88,2.59,3.62,3.98
-,2010-10-18,0.14,0.15,0.18,0.23,0.38,0.55,1.14,1.81,2.52,3.57,3.93
-,2010-10-19,0.14,0.14,0.18,0.22,0.37,0.54,1.11,1.79,2.5,3.53,3.9
-,2010-10-20,0.14,0.14,0.17,0.22,0.35,0.52,1.11,1.79,2.51,3.53,3.89
-,2010-10-21,0.13,0.13,0.18,0.22,0.37,0.52,1.15,1.85,2.57,3.59,3.95
-,2010-10-22,0.13,0.13,0.18,0.21,0.35,0.54,1.17,1.88,2.59,3.59,3.94
-,2010-10-25,0.13,0.14,0.18,0.23,0.37,0.55,1.2,1.89,2.59,3.56,3.91
-,2010-10-26,0.14,0.14,0.18,0.23,0.4,0.59,1.27,1.98,2.67,3.66,4.0
-,2010-10-27,0.14,0.14,0.18,0.23,0.4,0.64,1.34,2.06,2.75,3.72,4.06
-,2010-10-28,0.14,0.13,0.18,0.23,0.37,0.56,1.23,1.97,2.69,3.7,4.05
-,2010-10-29,0.14,0.12,0.17,0.22,0.34,0.51,1.17,1.89,2.63,3.64,3.99
-,2010-11-01,0.14,0.13,0.16,0.22,0.34,0.5,1.17,1.9,2.66,3.66,4.01
-,2010-11-02,0.13,0.13,0.16,0.22,0.34,0.51,1.15,1.87,2.63,3.58,3.93
-,2010-11-03,0.13,0.13,0.16,0.22,0.34,0.49,1.11,1.85,2.67,3.71,4.09
-,2010-11-04,0.13,0.13,0.17,0.21,0.33,0.45,1.04,1.73,2.53,3.62,4.04
-,2010-11-05,0.13,0.13,0.16,0.22,0.38,0.51,1.1,1.77,2.58,3.69,4.12
-,2010-11-08,0.12,0.13,0.16,0.22,0.41,0.59,1.13,1.78,2.6,3.7,4.12
-,2010-11-09,0.11,0.13,0.16,0.24,0.46,0.66,1.27,1.91,2.72,3.83,4.25
-,2010-11-10,0.12,0.13,0.16,0.24,0.44,0.63,1.23,1.84,2.65,3.83,4.25
-,2010-11-12,0.11,0.13,0.17,0.27,0.51,0.73,1.35,1.98,2.76,3.88,4.26
-,2010-11-15,0.12,0.14,0.19,0.29,0.53,0.81,1.51,2.16,2.92,4.01,4.38
-,2010-11-16,0.13,0.15,0.19,0.27,0.51,0.79,1.49,2.13,2.85,3.9,4.26
-,2010-11-17,0.13,0.14,0.19,0.26,0.5,0.77,1.49,2.16,2.89,3.95,4.31
-,2010-11-18,0.13,0.15,0.19,0.26,0.52,0.77,1.51,2.2,2.9,3.95,4.29
-,2010-11-19,0.12,0.14,0.19,0.27,0.52,0.78,1.54,2.2,2.88,3.91,4.25
-,2010-11-22,0.12,0.15,0.2,0.26,0.49,0.72,1.44,2.11,2.8,3.85,4.2
-,2010-11-23,0.15,0.15,0.2,0.26,0.45,0.69,1.4,2.08,2.77,3.82,4.18
-,2010-11-24,0.16,0.16,0.2,0.28,0.53,0.81,1.56,2.24,2.93,3.96,4.29
-,2010-11-26,0.16,0.16,0.21,0.28,0.51,0.78,1.53,2.21,2.87,3.88,4.21
-,2010-11-29,0.16,0.18,0.21,0.28,0.52,0.77,1.51,2.19,2.84,3.83,4.16
-,2010-11-30,0.18,0.17,0.21,0.27,0.45,0.72,1.47,2.16,2.81,3.8,4.12
-,2010-12-01,0.17,0.16,0.2,0.28,0.53,0.84,1.64,2.33,2.97,3.95,4.24
-,2010-12-02,0.16,0.16,0.19,0.29,0.55,0.86,1.68,2.37,3.01,3.97,4.27
-,2010-12-03,0.14,0.14,0.19,0.26,0.49,0.8,1.64,2.36,3.03,4.01,4.32
-,2010-12-06,0.14,0.15,0.19,0.26,0.42,0.73,1.53,2.26,2.95,3.94,4.25
-,2010-12-07,0.08,0.14,0.19,0.28,0.54,0.87,1.74,2.51,3.15,4.11,4.39
-,2010-12-08,0.08,0.15,0.18,0.3,0.63,0.97,1.87,2.62,3.26,4.18,4.45
-,2010-12-09,0.09,0.14,0.18,0.3,0.64,0.99,1.9,2.62,3.23,4.15,4.41
-,2010-12-10,0.09,0.13,0.18,0.29,0.64,1.03,1.98,2.7,3.32,4.19,4.43
-,2010-12-13,0.1,0.15,0.19,0.29,0.61,0.98,1.91,2.64,3.29,4.15,4.39
-,2010-12-14,0.09,0.15,0.2,0.3,0.66,1.06,2.08,2.84,3.49,4.32,4.54
-,2010-12-15,0.08,0.14,0.2,0.3,0.68,1.08,2.11,2.88,3.53,4.37,4.59
-,2010-12-16,0.08,0.13,0.19,0.31,0.66,1.05,2.06,2.81,3.47,4.32,4.57
-,2010-12-17,0.05,0.11,0.18,0.3,0.61,0.99,1.97,2.69,3.33,4.19,4.41
-,2010-12-20,0.04,0.14,0.19,0.3,0.62,1.01,1.99,2.72,3.36,4.21,4.44
-,2010-12-21,0.09,0.14,0.19,0.3,0.63,1.02,1.99,2.71,3.35,4.21,4.44
-,2010-12-22,0.07,0.14,0.2,0.3,0.65,1.05,2.02,2.74,3.36,4.23,4.45
-,2010-12-23,0.07,0.14,0.19,0.3,0.67,1.1,2.09,2.8,3.41,4.26,4.47
-,2010-12-27,0.06,0.17,0.22,0.32,0.71,1.11,2.08,2.76,3.36,4.2,4.42
-,2010-12-28,0.08,0.15,0.21,0.31,0.75,1.17,2.18,2.89,3.5,4.33,4.53
-,2010-12-29,0.05,0.13,0.2,0.3,0.64,1.05,2.03,2.75,3.35,4.19,4.41
-,2010-12-30,0.05,0.12,0.2,0.29,0.66,1.07,2.06,2.76,3.38,4.21,4.43
-,2010-12-31,0.07,0.12,0.19,0.29,0.61,1.02,2.01,2.71,3.3,4.13,4.34
-,2011-01-03,0.11,0.15,0.19,0.29,0.61,1.03,2.02,2.74,3.36,4.18,4.39
-,2011-01-04,0.12,0.14,0.19,0.28,0.63,1.04,2.01,2.72,3.36,4.21,4.44
-,2011-01-05,0.13,0.14,0.19,0.31,0.71,1.16,2.14,2.86,3.5,4.34,4.55
-,2011-01-06,0.13,0.15,0.18,0.3,0.68,1.11,2.09,2.8,3.44,4.31,4.53
-,2011-01-07,0.13,0.14,0.18,0.29,0.6,1.02,1.96,2.69,3.34,4.25,4.48
-,2011-01-10,0.14,0.15,0.18,0.29,0.59,0.99,1.93,2.65,3.32,4.23,4.47
-,2011-01-11,0.15,0.15,0.19,0.28,0.6,1.03,1.98,2.7,3.37,4.26,4.49
-,2011-01-12,0.15,0.15,0.18,0.26,0.61,1.03,1.99,2.71,3.4,4.28,4.52
-,2011-01-13,0.15,0.15,0.18,0.26,0.59,1.0,1.93,2.65,3.34,4.24,4.5
-,2011-01-14,0.14,0.15,0.18,0.27,0.59,1.0,1.95,2.66,3.35,4.27,4.53
-,2011-01-18,0.15,0.16,0.19,0.26,0.6,1.0,1.97,2.7,3.39,4.31,4.56
-,2011-01-19,0.16,0.16,0.19,0.27,0.6,0.98,1.95,2.69,3.37,4.27,4.53
-,2011-01-20,0.15,0.16,0.19,0.27,0.65,1.07,2.06,2.81,3.47,4.36,4.6
-,2011-01-21,0.15,0.16,0.19,0.27,0.63,1.05,2.04,2.77,3.44,4.33,4.57
-,2011-01-24,0.15,0.16,0.18,0.28,0.65,1.05,2.03,2.76,3.43,4.31,4.55
-,2011-01-25,0.15,0.16,0.18,0.27,0.62,1.0,1.96,2.68,3.35,4.23,4.48
-,2011-01-26,0.15,0.16,0.18,0.27,0.62,1.05,2.03,2.76,3.45,4.34,4.59
-,2011-01-27,0.13,0.15,0.17,0.25,0.59,1.0,1.98,2.75,3.42,4.31,4.57
-,2011-01-28,0.13,0.15,0.15,0.24,0.54,0.96,1.92,2.66,3.36,4.26,4.53
-,2011-01-31,0.15,0.15,0.17,0.26,0.58,0.98,1.95,2.71,3.42,4.33,4.58
-,2011-02-01,0.16,0.15,0.18,0.27,0.61,1.04,2.02,2.79,3.48,4.37,4.62
-,2011-02-02,0.15,0.16,0.18,0.28,0.67,1.12,2.1,2.84,3.52,4.39,4.64
-,2011-02-03,0.14,0.14,0.18,0.29,0.71,1.19,2.18,2.92,3.58,4.43,4.67
-,2011-02-04,0.13,0.15,0.18,0.31,0.77,1.25,2.27,3.01,3.68,4.51,4.73
-,2011-02-07,0.13,0.16,0.18,0.31,0.78,1.28,2.29,3.03,3.68,4.5,4.71
-,2011-02-08,0.14,0.15,0.18,0.31,0.86,1.4,2.39,3.12,3.75,4.56,4.76
-,2011-02-09,0.11,0.14,0.18,0.3,0.81,1.34,2.33,3.05,3.65,4.49,4.71
-,2011-02-10,0.08,0.12,0.16,0.3,0.85,1.4,2.4,3.1,3.7,4.55,4.75
-,2011-02-11,0.08,0.12,0.16,0.3,0.85,1.4,2.38,3.05,3.64,4.49,4.71
-,2011-02-14,0.09,0.13,0.17,0.3,0.87,1.41,2.37,3.04,3.62,4.46,4.67
-,2011-02-15,0.11,0.13,0.17,0.3,0.84,1.39,2.35,3.03,3.61,4.45,4.66
-,2011-02-16,0.1,0.12,0.16,0.29,0.86,1.4,2.37,3.04,3.62,4.46,4.67
-,2011-02-17,0.08,0.09,0.15,0.27,0.8,1.33,2.3,2.99,3.58,4.44,4.66
-,2011-02-18,0.08,0.1,0.15,0.28,0.78,1.32,2.3,2.99,3.59,4.46,4.7
-,2011-02-22,0.1,0.12,0.16,0.28,0.74,1.22,2.16,2.85,3.46,4.35,4.6
-,2011-02-23,0.12,0.12,0.16,0.27,0.74,1.25,2.21,2.89,3.49,4.34,4.59
-,2011-02-24,0.13,0.13,0.16,0.26,0.73,1.24,2.19,2.87,3.46,4.29,4.54
-,2011-02-25,0.12,0.13,0.16,0.27,0.72,1.22,2.16,2.84,3.42,4.26,4.51
-,2011-02-28,0.13,0.15,0.18,0.25,0.69,1.18,2.13,2.82,3.42,4.25,4.49
-,2011-03-01,0.07,0.14,0.16,0.25,0.66,1.15,2.11,2.81,3.41,4.24,4.48
-,2011-03-02,0.12,0.13,0.17,0.26,0.69,1.18,2.16,2.86,3.46,4.3,4.54
-,2011-03-03,0.12,0.13,0.16,0.29,0.79,1.32,2.3,3.0,3.58,4.4,4.64
-,2011-03-04,0.11,0.12,0.16,0.26,0.68,1.2,2.17,2.88,3.49,4.34,4.6
-,2011-03-07,0.1,0.11,0.16,0.25,0.7,1.22,2.19,2.9,3.51,4.36,4.61
-,2011-03-08,0.07,0.11,0.16,0.26,0.73,1.27,2.22,2.93,3.56,4.41,4.66
-,2011-03-09,0.07,0.1,0.15,0.26,0.7,1.21,2.16,2.86,3.48,4.35,4.6
-,2011-03-10,0.04,0.08,0.14,0.25,0.65,1.13,2.05,2.74,3.37,4.25,4.53
-,2011-03-11,0.04,0.08,0.13,0.24,0.64,1.12,2.06,2.76,3.4,4.29,4.54
-,2011-03-14,0.05,0.09,0.14,0.22,0.61,1.07,2.0,2.7,3.36,4.25,4.52
-,2011-03-15,0.07,0.1,0.14,0.23,0.63,1.08,2.0,2.68,3.33,4.21,4.47
-,2011-03-16,0.06,0.1,0.14,0.21,0.58,0.98,1.87,2.56,3.22,4.11,4.38
-,2011-03-17,0.06,0.08,0.14,0.24,0.6,1.02,1.91,2.59,3.25,4.15,4.42
-,2011-03-18,0.06,0.07,0.14,0.23,0.61,1.05,1.96,2.64,3.28,4.17,4.43
-,2011-03-21,0.06,0.1,0.16,0.25,0.67,1.12,2.04,2.72,3.34,4.2,4.45
-,2011-03-22,0.07,0.1,0.16,0.25,0.68,1.14,2.07,2.73,3.34,4.19,4.44
-,2011-03-23,0.06,0.09,0.15,0.24,0.69,1.13,2.07,2.75,3.36,4.2,4.44
-,2011-03-24,0.04,0.09,0.17,0.26,0.72,1.19,2.14,2.82,3.42,4.25,4.48
-,2011-03-25,0.04,0.09,0.18,0.3,0.79,1.26,2.2,2.87,3.46,4.28,4.51
-,2011-03-28,0.04,0.11,0.18,0.3,0.81,1.29,2.23,2.89,3.47,4.28,4.51
-,2011-03-29,0.06,0.1,0.17,0.31,0.81,1.31,2.25,2.92,3.5,4.31,4.54
-,2011-03-30,0.03,0.1,0.17,0.3,0.8,1.28,2.21,2.87,3.47,4.29,4.52
-,2011-03-31,0.05,0.09,0.17,0.3,0.8,1.29,2.24,2.9,3.47,4.29,4.51
-,2011-04-01,0.03,0.07,0.15,0.27,0.8,1.31,2.24,2.9,3.46,4.27,4.48
-,2011-04-04,0.02,0.06,0.13,0.24,0.77,1.24,2.2,2.86,3.45,4.27,4.49
-,2011-04-05,0.05,0.07,0.15,0.3,0.84,1.33,2.28,2.93,3.5,4.3,4.51
-,2011-04-06,0.03,0.06,0.14,0.29,0.85,1.36,2.32,2.98,3.56,4.37,4.58
-,2011-04-07,0.03,0.04,0.12,0.27,0.81,1.31,2.29,2.97,3.58,4.41,4.63
-,2011-04-08,0.02,0.04,0.12,0.27,0.83,1.34,2.31,2.99,3.59,4.41,4.63
-,2011-04-11,0.02,0.05,0.12,0.26,0.85,1.35,2.31,2.98,3.59,4.42,4.64
-,2011-04-12,0.02,0.05,0.11,0.24,0.77,1.28,2.22,2.89,3.52,4.35,4.58
-,2011-04-13,0.03,0.06,0.11,0.23,0.75,1.26,2.19,2.86,3.49,4.33,4.55
-,2011-04-14,0.04,0.07,0.13,0.25,0.77,1.27,2.23,2.88,3.51,4.32,4.53
-,2011-04-15,0.04,0.07,0.12,0.24,0.71,1.2,2.14,2.81,3.43,4.25,4.47
-,2011-04-18,0.03,0.07,0.11,0.24,0.69,1.14,2.09,2.77,3.4,4.22,4.45
-,2011-04-19,0.04,0.06,0.11,0.24,0.68,1.13,2.09,2.76,3.39,4.2,4.43
-,2011-04-20,0.04,0.06,0.11,0.24,0.69,1.17,2.15,2.81,3.43,4.24,4.47
-,2011-04-21,0.03,0.06,0.11,0.23,0.68,1.16,2.14,2.79,3.42,4.24,4.47
-,2011-04-25,0.03,0.07,0.12,0.23,0.67,1.13,2.1,2.76,3.39,4.22,4.46
-,2011-04-26,0.02,0.07,0.11,0.22,0.65,1.09,2.05,2.71,3.34,4.16,4.39
-,2011-04-27,0.03,0.06,0.11,0.22,0.65,1.09,2.06,2.74,3.39,4.21,4.45
-,2011-04-28,0.02,0.04,0.1,0.23,0.62,1.03,2.0,2.69,3.34,4.18,4.42
-,2011-04-29,0.02,0.04,0.11,0.22,0.61,1.01,1.97,2.66,3.32,4.15,4.4
-,2011-05-02,0.02,0.05,0.1,0.22,0.61,1.01,1.96,2.66,3.31,4.14,4.38
-,2011-05-03,0.02,0.03,0.09,0.2,0.61,1.01,1.96,2.64,3.28,4.11,4.36
-,2011-05-04,0.02,0.03,0.07,0.19,0.6,1.0,1.95,2.61,3.25,4.08,4.33
-,2011-05-05,0.01,0.02,0.07,0.2,0.58,0.97,1.88,2.54,3.18,4.0,4.26
-,2011-05-06,0.02,0.02,0.07,0.18,0.57,0.96,1.87,2.54,3.19,4.03,4.29
-,2011-05-09,0.01,0.03,0.07,0.17,0.57,0.94,1.84,2.51,3.17,4.03,4.3
-,2011-05-10,0.02,0.03,0.07,0.19,0.59,1.03,1.91,2.57,3.23,4.07,4.34
-,2011-05-11,0.01,0.03,0.07,0.18,0.56,0.96,1.87,2.53,3.19,4.04,4.31
-,2011-05-12,0.01,0.02,0.07,0.18,0.57,0.98,1.89,2.56,3.22,4.07,4.37
-,2011-05-13,0.01,0.03,0.08,0.19,0.57,0.96,1.86,2.53,3.18,4.03,4.32
-,2011-05-16,0.02,0.04,0.07,0.18,0.54,0.93,1.83,2.5,3.15,3.99,4.28
-,2011-05-17,0.03,0.04,0.07,0.19,0.55,0.91,1.8,2.47,3.12,3.94,4.23
-,2011-05-18,0.03,0.05,0.08,0.19,0.58,0.97,1.87,2.53,3.18,4.0,4.29
-,2011-05-19,0.02,0.05,0.1,0.19,0.55,0.94,1.85,2.53,3.17,4.01,4.3
-,2011-05-20,0.03,0.05,0.1,0.18,0.55,0.92,1.82,2.5,3.15,4.0,4.3
-,2011-05-23,0.03,0.06,0.1,0.2,0.55,0.91,1.8,2.47,3.13,3.97,4.27
-,2011-05-24,0.04,0.06,0.11,0.2,0.56,0.91,1.81,2.47,3.12,3.96,4.26
-,2011-05-25,0.04,0.06,0.1,0.18,0.54,0.9,1.81,2.47,3.13,3.99,4.28
-,2011-05-26,0.04,0.05,0.1,0.18,0.48,0.83,1.72,2.4,3.07,3.93,4.23
-,2011-05-27,0.04,0.05,0.11,0.18,0.48,0.81,1.71,2.39,3.07,3.94,4.24
-,2011-05-31,0.04,0.06,0.12,0.18,0.45,0.79,1.68,2.37,3.05,3.91,4.22
-,2011-06-01,0.04,0.05,0.11,0.18,0.44,0.74,1.6,2.28,2.96,3.83,4.15
-,2011-06-02,0.04,0.04,0.11,0.19,0.45,0.78,1.65,2.34,3.04,3.92,4.25
-,2011-06-03,0.04,0.04,0.1,0.18,0.42,0.75,1.6,2.28,2.99,3.9,4.22
-,2011-06-06,0.03,0.05,0.1,0.18,0.43,0.74,1.6,2.29,3.01,3.92,4.25
-,2011-06-07,0.01,0.05,0.11,0.18,0.39,0.74,1.59,2.29,3.01,3.94,4.27
-,2011-06-08,0.01,0.04,0.11,0.18,0.39,0.68,1.52,2.24,2.98,3.88,4.2
-,2011-06-09,0.02,0.05,0.1,0.19,0.43,0.73,1.6,2.3,3.01,3.91,4.22
-,2011-06-10,0.02,0.05,0.1,0.19,0.41,0.71,1.58,2.28,2.99,3.87,4.18
-,2011-06-13,0.02,0.05,0.11,0.18,0.4,0.72,1.59,2.3,3.0,3.89,4.2
-,2011-06-14,0.03,0.05,0.11,0.19,0.45,0.79,1.7,2.41,3.11,4.0,4.3
-,2011-06-15,0.02,0.05,0.11,0.19,0.38,0.68,1.55,2.26,2.98,3.89,4.19
-,2011-06-16,0.02,0.05,0.11,0.18,0.38,0.68,1.52,2.22,2.93,3.84,4.16
-,2011-06-17,0.02,0.04,0.1,0.17,0.38,0.68,1.53,2.23,2.94,3.86,4.19
-,2011-06-20,0.02,0.03,0.1,0.18,0.38,0.68,1.55,2.25,2.97,3.87,4.19
-,2011-06-21,0.01,0.03,0.1,0.18,0.4,0.69,1.57,2.27,2.99,3.9,4.21
-,2011-06-22,0.01,0.02,0.09,0.16,0.39,0.68,1.58,2.29,3.01,3.91,4.22
-,2011-06-23,0.01,0.01,0.07,0.15,0.35,0.62,1.48,2.19,2.93,3.84,4.17
-,2011-06-24,0.01,0.02,0.07,0.16,0.35,0.57,1.4,2.13,2.88,3.83,4.17
-,2011-06-27,0.01,0.02,0.1,0.18,0.41,0.64,1.47,2.19,2.95,3.94,4.28
-,2011-06-28,0.01,0.03,0.11,0.21,0.48,0.75,1.62,2.33,3.05,4.01,4.33
-,2011-06-29,0.01,0.02,0.11,0.19,0.47,0.79,1.7,2.44,3.14,4.08,4.39
-,2011-06-30,0.01,0.03,0.1,0.19,0.45,0.81,1.76,2.5,3.18,4.09,4.38
-,2011-07-01,0.01,0.02,0.1,0.2,0.5,0.85,1.8,2.54,3.22,4.12,4.4
-,2011-07-05,0.01,0.02,0.08,0.19,0.44,0.77,1.7,2.46,3.16,4.09,4.39
-,2011-07-06,0.01,0.01,0.06,0.19,0.43,0.75,1.66,2.41,3.12,4.05,4.35
-,2011-07-07,0.03,0.03,0.07,0.2,0.49,0.83,1.74,2.48,3.17,4.08,4.37
-,2011-07-08,0.03,0.03,0.07,0.17,0.4,0.7,1.57,2.32,3.03,3.97,4.27
-,2011-07-11,0.02,0.03,0.07,0.17,0.37,0.64,1.49,2.22,2.94,3.88,4.2
-,2011-07-12,0.01,0.03,0.07,0.18,0.37,0.63,1.47,2.2,2.92,3.86,4.19
-,2011-07-13,0.01,0.01,0.05,0.16,0.37,0.62,1.45,2.18,2.92,3.85,4.17
-,2011-07-14,0.01,0.01,0.05,0.15,0.38,0.66,1.51,2.24,2.98,3.92,4.25
-,2011-07-15,0.02,0.02,0.05,0.15,0.37,0.62,1.46,2.19,2.94,3.92,4.26
-,2011-07-18,0.01,0.02,0.06,0.15,0.37,0.62,1.45,2.18,2.94,3.95,4.29
-,2011-07-19,0.02,0.03,0.07,0.17,0.39,0.63,1.45,2.17,2.91,3.86,4.19
-,2011-07-20,0.01,0.02,0.08,0.19,0.4,0.64,1.49,2.22,2.96,3.92,4.25
-,2011-07-21,0.04,0.05,0.09,0.2,0.4,0.69,1.56,2.3,3.03,3.98,4.31
-,2011-07-22,0.05,0.05,0.09,0.2,0.4,0.66,1.53,2.26,2.99,3.93,4.26
-,2011-07-25,0.05,0.05,0.1,0.2,0.42,0.69,1.55,2.29,3.03,3.98,4.31
-,2011-07-26,0.07,0.07,0.11,0.21,0.41,0.66,1.51,2.25,2.99,3.94,4.28
-,2011-07-27,0.08,0.08,0.12,0.21,0.44,0.71,1.56,2.28,3.01,3.95,4.29
-,2011-07-28,0.1,0.07,0.13,0.21,0.42,0.68,1.52,2.26,2.98,3.93,4.26
-,2011-07-29,0.16,0.1,0.16,0.2,0.36,0.55,1.35,2.09,2.82,3.77,4.12
-,2011-08-01,0.13,0.1,0.16,0.22,0.38,0.55,1.32,2.05,2.77,3.72,4.07
-,2011-08-02,0.05,0.06,0.13,0.17,0.33,0.5,1.23,1.94,2.66,3.59,3.93
-,2011-08-03,0.01,0.02,0.08,0.16,0.33,0.52,1.25,1.94,2.64,3.55,3.89
-,2011-08-04,0.01,0.02,0.05,0.12,0.27,0.44,1.12,1.78,2.47,3.37,3.7
-,2011-08-05,0.01,0.01,0.05,0.11,0.28,0.49,1.23,1.91,2.58,3.49,3.82
-,2011-08-08,0.02,0.05,0.07,0.12,0.27,0.45,1.11,1.75,2.4,3.31,3.68
-,2011-08-09,0.02,0.03,0.06,0.11,0.19,0.33,0.91,1.53,2.2,3.17,3.56
-,2011-08-10,0.02,0.02,0.06,0.09,0.19,0.33,0.93,1.52,2.17,3.08,3.54
-,2011-08-11,0.01,0.03,0.08,0.1,0.19,0.34,1.02,1.65,2.34,3.34,3.82
-,2011-08-12,0.01,0.02,0.07,0.11,0.2,0.32,0.96,1.56,2.24,3.24,3.72
-,2011-08-15,0.0,0.02,0.08,0.12,0.19,0.34,0.99,1.6,2.29,3.29,3.75
-,2011-08-16,0.02,0.03,0.07,0.12,0.2,0.33,0.95,1.54,2.23,3.23,3.67
-,2011-08-17,0.01,0.01,0.06,0.12,0.19,0.33,0.92,1.48,2.17,3.14,3.57
-,2011-08-18,0.01,0.01,0.05,0.1,0.2,0.33,0.9,1.43,2.08,3.02,3.45
-,2011-08-19,0.0,0.02,0.04,0.1,0.2,0.34,0.9,1.43,2.07,2.97,3.39
-,2011-08-22,0.01,0.01,0.04,0.09,0.22,0.37,0.94,1.47,2.1,3.0,3.42
-,2011-08-23,0.01,0.01,0.04,0.1,0.22,0.38,0.95,1.5,2.15,3.06,3.47
-,2011-08-24,0.02,0.02,0.04,0.11,0.23,0.41,1.05,1.62,2.29,3.23,3.63
-,2011-08-25,0.01,0.01,0.03,0.1,0.22,0.37,0.98,1.57,2.23,3.17,3.6
-,2011-08-26,0.0,0.01,0.02,0.09,0.2,0.33,0.94,1.52,2.19,3.13,3.54
-,2011-08-29,0.0,0.02,0.05,0.09,0.2,0.35,0.99,1.6,2.28,3.22,3.63
-,2011-08-30,0.01,0.01,0.05,0.09,0.2,0.33,0.94,1.52,2.19,3.12,3.53
-,2011-08-31,0.01,0.02,0.05,0.1,0.2,0.33,0.96,1.56,2.23,3.19,3.6
-,2011-09-01,0.02,0.02,0.05,0.1,0.19,0.31,0.9,1.49,2.15,3.1,3.51
-,2011-09-02,0.02,0.02,0.05,0.1,0.2,0.33,0.88,1.41,2.02,2.92,3.32
-,2011-09-06,0.02,0.02,0.07,0.13,0.21,0.33,0.88,1.4,1.98,2.86,3.26
-,2011-09-07,0.0,0.02,0.06,0.11,0.21,0.34,0.92,1.45,2.05,2.96,3.36
-,2011-09-08,0.01,0.02,0.07,0.12,0.19,0.33,0.88,1.41,2.0,2.92,3.32
-,2011-09-09,0.0,0.01,0.05,0.11,0.17,0.31,0.81,1.34,1.93,2.86,3.26
-,2011-09-12,0.01,0.01,0.05,0.11,0.21,0.35,0.87,1.38,1.94,2.84,3.24
-,2011-09-13,0.0,0.01,0.05,0.1,0.21,0.35,0.89,1.42,2.0,2.92,3.32
-,2011-09-14,0.0,0.01,0.03,0.09,0.19,0.35,0.91,1.45,2.03,2.92,3.32
-,2011-09-15,0.0,0.01,0.03,0.1,0.21,0.35,0.95,1.51,2.09,2.97,3.36
-,2011-09-16,0.01,0.01,0.02,0.09,0.18,0.33,0.94,1.5,2.08,2.96,3.34
-,2011-09-19,0.0,0.01,0.04,0.08,0.16,0.29,0.85,1.4,1.97,2.84,3.22
-,2011-09-20,0.0,0.01,0.03,0.09,0.18,0.3,0.85,1.39,1.95,2.82,3.2
-,2011-09-21,0.01,0.01,0.04,0.11,0.21,0.37,0.88,1.36,1.88,2.69,3.03
-,2011-09-22,0.0,0.0,0.03,0.1,0.2,0.34,0.79,1.24,1.72,2.48,2.78
-,2011-09-23,0.0,0.01,0.02,0.1,0.23,0.37,0.89,1.35,1.84,2.59,2.89
-,2011-09-26,0.0,0.02,0.03,0.1,0.25,0.39,0.92,1.41,1.91,2.69,2.99
-,2011-09-27,0.0,0.01,0.04,0.1,0.25,0.42,0.97,1.49,2.0,2.79,3.08
-,2011-09-28,0.0,0.02,0.04,0.12,0.27,0.42,0.99,1.5,2.03,2.82,3.1
-,2011-09-29,0.0,0.02,0.05,0.11,0.27,0.43,0.98,1.48,1.99,2.76,3.03
-,2011-09-30,0.02,0.02,0.06,0.13,0.25,0.42,0.96,1.43,1.92,2.66,2.9
-,2011-10-03,0.01,0.02,0.06,0.12,0.24,0.39,0.87,1.33,1.8,2.51,2.76
-,2011-10-04,0.01,0.01,0.04,0.11,0.25,0.4,0.9,1.35,1.81,2.53,2.77
-,2011-10-05,0.0,0.0,0.03,0.1,0.25,0.43,0.96,1.45,1.92,2.62,2.87
-,2011-10-06,0.01,0.01,0.03,0.09,0.29,0.46,1.01,1.52,2.01,2.71,2.96
-,2011-10-07,0.01,0.01,0.04,0.11,0.3,0.5,1.08,1.61,2.1,2.78,3.02
-,2011-10-11,0.01,0.02,0.05,0.12,0.32,0.54,1.14,1.68,2.18,2.87,3.11
-,2011-10-12,0.01,0.02,0.06,0.09,0.29,0.54,1.17,1.72,2.24,2.94,3.19
-,2011-10-13,0.02,0.02,0.05,0.11,0.29,0.51,1.11,1.67,2.19,2.9,3.15
-,2011-10-14,0.02,0.02,0.06,0.11,0.28,0.5,1.12,1.71,2.26,2.97,3.22
-,2011-10-17,0.02,0.04,0.06,0.12,0.28,0.48,1.08,1.65,2.18,2.88,3.13
-,2011-10-18,0.02,0.04,0.07,0.12,0.28,0.47,1.07,1.64,2.19,2.91,3.17
-,2011-10-19,0.01,0.03,0.06,0.11,0.28,0.46,1.05,1.62,2.18,2.9,3.17
-,2011-10-20,0.02,0.03,0.06,0.12,0.28,0.46,1.07,1.64,2.2,2.92,3.19
-,2011-10-21,0.01,0.02,0.05,0.12,0.3,0.46,1.08,1.66,2.23,2.98,3.26
-,2011-10-24,0.01,0.02,0.06,0.11,0.3,0.47,1.1,1.7,2.25,3.0,3.27
-,2011-10-25,0.01,0.01,0.06,0.11,0.26,0.43,1.01,1.6,2.14,2.86,3.13
-,2011-10-26,0.01,0.02,0.06,0.13,0.28,0.48,1.09,1.68,2.23,2.95,3.22
-,2011-10-27,0.02,0.02,0.07,0.14,0.31,0.53,1.2,1.83,2.42,3.18,3.45
-,2011-10-28,0.02,0.01,0.06,0.13,0.28,0.5,1.13,1.74,2.34,3.09,3.36
-,2011-10-31,0.02,0.01,0.06,0.12,0.25,0.41,0.99,1.58,2.17,2.89,3.16
-,2011-11-01,0.01,0.01,0.05,0.13,0.23,0.38,0.9,1.45,2.01,2.73,2.99
-,2011-11-02,0.01,0.01,0.04,0.11,0.23,0.37,0.89,1.44,2.03,2.75,3.03
-,2011-11-03,0.01,0.01,0.04,0.11,0.24,0.39,0.91,1.48,2.09,2.83,3.1
-,2011-11-04,0.01,0.01,0.03,0.11,0.22,0.37,0.88,1.45,2.06,2.81,3.09
-,2011-11-07,0.01,0.01,0.04,0.09,0.25,0.38,0.88,1.44,2.04,2.77,3.05
-,2011-11-08,0.01,0.01,0.03,0.1,0.25,0.39,0.92,1.5,2.1,2.84,3.13
-,2011-11-09,0.01,0.01,0.04,0.1,0.24,0.37,0.88,1.41,2.0,2.73,3.03
-,2011-11-10,0.01,0.01,0.03,0.1,0.24,0.38,0.9,1.45,2.04,2.8,3.12
-,2011-11-14,0.01,0.01,0.04,0.09,0.24,0.39,0.91,1.46,2.04,2.77,3.09
-,2011-11-15,0.01,0.01,0.05,0.11,0.26,0.4,0.93,1.48,2.06,2.79,3.1
-,2011-11-16,0.01,0.01,0.04,0.11,0.26,0.4,0.9,1.44,2.01,2.73,3.05
-,2011-11-17,0.01,0.02,0.04,0.1,0.27,0.4,0.88,1.41,1.96,2.66,2.98
-,2011-11-18,0.02,0.01,0.04,0.12,0.29,0.43,0.94,1.48,2.01,2.69,2.99
-,2011-11-21,0.02,0.02,0.05,0.11,0.27,0.41,0.92,1.45,1.97,2.65,2.96
-,2011-11-22,0.02,0.02,0.06,0.11,0.26,0.4,0.91,1.42,1.94,2.6,2.91
-,2011-11-23,0.02,0.02,0.06,0.12,0.26,0.4,0.88,1.38,1.89,2.53,2.82
-,2011-11-25,0.02,0.02,0.07,0.13,0.28,0.41,0.93,1.45,1.97,2.62,2.92
-,2011-11-28,0.02,0.03,0.07,0.13,0.26,0.39,0.91,1.44,1.97,2.63,2.93
-,2011-11-29,0.02,0.02,0.05,0.14,0.27,0.4,0.93,1.48,2.0,2.66,2.96
-,2011-11-30,0.02,0.01,0.06,0.12,0.25,0.41,0.96,1.53,2.08,2.77,3.06
-,2011-12-01,0.02,0.01,0.05,0.12,0.27,0.41,0.97,1.55,2.11,2.82,3.12
-,2011-12-02,0.02,0.02,0.06,0.12,0.25,0.39,0.92,1.49,2.05,2.74,3.03
-,2011-12-05,0.01,0.01,0.05,0.11,0.27,0.4,0.93,1.49,2.04,2.73,3.02
-,2011-12-06,0.0,0.01,0.04,0.11,0.25,0.41,0.94,1.52,2.08,2.74,3.09
-,2011-12-07,0.0,0.02,0.05,0.11,0.24,0.36,0.89,1.46,2.02,2.74,3.04
-,2011-12-08,0.0,0.01,0.04,0.1,0.22,0.35,0.86,1.41,1.99,2.7,3.0
-,2011-12-09,0.0,0.01,0.05,0.11,0.22,0.37,0.89,1.48,2.07,2.79,3.1
-,2011-12-12,0.0,0.01,0.05,0.1,0.24,0.36,0.87,1.45,2.03,2.75,3.06
-,2011-12-13,0.0,0.01,0.06,0.11,0.24,0.35,0.85,1.4,1.96,2.66,2.98
-,2011-12-14,0.0,0.01,0.05,0.12,0.25,0.36,0.86,1.38,1.92,2.59,2.91
-,2011-12-15,0.0,0.0,0.05,0.12,0.26,0.37,0.86,1.38,1.92,2.6,2.92
-,2011-12-16,0.0,0.0,0.04,0.11,0.24,0.35,0.81,1.32,1.86,2.54,2.86
-,2011-12-19,0.0,0.01,0.04,0.11,0.24,0.36,0.82,1.3,1.82,2.48,2.79
-,2011-12-20,0.0,0.01,0.04,0.12,0.26,0.39,0.88,1.39,1.94,2.61,2.93
-,2011-12-21,0.0,0.01,0.04,0.13,0.28,0.4,0.91,1.44,1.98,2.67,3.0
-,2011-12-22,0.0,0.01,0.03,0.12,0.28,0.41,0.91,1.43,1.97,2.67,2.99
-,2011-12-23,0.0,0.01,0.04,0.12,0.28,0.45,0.97,1.49,2.03,2.73,3.05
-,2011-12-27,0.01,0.02,0.06,0.12,0.3,0.45,0.96,1.49,2.02,2.72,3.04
-,2011-12-28,0.0,0.01,0.05,0.12,0.28,0.42,0.91,1.41,1.93,2.59,2.91
-,2011-12-29,0.0,0.02,0.07,0.12,0.28,0.41,0.88,1.38,1.91,2.58,2.9
-,2011-12-30,0.01,0.02,0.06,0.12,0.25,0.36,0.83,1.35,1.89,2.57,2.89
-,2012-01-03,0.01,0.02,0.06,0.12,0.27,0.4,0.89,1.41,1.97,2.67,2.98
-,2012-01-04,0.01,0.02,0.06,0.12,0.25,0.4,0.89,1.43,2.0,2.71,3.03
-,2012-01-05,0.01,0.02,0.07,0.11,0.27,0.4,0.88,1.43,2.02,2.74,3.06
-,2012-01-06,0.02,0.02,0.05,0.12,0.25,0.4,0.86,1.4,1.98,2.7,3.02
-,2012-01-09,0.01,0.01,0.05,0.11,0.26,0.38,0.85,1.39,1.98,2.7,3.02
-,2012-01-10,0.01,0.02,0.05,0.11,0.24,0.37,0.86,1.41,2.0,2.71,3.04
-,2012-01-11,0.01,0.02,0.05,0.11,0.24,0.34,0.82,1.34,1.93,2.63,2.96
-,2012-01-12,0.02,0.03,0.06,0.11,0.22,0.35,0.84,1.37,1.94,2.65,2.97
-,2012-01-13,0.02,0.03,0.06,0.1,0.24,0.34,0.8,1.32,1.89,2.59,2.91
-,2012-01-17,0.02,0.03,0.06,0.11,0.21,0.33,0.79,1.31,1.87,2.57,2.89
-,2012-01-18,0.02,0.03,0.07,0.11,0.24,0.35,0.82,1.34,1.92,2.63,2.96
-,2012-01-19,0.04,0.05,0.07,0.11,0.26,0.36,0.87,1.43,2.01,2.72,3.05
-,2012-01-20,0.03,0.05,0.07,0.11,0.26,0.38,0.91,1.47,2.05,2.78,3.1
-,2012-01-23,0.03,0.04,0.07,0.12,0.26,0.39,0.93,1.51,2.09,2.82,3.15
-,2012-01-24,0.02,0.04,0.07,0.12,0.24,0.39,0.92,1.49,2.08,2.82,3.15
-,2012-01-25,0.03,0.04,0.07,0.12,0.22,0.34,0.81,1.4,2.01,2.78,3.13
-,2012-01-26,0.04,0.05,0.08,0.12,0.22,0.31,0.77,1.34,1.96,2.74,3.1
-,2012-01-27,0.05,0.06,0.08,0.12,0.22,0.32,0.75,1.31,1.93,2.71,3.07
-,2012-01-30,0.05,0.05,0.08,0.12,0.22,0.31,0.73,1.27,1.87,2.64,2.99
-,2012-01-31,0.04,0.06,0.08,0.13,0.22,0.3,0.71,1.24,1.83,2.59,2.94
-,2012-02-01,0.05,0.06,0.09,0.13,0.23,0.31,0.72,1.27,1.87,2.65,3.01
-,2012-02-02,0.07,0.08,0.1,0.14,0.23,0.31,0.71,1.25,1.86,2.64,3.01
-,2012-02-03,0.06,0.08,0.1,0.14,0.23,0.33,0.78,1.35,1.97,2.76,3.13
-,2012-02-06,0.04,0.08,0.1,0.14,0.24,0.32,0.76,1.32,1.93,2.71,3.08
-,2012-02-07,0.06,0.08,0.11,0.14,0.25,0.35,0.82,1.39,2.0,2.78,3.14
-,2012-02-08,0.06,0.09,0.11,0.15,0.27,0.35,0.82,1.39,2.01,2.78,3.14
-,2012-02-09,0.06,0.09,0.12,0.15,0.27,0.38,0.86,1.43,2.04,2.83,3.2
-,2012-02-10,0.05,0.09,0.12,0.15,0.27,0.36,0.81,1.36,1.96,2.75,3.11
-,2012-02-13,0.06,0.11,0.14,0.15,0.29,0.4,0.85,1.4,1.99,2.78,3.14
-,2012-02-14,0.09,0.12,0.15,0.18,0.29,0.4,0.81,1.34,1.92,2.7,3.06
-,2012-02-15,0.09,0.11,0.13,0.18,0.29,0.38,0.81,1.34,1.93,2.72,3.09
-,2012-02-16,0.04,0.1,0.13,0.17,0.29,0.42,0.87,1.41,1.99,2.78,3.14
-,2012-02-17,0.03,0.09,0.13,0.18,0.29,0.42,0.88,1.43,2.01,2.8,3.16
-,2012-02-21,0.03,0.08,0.13,0.17,0.31,0.44,0.92,1.47,2.05,2.84,3.2
-,2012-02-22,0.07,0.09,0.13,0.17,0.29,0.42,0.88,1.41,2.01,2.79,3.15
-,2012-02-23,0.07,0.09,0.14,0.17,0.31,0.43,0.88,1.4,1.99,2.77,3.13
-,2012-02-24,0.08,0.1,0.14,0.18,0.31,0.43,0.89,1.41,1.98,2.75,3.1
-,2012-02-27,0.08,0.12,0.14,0.17,0.3,0.4,0.84,1.35,1.92,2.69,3.04
-,2012-02-28,0.1,0.1,0.14,0.18,0.3,0.41,0.84,1.36,1.94,2.71,3.07
-,2012-02-29,0.08,0.08,0.13,0.18,0.3,0.43,0.87,1.39,1.98,2.73,3.08
-,2012-03-01,0.07,0.08,0.13,0.18,0.3,0.43,0.89,1.44,2.03,2.8,3.15
-,2012-03-02,0.06,0.07,0.12,0.17,0.28,0.41,0.84,1.38,1.99,2.77,3.11
-,2012-03-05,0.07,0.08,0.14,0.17,0.31,0.43,0.87,1.4,2.0,2.78,3.13
-,2012-03-06,0.06,0.08,0.13,0.17,0.3,0.4,0.83,1.35,1.96,2.73,3.08
-,2012-03-07,0.06,0.08,0.14,0.18,0.3,0.42,0.85,1.37,1.98,2.76,3.12
-,2012-03-08,0.07,0.08,0.14,0.18,0.32,0.44,0.89,1.41,2.03,2.82,3.18
-,2012-03-09,0.06,0.09,0.13,0.18,0.33,0.46,0.9,1.43,2.04,2.83,3.19
-,2012-03-12,0.05,0.09,0.15,0.18,0.33,0.47,0.92,1.43,2.04,2.82,3.17
-,2012-03-13,0.06,0.08,0.15,0.2,0.35,0.51,0.99,1.52,2.14,2.92,3.26
-,2012-03-14,0.08,0.09,0.15,0.21,0.4,0.6,1.13,1.69,2.29,3.08,3.43
-,2012-03-15,0.08,0.08,0.15,0.21,0.37,0.56,1.11,1.67,2.29,3.08,3.41
-,2012-03-16,0.07,0.09,0.15,0.21,0.37,0.57,1.13,1.7,2.31,3.08,3.41
-,2012-03-19,0.07,0.1,0.15,0.21,0.39,0.6,1.2,1.77,2.39,3.14,3.48
-,2012-03-20,0.08,0.1,0.15,0.22,0.41,0.62,1.22,1.78,2.38,3.13,3.46
-,2012-03-21,0.09,0.09,0.15,0.21,0.39,0.58,1.15,1.71,2.31,3.06,3.38
-,2012-03-22,0.06,0.08,0.14,0.19,0.37,0.56,1.13,1.69,2.29,3.04,3.37
-,2012-03-23,0.06,0.08,0.14,0.19,0.37,0.55,1.1,1.66,2.25,2.99,3.31
-,2012-03-26,0.06,0.09,0.15,0.19,0.36,0.54,1.09,1.65,2.26,3.0,3.33
-,2012-03-27,0.07,0.09,0.14,0.18,0.33,0.5,1.04,1.59,2.2,2.96,3.29
-,2012-03-28,0.05,0.09,0.14,0.18,0.34,0.51,1.05,1.6,2.21,2.97,3.31
-,2012-03-29,0.02,0.07,0.14,0.18,0.33,0.5,1.01,1.57,2.18,2.93,3.27
-,2012-03-30,0.05,0.07,0.15,0.19,0.33,0.51,1.04,1.61,2.23,3.0,3.35
-,2012-04-02,0.05,0.08,0.14,0.18,0.33,0.5,1.03,1.6,2.22,3.0,3.35
-,2012-04-03,0.07,0.08,0.15,0.2,0.36,0.56,1.1,1.68,2.3,3.07,3.41
-,2012-04-04,0.08,0.08,0.14,0.19,0.35,0.53,1.05,1.62,2.25,3.02,3.37
-,2012-04-05,0.07,0.08,0.14,0.19,0.35,0.5,1.01,1.56,2.19,2.97,3.32
-,2012-04-06,0.06,0.07,0.14,0.19,0.32,0.45,0.89,1.42,2.07,2.85,3.21
-,2012-04-09,0.07,0.09,0.15,0.19,0.32,0.46,0.9,1.42,2.06,2.82,3.18
-,2012-04-10,0.08,0.09,0.15,0.19,0.28,0.42,0.85,1.37,2.01,2.77,3.13
-,2012-04-11,0.08,0.09,0.14,0.18,0.3,0.43,0.89,1.41,2.05,2.82,3.18
-,2012-04-12,0.08,0.09,0.14,0.18,0.29,0.43,0.9,1.44,2.08,2.85,3.22
-,2012-04-13,0.07,0.09,0.13,0.17,0.27,0.41,0.86,1.39,2.02,2.77,3.14
-,2012-04-16,0.07,0.08,0.14,0.18,0.27,0.42,0.85,1.37,2.0,2.75,3.12
-,2012-04-17,0.07,0.08,0.13,0.18,0.27,0.42,0.88,1.4,2.03,2.79,3.15
-,2012-04-18,0.05,0.07,0.13,0.18,0.27,0.4,0.86,1.38,2.0,2.76,3.13
-,2012-04-19,0.04,0.07,0.12,0.17,0.27,0.4,0.84,1.37,1.98,2.74,3.12
-,2012-04-20,0.04,0.08,0.13,0.18,0.29,0.4,0.86,1.38,1.99,2.75,3.12
-,2012-04-23,0.04,0.08,0.13,0.17,0.27,0.39,0.83,1.34,1.96,2.71,3.08
-,2012-04-24,0.07,0.09,0.14,0.18,0.27,0.4,0.86,1.37,2.0,2.75,3.12
-,2012-04-25,0.08,0.09,0.14,0.18,0.26,0.39,0.86,1.38,2.01,2.76,3.15
-,2012-04-26,0.09,0.09,0.15,0.18,0.26,0.39,0.83,1.36,1.98,2.74,3.13
-,2012-04-27,0.07,0.09,0.14,0.19,0.26,0.39,0.82,1.34,1.96,2.73,3.12
-,2012-04-30,0.07,0.1,0.15,0.2,0.27,0.38,0.82,1.33,1.95,2.73,3.12
-,2012-05-01,0.07,0.09,0.15,0.19,0.27,0.39,0.84,1.35,1.98,2.76,3.16
-,2012-05-02,0.06,0.08,0.15,0.18,0.27,0.39,0.82,1.33,1.96,2.72,3.11
-,2012-05-03,0.05,0.09,0.15,0.19,0.28,0.4,0.82,1.34,1.96,2.72,3.12
-,2012-05-04,0.05,0.07,0.14,0.18,0.27,0.37,0.78,1.28,1.91,2.67,3.07
-,2012-05-07,0.06,0.1,0.15,0.18,0.27,0.37,0.79,1.29,1.92,2.67,3.07
-,2012-05-08,0.08,0.09,0.15,0.18,0.27,0.36,0.77,1.26,1.88,2.63,3.03
-,2012-05-09,0.07,0.09,0.15,0.18,0.27,0.36,0.77,1.26,1.87,2.63,3.03
-,2012-05-10,0.08,0.1,0.15,0.18,0.27,0.37,0.79,1.28,1.89,2.64,3.07
-,2012-05-11,0.07,0.1,0.15,0.18,0.27,0.36,0.75,1.24,1.84,2.59,3.02
-,2012-05-14,0.07,0.1,0.15,0.19,0.29,0.37,0.73,1.2,1.78,2.53,2.95
-,2012-05-15,0.08,0.09,0.15,0.19,0.29,0.38,0.74,1.19,1.76,2.5,2.91
-,2012-05-16,0.08,0.1,0.15,0.2,0.3,0.4,0.75,1.19,1.76,2.48,2.9
-,2012-05-17,0.08,0.1,0.16,0.2,0.32,0.4,0.74,1.16,1.7,2.39,2.8
-,2012-05-18,0.06,0.08,0.15,0.2,0.32,0.42,0.75,1.16,1.71,2.4,2.8
-,2012-05-21,0.06,0.09,0.14,0.21,0.3,0.41,0.75,1.18,1.75,2.42,2.8
-,2012-05-22,0.07,0.09,0.14,0.21,0.3,0.41,0.78,1.2,1.79,2.48,2.88
-,2012-05-23,0.07,0.09,0.13,0.2,0.28,0.4,0.74,1.15,1.73,2.41,2.81
-,2012-05-24,0.08,0.1,0.14,0.21,0.29,0.42,0.77,1.2,1.77,2.46,2.86
-,2012-05-25,0.07,0.09,0.14,0.2,0.3,0.41,0.76,1.17,1.75,2.44,2.85
-,2012-05-29,0.06,0.09,0.14,0.2,0.3,0.42,0.76,1.17,1.74,2.44,2.85
-,2012-05-30,0.05,0.07,0.13,0.19,0.27,0.38,0.69,1.06,1.63,2.32,2.72
-,2012-05-31,0.03,0.07,0.14,0.18,0.27,0.35,0.67,1.03,1.59,2.27,2.67
-,2012-06-01,0.03,0.07,0.12,0.17,0.25,0.34,0.62,0.93,1.47,2.13,2.53
-,2012-06-04,0.04,0.08,0.13,0.18,0.25,0.35,0.68,1.01,1.53,2.17,2.56
-,2012-06-05,0.05,0.08,0.14,0.18,0.25,0.34,0.68,1.04,1.57,2.23,2.63
-,2012-06-06,0.05,0.09,0.13,0.18,0.26,0.37,0.73,1.11,1.66,2.34,2.73
-,2012-06-07,0.04,0.09,0.14,0.18,0.27,0.37,0.72,1.1,1.66,2.35,2.75
-,2012-06-08,0.04,0.09,0.14,0.19,0.28,0.39,0.71,1.09,1.65,2.36,2.77
-,2012-06-11,0.05,0.09,0.15,0.18,0.27,0.37,0.69,1.05,1.6,2.3,2.71
-,2012-06-12,0.06,0.1,0.15,0.19,0.3,0.41,0.75,1.12,1.67,2.37,2.77
-,2012-06-13,0.07,0.1,0.15,0.18,0.3,0.4,0.71,1.06,1.61,2.3,2.7
-,2012-06-14,0.08,0.11,0.15,0.18,0.3,0.41,0.73,1.1,1.64,2.33,2.73
-,2012-06-15,0.05,0.09,0.15,0.18,0.29,0.37,0.68,1.06,1.6,2.3,2.7
-,2012-06-18,0.06,0.1,0.15,0.18,0.29,0.38,0.69,1.06,1.59,2.28,2.67
-,2012-06-19,0.06,0.09,0.14,0.18,0.3,0.39,0.71,1.09,1.64,2.33,2.73
-,2012-06-20,0.06,0.09,0.16,0.2,0.32,0.41,0.74,1.12,1.65,2.34,2.72
-,2012-06-21,0.05,0.09,0.15,0.19,0.32,0.41,0.73,1.1,1.63,2.3,2.68
-,2012-06-22,0.05,0.09,0.15,0.19,0.31,0.42,0.76,1.15,1.69,2.37,2.75
-,2012-06-25,0.06,0.1,0.16,0.19,0.31,0.39,0.72,1.1,1.63,2.31,2.69
-,2012-06-26,0.07,0.1,0.15,0.21,0.31,0.42,0.75,1.12,1.66,2.34,2.71
-,2012-06-27,0.06,0.09,0.17,0.21,0.31,0.42,0.73,1.1,1.65,2.32,2.7
-,2012-06-28,0.02,0.09,0.17,0.22,0.31,0.4,0.69,1.06,1.6,2.28,2.67
-,2012-06-29,0.04,0.09,0.16,0.21,0.33,0.41,0.72,1.11,1.67,2.38,2.76
-,2012-07-02,0.06,0.1,0.15,0.21,0.3,0.39,0.67,1.04,1.61,2.3,2.69
-,2012-07-03,0.08,0.09,0.15,0.21,0.3,0.39,0.69,1.08,1.65,2.36,2.74
-,2012-07-05,0.07,0.08,0.15,0.19,0.28,0.39,0.68,1.05,1.62,2.34,2.72
-,2012-07-06,0.06,0.08,0.15,0.2,0.27,0.37,0.64,1.01,1.57,2.28,2.66
-,2012-07-09,0.06,0.09,0.14,0.2,0.27,0.36,0.63,0.98,1.53,2.24,2.62
-,2012-07-10,0.07,0.09,0.15,0.2,0.27,0.37,0.63,0.98,1.53,2.22,2.6
-,2012-07-11,0.07,0.1,0.15,0.2,0.27,0.36,0.64,0.99,1.54,2.22,2.6
-,2012-07-12,0.08,0.1,0.15,0.2,0.25,0.35,0.63,0.98,1.5,2.18,2.57
-,2012-07-13,0.08,0.1,0.15,0.2,0.25,0.34,0.63,0.99,1.52,2.2,2.58
-,2012-07-16,0.04,0.1,0.14,0.18,0.24,0.31,0.6,0.97,1.5,2.18,2.56
-,2012-07-17,0.08,0.1,0.14,0.18,0.25,0.32,0.62,0.99,1.53,2.22,2.59
-,2012-07-18,0.07,0.09,0.14,0.18,0.22,0.3,0.6,0.97,1.52,2.21,2.59
-,2012-07-19,0.06,0.09,0.14,0.17,0.22,0.31,0.62,0.99,1.54,2.24,2.61
-,2012-07-20,0.07,0.09,0.14,0.17,0.22,0.29,0.59,0.95,1.49,2.17,2.55
-,2012-07-23,0.07,0.1,0.14,0.17,0.22,0.28,0.57,0.93,1.47,2.15,2.52
-,2012-07-24,0.08,0.1,0.15,0.18,0.22,0.28,0.57,0.91,1.44,2.11,2.47
-,2012-07-25,0.08,0.1,0.14,0.17,0.22,0.28,0.56,0.91,1.43,2.11,2.46
-,2012-07-26,0.08,0.11,0.15,0.18,0.23,0.31,0.58,0.94,1.45,2.13,2.49
-,2012-07-27,0.07,0.11,0.15,0.17,0.25,0.34,0.65,1.04,1.58,2.27,2.63
-,2012-07-30,0.06,0.11,0.15,0.18,0.23,0.31,0.61,0.99,1.53,2.22,2.58
-,2012-07-31,0.07,0.11,0.14,0.16,0.23,0.3,0.6,0.98,1.51,2.21,2.56
-,2012-08-01,0.07,0.1,0.14,0.17,0.24,0.32,0.63,1.03,1.56,2.25,2.6
-,2012-08-02,0.04,0.09,0.14,0.17,0.24,0.31,0.61,0.98,1.51,2.2,2.55
-,2012-08-03,0.03,0.09,0.14,0.16,0.24,0.33,0.67,1.07,1.6,2.3,2.65
-,2012-08-06,0.05,0.1,0.14,0.16,0.24,0.33,0.65,1.05,1.59,2.29,2.65
-,2012-08-07,0.09,0.11,0.14,0.19,0.27,0.37,0.71,1.13,1.66,2.37,2.72
-,2012-08-08,0.09,0.11,0.14,0.19,0.29,0.38,0.73,1.14,1.68,2.39,2.75
-,2012-08-09,0.1,0.11,0.15,0.2,0.29,0.38,0.74,1.15,1.69,2.4,2.78
-,2012-08-10,0.1,0.1,0.14,0.18,0.27,0.36,0.71,1.11,1.65,2.37,2.74
-,2012-08-13,0.1,0.11,0.15,0.19,0.27,0.36,0.71,1.12,1.65,2.37,2.74
-,2012-08-14,0.11,0.11,0.15,0.19,0.27,0.39,0.75,1.18,1.73,2.45,2.82
-,2012-08-15,0.11,0.09,0.14,0.19,0.27,0.42,0.8,1.25,1.8,2.53,2.9
-,2012-08-16,0.1,0.09,0.14,0.2,0.29,0.42,0.83,1.28,1.83,2.57,2.96
-,2012-08-17,0.09,0.09,0.14,0.2,0.29,0.42,0.81,1.27,1.81,2.55,2.93
-,2012-08-20,0.09,0.11,0.14,0.19,0.29,0.41,0.8,1.26,1.82,2.55,2.93
-,2012-08-21,0.1,0.11,0.14,0.2,0.31,0.42,0.8,1.25,1.8,2.53,2.9
-,2012-08-22,0.1,0.11,0.13,0.19,0.26,0.37,0.71,1.16,1.71,2.44,2.82
-,2012-08-23,0.1,0.11,0.13,0.19,0.26,0.36,0.71,1.13,1.68,2.41,2.79
-,2012-08-24,0.1,0.1,0.13,0.19,0.28,0.37,0.72,1.14,1.68,2.41,2.79
-,2012-08-27,0.1,0.11,0.14,0.18,0.28,0.37,0.7,1.11,1.65,2.38,2.76
-,2012-08-28,0.12,0.1,0.15,0.18,0.27,0.36,0.69,1.1,1.64,2.36,2.75
-,2012-08-29,0.12,0.12,0.14,0.18,0.27,0.36,0.69,1.11,1.66,2.38,2.77
-,2012-08-30,0.12,0.1,0.14,0.17,0.27,0.35,0.66,1.08,1.63,2.36,2.75
-,2012-08-31,0.09,0.09,0.14,0.16,0.22,0.3,0.59,1.01,1.57,2.29,2.68
-,2012-09-04,0.1,0.1,0.14,0.16,0.23,0.31,0.62,1.03,1.59,2.3,2.69
-,2012-09-05,0.11,0.11,0.14,0.17,0.25,0.32,0.62,1.04,1.6,2.32,2.7
-,2012-09-06,0.1,0.11,0.14,0.18,0.27,0.34,0.68,1.12,1.68,2.41,2.8
-,2012-09-07,0.09,0.11,0.14,0.18,0.25,0.33,0.64,1.09,1.67,2.42,2.81
-,2012-09-10,0.09,0.1,0.14,0.18,0.25,0.33,0.66,1.1,1.68,2.43,2.83
-,2012-09-11,0.09,0.1,0.14,0.18,0.25,0.33,0.67,1.12,1.7,2.44,2.84
-,2012-09-12,0.09,0.1,0.13,0.18,0.25,0.33,0.7,1.17,1.77,2.52,2.92
-,2012-09-13,0.1,0.1,0.13,0.17,0.24,0.32,0.65,1.12,1.75,2.53,2.95
-,2012-09-14,0.08,0.11,0.13,0.18,0.27,0.35,0.72,1.23,1.88,2.68,3.09
-,2012-09-17,0.06,0.11,0.13,0.18,0.25,0.36,0.73,1.22,1.85,2.64,3.03
-,2012-09-18,0.08,0.1,0.13,0.18,0.25,0.35,0.71,1.19,1.82,2.61,3.0
-,2012-09-19,0.08,0.11,0.14,0.18,0.27,0.35,0.7,1.18,1.79,2.58,2.97
-,2012-09-20,0.06,0.11,0.14,0.18,0.27,0.36,0.7,1.18,1.8,2.58,2.96
-,2012-09-21,0.05,0.11,0.14,0.18,0.27,0.36,0.68,1.14,1.77,2.57,2.95
-,2012-09-24,0.03,0.11,0.14,0.18,0.27,0.35,0.68,1.12,1.74,2.53,2.91
-,2012-09-25,0.06,0.11,0.15,0.18,0.27,0.35,0.66,1.08,1.7,2.47,2.86
-,2012-09-26,0.05,0.11,0.13,0.17,0.26,0.34,0.63,1.03,1.64,2.4,2.79
-,2012-09-27,0.05,0.09,0.14,0.16,0.25,0.34,0.64,1.05,1.66,2.43,2.83
-,2012-09-28,0.06,0.1,0.14,0.17,0.23,0.31,0.62,1.04,1.65,2.42,2.82
-,2012-10-01,0.05,0.09,0.14,0.17,0.25,0.31,0.62,1.04,1.64,2.41,2.81
-,2012-10-02,0.09,0.09,0.14,0.16,0.23,0.31,0.61,1.03,1.64,2.41,2.81
-,2012-10-03,0.09,0.09,0.14,0.16,0.23,0.31,0.61,1.02,1.64,2.42,2.82
-,2012-10-04,0.1,0.1,0.14,0.18,0.23,0.32,0.63,1.07,1.7,2.48,2.89
-,2012-10-05,0.1,0.11,0.15,0.18,0.27,0.34,0.67,1.12,1.75,2.55,2.96
-,2012-10-09,0.11,0.1,0.15,0.18,0.25,0.35,0.67,1.11,1.74,2.52,2.93
-,2012-10-10,0.12,0.1,0.15,0.18,0.27,0.35,0.66,1.09,1.72,2.48,2.89
-,2012-10-11,0.12,0.1,0.14,0.18,0.28,0.34,0.67,1.09,1.7,2.45,2.86
-,2012-10-12,0.12,0.11,0.15,0.18,0.27,0.34,0.67,1.09,1.69,2.44,2.83
-,2012-10-15,0.1,0.11,0.15,0.19,0.27,0.34,0.67,1.09,1.7,2.45,2.85
-,2012-10-16,0.13,0.09,0.15,0.18,0.27,0.36,0.7,1.15,1.75,2.51,2.91
-,2012-10-17,0.13,0.11,0.15,0.18,0.3,0.41,0.78,1.24,1.83,2.6,2.98
-,2012-10-18,0.12,0.1,0.15,0.18,0.29,0.41,0.79,1.26,1.86,2.63,3.02
-,2012-10-19,0.11,0.1,0.14,0.18,0.3,0.41,0.77,1.21,1.79,2.55,2.94
-,2012-10-22,0.1,0.1,0.15,0.19,0.32,0.42,0.79,1.25,1.83,2.57,2.95
-,2012-10-23,0.11,0.11,0.15,0.18,0.29,0.41,0.77,1.21,1.79,2.53,2.91
-,2012-10-24,0.13,0.11,0.16,0.18,0.29,0.4,0.76,1.21,1.8,2.55,2.93
-,2012-10-25,0.13,0.11,0.16,0.19,0.31,0.43,0.82,1.28,1.86,2.6,2.98
-,2012-10-26,0.12,0.12,0.15,0.19,0.3,0.41,0.76,1.2,1.78,2.53,2.92
-,2012-10-29,0.13,0.14,0.16,0.18,0.3,0.4,0.74,1.16,1.74,2.48,2.87
-,2012-10-31,0.09,0.11,0.16,0.18,0.3,0.38,0.72,1.14,1.72,2.46,2.85
-,2012-11-01,0.06,0.09,0.15,0.18,0.3,0.38,0.73,1.16,1.75,2.5,2.89
-,2012-11-02,0.08,0.09,0.15,0.19,0.28,0.38,0.73,1.16,1.75,2.51,2.91
-,2012-11-05,0.09,0.11,0.15,0.19,0.28,0.38,0.7,1.13,1.72,2.47,2.88
-,2012-11-06,0.12,0.1,0.15,0.19,0.3,0.41,0.75,1.19,1.78,2.52,2.92
-,2012-11-07,0.12,0.1,0.14,0.18,0.27,0.36,0.67,1.08,1.68,2.42,2.83
-,2012-11-08,0.13,0.1,0.15,0.2,0.27,0.35,0.65,1.04,1.62,2.35,2.77
-,2012-11-09,0.13,0.09,0.15,0.18,0.27,0.35,0.65,1.04,1.61,2.34,2.75
-,2012-11-13,0.12,0.11,0.15,0.18,0.27,0.33,0.63,1.02,1.59,2.31,2.72
-,2012-11-14,0.15,0.1,0.15,0.18,0.25,0.33,0.63,1.03,1.59,2.31,2.73
-,2012-11-15,0.13,0.08,0.14,0.17,0.24,0.32,0.62,1.02,1.58,2.3,2.72
-,2012-11-16,0.07,0.06,0.13,0.16,0.24,0.32,0.62,1.01,1.58,2.31,2.73
-,2012-11-19,0.06,0.09,0.14,0.16,0.25,0.33,0.64,1.04,1.61,2.34,2.76
-,2012-11-20,0.15,0.08,0.14,0.16,0.27,0.36,0.67,1.09,1.66,2.4,2.82
-,2012-11-21,0.17,0.1,0.14,0.17,0.27,0.37,0.69,1.11,1.69,2.42,2.83
-,2012-11-23,0.16,0.1,0.14,0.19,0.29,0.37,0.7,1.12,1.7,2.42,2.83
-,2012-11-26,0.14,0.1,0.15,0.17,0.27,0.36,0.68,1.09,1.66,2.39,2.8
-,2012-11-27,0.17,0.1,0.15,0.18,0.27,0.36,0.66,1.07,1.64,2.38,2.79
-,2012-11-28,0.17,0.1,0.14,0.18,0.27,0.35,0.64,1.05,1.63,2.36,2.79
-,2012-11-29,0.16,0.09,0.15,0.18,0.25,0.35,0.63,1.04,1.62,2.37,2.79
-,2012-11-30,0.11,0.08,0.13,0.18,0.25,0.34,0.61,1.04,1.62,2.37,2.81
-,2012-12-03,0.13,0.1,0.14,0.18,0.25,0.34,0.63,1.05,1.63,2.37,2.8
-,2012-12-04,0.07,0.1,0.15,0.18,0.25,0.34,0.63,1.04,1.62,2.36,2.78
-,2012-12-05,0.07,0.1,0.14,0.18,0.25,0.32,0.61,1.02,1.6,2.35,2.78
-,2012-12-06,0.07,0.1,0.14,0.18,0.25,0.32,0.6,1.0,1.59,2.33,2.76
-,2012-12-07,0.06,0.09,0.14,0.18,0.25,0.33,0.63,1.04,1.64,2.39,2.81
-,2012-12-10,0.05,0.09,0.14,0.18,0.24,0.33,0.62,1.04,1.63,2.38,2.8
-,2012-12-11,0.04,0.08,0.13,0.16,0.24,0.32,0.64,1.06,1.66,2.41,2.83
-,2012-12-12,0.04,0.07,0.1,0.14,0.25,0.32,0.66,1.11,1.72,2.48,2.9
-,2012-12-13,0.02,0.06,0.11,0.14,0.27,0.34,0.7,1.15,1.74,2.49,2.9
-,2012-12-14,0.01,0.04,0.09,0.13,0.24,0.34,0.7,1.15,1.72,2.46,2.87
-,2012-12-17,0.01,0.05,0.1,0.13,0.25,0.37,0.74,1.2,1.78,2.53,2.94
-,2012-12-18,0.04,0.06,0.12,0.16,0.28,0.39,0.78,1.25,1.84,2.59,3.0
-,2012-12-19,0.03,0.05,0.1,0.15,0.28,0.39,0.77,1.24,1.82,2.58,2.99
-,2012-12-20,0.02,0.06,0.1,0.15,0.28,0.39,0.77,1.24,1.81,2.57,2.98
-,2012-12-21,0.02,0.06,0.12,0.15,0.26,0.38,0.75,1.2,1.77,2.52,2.93
-,2012-12-24,0.03,0.06,0.11,0.16,0.26,0.38,0.77,1.22,1.79,2.53,2.94
-,2012-12-26,0.05,0.09,0.13,0.16,0.26,0.39,0.76,1.2,1.77,2.52,2.94
-,2012-12-27,0.01,0.08,0.12,0.15,0.26,0.37,0.72,1.15,1.74,2.48,2.89
-,2012-12-28,0.0,0.01,0.1,0.15,0.27,0.36,0.72,1.15,1.73,2.47,2.88
-,2012-12-31,0.02,0.05,0.11,0.16,0.25,0.36,0.72,1.18,1.78,2.54,2.95
-,2013-01-02,0.07,0.08,0.12,0.15,0.27,0.37,0.76,1.25,1.86,2.63,3.04
-,2013-01-03,0.06,0.08,0.12,0.15,0.27,0.4,0.81,1.31,1.92,2.7,3.12
-,2013-01-04,0.06,0.07,0.11,0.15,0.27,0.41,0.82,1.32,1.93,2.7,3.1
-,2013-01-07,0.05,0.07,0.11,0.15,0.27,0.41,0.82,1.31,1.92,2.7,3.1
-,2013-01-08,0.06,0.07,0.11,0.14,0.25,0.38,0.79,1.28,1.89,2.66,3.06
-,2013-01-09,0.04,0.06,0.09,0.13,0.24,0.37,0.77,1.27,1.88,2.65,3.06
-,2013-01-10,0.05,0.06,0.1,0.14,0.26,0.37,0.8,1.3,1.91,2.68,3.08
-,2013-01-11,0.04,0.07,0.1,0.14,0.26,0.37,0.78,1.28,1.89,2.65,3.05
-,2013-01-14,0.05,0.08,0.11,0.14,0.26,0.37,0.78,1.27,1.89,2.65,3.05
-,2013-01-15,0.09,0.09,0.11,0.14,0.26,0.36,0.75,1.24,1.86,2.62,3.02
-,2013-01-16,0.07,0.08,0.11,0.14,0.26,0.36,0.75,1.23,1.84,2.61,3.01
-,2013-01-17,0.05,0.07,0.11,0.14,0.28,0.39,0.79,1.29,1.89,2.66,3.06
-,2013-01-18,0.04,0.08,0.1,0.14,0.26,0.38,0.77,1.26,1.87,2.63,3.03
-,2013-01-22,0.04,0.08,0.1,0.14,0.26,0.38,0.76,1.25,1.86,2.62,3.02
-,2013-01-23,0.06,0.08,0.1,0.15,0.26,0.37,0.76,1.24,1.86,2.62,3.02
-,2013-01-24,0.06,0.08,0.1,0.15,0.23,0.37,0.78,1.26,1.88,2.64,3.04
-,2013-01-25,0.06,0.08,0.11,0.15,0.28,0.42,0.87,1.36,1.98,2.75,3.14
-,2013-01-28,0.03,0.07,0.11,0.16,0.29,0.45,0.89,1.38,2.0,2.76,3.15
-,2013-01-29,0.03,0.07,0.11,0.15,0.3,0.43,0.9,1.4,2.03,2.79,3.18
-,2013-01-30,0.04,0.07,0.11,0.15,0.27,0.42,0.88,1.39,2.03,2.8,3.19
-,2013-01-31,0.04,0.07,0.12,0.15,0.27,0.42,0.88,1.38,2.02,2.79,3.17
-,2013-02-01,0.02,0.06,0.11,0.15,0.27,0.4,0.88,1.4,2.04,2.83,3.21
-,2013-02-04,0.03,0.07,0.11,0.15,0.25,0.38,0.85,1.36,2.0,2.79,3.17
-,2013-02-05,0.06,0.07,0.11,0.15,0.27,0.41,0.88,1.39,2.04,2.83,3.21
-,2013-02-06,0.06,0.07,0.12,0.15,0.27,0.39,0.84,1.35,2.0,2.79,3.18
-,2013-02-07,0.03,0.07,0.11,0.15,0.25,0.39,0.83,1.34,1.99,2.78,3.17
-,2013-02-08,0.03,0.07,0.11,0.14,0.25,0.39,0.84,1.34,1.99,2.79,3.17
-,2013-02-11,0.05,0.09,0.12,0.15,0.27,0.4,0.85,1.35,1.99,2.78,3.16
-,2013-02-12,0.08,0.09,0.12,0.14,0.29,0.41,0.88,1.38,2.02,2.81,3.19
-,2013-02-13,0.09,0.1,0.12,0.15,0.29,0.44,0.92,1.43,2.05,2.86,3.23
-,2013-02-14,0.1,0.11,0.13,0.16,0.27,0.42,0.86,1.37,2.0,2.79,3.17
-,2013-02-15,0.09,0.1,0.13,0.17,0.29,0.42,0.87,1.38,2.01,2.8,3.18
-,2013-02-19,0.09,0.12,0.13,0.17,0.29,0.44,0.89,1.41,2.03,2.83,3.21
-,2013-02-20,0.12,0.12,0.13,0.17,0.27,0.42,0.88,1.38,2.02,2.82,3.2
-,2013-02-21,0.12,0.13,0.13,0.16,0.26,0.4,0.86,1.36,1.99,2.79,3.17
-,2013-02-22,0.11,0.13,0.14,0.16,0.27,0.4,0.84,1.34,1.97,2.77,3.15
-,2013-02-25,0.09,0.12,0.14,0.16,0.25,0.37,0.78,1.25,1.88,2.69,3.08
-,2013-02-26,0.11,0.14,0.14,0.17,0.25,0.37,0.78,1.25,1.88,2.69,3.08
-,2013-02-27,0.11,0.11,0.13,0.17,0.27,0.36,0.78,1.28,1.91,2.72,3.11
-,2013-02-28,0.07,0.11,0.13,0.17,0.25,0.36,0.77,1.26,1.89,2.71,3.1
-,2013-03-01,0.07,0.11,0.12,0.16,0.25,0.35,0.75,1.23,1.86,2.68,3.06
-,2013-03-04,0.07,0.11,0.12,0.16,0.24,0.35,0.76,1.25,1.88,2.7,3.08
-,2013-03-05,0.09,0.08,0.12,0.15,0.25,0.36,0.77,1.27,1.9,2.72,3.1
-,2013-03-06,0.09,0.1,0.12,0.15,0.25,0.38,0.81,1.31,1.95,2.77,3.15
-,2013-03-07,0.1,0.1,0.11,0.15,0.25,0.4,0.85,1.36,2.0,2.82,3.2
-,2013-03-08,0.09,0.1,0.11,0.15,0.27,0.42,0.9,1.43,2.06,2.89,3.25
-,2013-03-11,0.09,0.1,0.12,0.15,0.27,0.43,0.9,1.43,2.07,2.89,3.26
-,2013-03-12,0.1,0.1,0.12,0.15,0.27,0.41,0.88,1.4,2.03,2.85,3.22
-,2013-03-13,0.09,0.09,0.12,0.15,0.27,0.42,0.89,1.41,2.04,2.85,3.22
-,2013-03-14,0.08,0.1,0.12,0.15,0.27,0.42,0.88,1.4,2.04,2.87,3.25
-,2013-03-15,0.07,0.09,0.11,0.14,0.25,0.4,0.84,1.35,2.01,2.85,3.22
-,2013-03-18,0.07,0.07,0.11,0.15,0.26,0.38,0.81,1.31,1.96,2.79,3.18
-,2013-03-19,0.08,0.07,0.11,0.15,0.24,0.37,0.79,1.28,1.92,2.75,3.13
-,2013-03-20,0.08,0.07,0.11,0.15,0.26,0.38,0.81,1.32,1.96,2.8,3.19
-,2013-03-21,0.08,0.07,0.11,0.14,0.27,0.38,0.81,1.3,1.95,2.77,3.15
-,2013-03-22,0.07,0.07,0.11,0.14,0.26,0.39,0.8,1.29,1.93,2.75,3.13
-,2013-03-25,0.06,0.08,0.11,0.14,0.24,0.38,0.8,1.28,1.93,2.76,3.14
-,2013-03-26,0.08,0.07,0.11,0.14,0.25,0.38,0.79,1.27,1.92,2.75,3.13
-,2013-03-27,0.06,0.09,0.12,0.14,0.25,0.36,0.76,1.22,1.87,2.71,3.09
-,2013-03-28,0.04,0.07,0.11,0.14,0.25,0.36,0.77,1.24,1.87,2.71,3.1
-,2013-04-01,0.06,0.08,0.11,0.14,0.23,0.36,0.76,1.23,1.86,2.7,3.08
-,2013-04-02,0.06,0.07,0.11,0.14,0.25,0.36,0.78,1.26,1.88,2.72,3.1
-,2013-04-03,0.06,0.06,0.1,0.13,0.24,0.34,0.73,1.2,1.83,2.66,3.05
-,2013-04-04,0.07,0.07,0.1,0.13,0.22,0.33,0.69,1.15,1.78,2.6,2.99
-,2013-04-05,0.05,0.07,0.1,0.13,0.24,0.33,0.68,1.12,1.72,2.5,2.87
-,2013-04-08,0.05,0.07,0.1,0.13,0.24,0.34,0.71,1.15,1.76,2.54,2.91
-,2013-04-09,0.06,0.06,0.1,0.13,0.24,0.34,0.7,1.16,1.78,2.57,2.94
-,2013-04-10,0.07,0.07,0.1,0.12,0.24,0.36,0.74,1.21,1.84,2.63,3.01
-,2013-04-11,0.06,0.07,0.1,0.12,0.24,0.35,0.74,1.2,1.82,2.62,3.01
-,2013-04-12,0.05,0.06,0.09,0.11,0.22,0.33,0.7,1.14,1.75,2.54,2.92
-,2013-04-15,0.04,0.06,0.09,0.12,0.22,0.32,0.69,1.12,1.72,2.5,2.88
-,2013-04-16,0.06,0.06,0.09,0.13,0.24,0.33,0.71,1.15,1.75,2.53,2.91
-,2013-04-17,0.05,0.06,0.09,0.13,0.24,0.35,0.71,1.13,1.73,2.51,2.89
-,2013-04-18,0.03,0.05,0.09,0.12,0.24,0.35,0.71,1.13,1.72,2.49,2.87
-,2013-04-19,0.04,0.05,0.09,0.12,0.24,0.35,0.72,1.14,1.73,2.5,2.88
-,2013-04-22,0.04,0.05,0.09,0.12,0.24,0.35,0.7,1.13,1.72,2.5,2.88
-,2013-04-23,0.04,0.05,0.09,0.12,0.23,0.35,0.71,1.14,1.74,2.52,2.9
-,2013-04-24,0.05,0.06,0.09,0.13,0.23,0.34,0.7,1.13,1.73,2.5,2.89
-,2013-04-25,0.04,0.05,0.08,0.12,0.23,0.35,0.71,1.15,1.74,2.52,2.91
-,2013-04-26,0.04,0.05,0.09,0.12,0.22,0.32,0.68,1.1,1.7,2.47,2.87
-,2013-04-29,0.03,0.05,0.08,0.12,0.2,0.32,0.68,1.1,1.7,2.49,2.88
-,2013-04-30,0.03,0.05,0.09,0.11,0.22,0.32,0.68,1.11,1.7,2.49,2.88
-,2013-05-01,0.03,0.06,0.08,0.11,0.2,0.3,0.65,1.07,1.66,2.44,2.83
-,2013-05-02,0.02,0.05,0.08,0.11,0.2,0.3,0.65,1.07,1.66,2.44,2.82
-,2013-05-03,0.02,0.05,0.08,0.11,0.22,0.34,0.73,1.17,1.78,2.58,2.96
-,2013-05-06,0.01,0.04,0.08,0.11,0.22,0.34,0.74,1.19,1.8,2.6,2.98
-,2013-05-07,0.01,0.04,0.08,0.1,0.22,0.35,0.75,1.21,1.82,2.62,3.0
-,2013-05-08,0.01,0.04,0.08,0.11,0.22,0.35,0.75,1.2,1.81,2.61,2.99
-,2013-05-09,0.02,0.04,0.08,0.11,0.22,0.35,0.75,1.2,1.81,2.6,3.01
-,2013-05-10,0.02,0.04,0.08,0.11,0.26,0.38,0.82,1.28,1.9,2.7,3.1
-,2013-05-13,0.02,0.05,0.08,0.13,0.24,0.4,0.83,1.3,1.92,2.73,3.13
-,2013-05-14,0.01,0.05,0.09,0.12,0.26,0.41,0.85,1.33,1.96,2.77,3.17
-,2013-05-15,0.01,0.04,0.09,0.12,0.26,0.4,0.84,1.32,1.94,2.76,3.16
-,2013-05-16,0.0,0.03,0.08,0.12,0.23,0.37,0.79,1.25,1.87,2.69,3.09
-,2013-05-17,0.01,0.04,0.08,0.12,0.26,0.4,0.84,1.32,1.95,2.77,3.17
-,2013-05-20,0.01,0.05,0.09,0.12,0.26,0.4,0.85,1.33,1.97,2.79,3.18
-,2013-05-21,0.04,0.04,0.09,0.12,0.26,0.39,0.84,1.31,1.94,2.75,3.14
-,2013-05-22,0.04,0.04,0.08,0.11,0.26,0.41,0.91,1.4,2.03,2.83,3.21
-,2013-05-23,0.03,0.05,0.08,0.12,0.26,0.42,0.91,1.4,2.02,2.82,3.2
-,2013-05-24,0.03,0.04,0.07,0.12,0.26,0.41,0.9,1.39,2.01,2.8,3.18
-,2013-05-28,0.02,0.05,0.09,0.13,0.29,0.49,1.02,1.53,2.15,2.95,3.31
-,2013-05-29,0.04,0.05,0.08,0.14,0.3,0.49,1.02,1.51,2.13,2.91,3.27
-,2013-05-30,0.02,0.04,0.07,0.13,0.31,0.49,1.01,1.51,2.13,2.92,3.28
-,2013-05-31,0.03,0.04,0.07,0.14,0.3,0.52,1.05,1.55,2.16,2.95,3.3
-,2013-06-03,0.03,0.05,0.08,0.14,0.3,0.5,1.03,1.53,2.13,2.92,3.27
-,2013-06-04,0.05,0.04,0.08,0.14,0.32,0.48,1.05,1.55,2.14,2.95,3.3
-,2013-06-05,0.04,0.05,0.08,0.14,0.3,0.48,1.02,1.52,2.1,2.9,3.25
-,2013-06-06,0.04,0.05,0.08,0.14,0.3,0.48,1.01,1.49,2.08,2.89,3.23
-,2013-06-07,0.04,0.04,0.07,0.14,0.32,0.52,1.1,1.59,2.17,2.98,3.33
-,2013-06-10,0.04,0.05,0.08,0.14,0.32,0.55,1.13,1.62,2.22,3.03,3.36
-,2013-06-11,0.05,0.05,0.08,0.14,0.34,0.57,1.12,1.61,2.2,3.0,3.33
-,2013-06-12,0.04,0.05,0.08,0.14,0.34,0.57,1.15,1.64,2.25,3.04,3.37
-,2013-06-13,0.04,0.05,0.08,0.14,0.32,0.55,1.11,1.6,2.19,2.99,3.33
-,2013-06-14,0.04,0.05,0.08,0.13,0.29,0.49,1.04,1.53,2.14,2.95,3.28
-,2013-06-17,0.05,0.05,0.08,0.13,0.27,0.49,1.06,1.57,2.19,3.01,3.35
-,2013-06-18,0.04,0.05,0.08,0.13,0.27,0.48,1.07,1.58,2.2,3.0,3.34
-,2013-06-19,0.04,0.05,0.08,0.13,0.31,0.58,1.24,1.76,2.33,3.09,3.41
-,2013-06-20,0.03,0.05,0.09,0.14,0.33,0.62,1.31,1.84,2.41,3.18,3.49
-,2013-06-21,0.02,0.05,0.09,0.13,0.38,0.7,1.42,1.95,2.52,3.26,3.56
-,2013-06-24,0.01,0.06,0.11,0.16,0.42,0.73,1.48,2.02,2.57,3.27,3.56
-,2013-06-25,0.03,0.06,0.11,0.17,0.43,0.74,1.49,2.03,2.6,3.31,3.6
-,2013-06-26,0.02,0.06,0.11,0.16,0.39,0.69,1.45,1.98,2.55,3.27,3.58
-,2013-06-27,0.02,0.06,0.11,0.15,0.36,0.66,1.38,1.91,2.49,3.22,3.54
-,2013-06-28,0.02,0.04,0.1,0.15,0.36,0.66,1.41,1.96,2.52,3.22,3.52
-,2013-07-01,0.01,0.04,0.09,0.15,0.34,0.65,1.39,1.93,2.5,3.19,3.48
-,2013-07-02,0.02,0.03,0.08,0.14,0.34,0.64,1.38,1.92,2.48,3.18,3.47
-,2013-07-03,0.03,0.05,0.08,0.14,0.36,0.67,1.42,1.97,2.52,3.22,3.49
-,2013-07-05,0.03,0.04,0.08,0.15,0.4,0.77,1.6,2.19,2.73,3.41,3.68
-,2013-07-08,0.02,0.05,0.07,0.14,0.37,0.71,1.51,2.11,2.65,3.35,3.63
-,2013-07-09,0.04,0.04,0.08,0.14,0.37,0.71,1.5,2.08,2.65,3.36,3.64
-,2013-07-10,0.03,0.04,0.08,0.13,0.38,0.73,1.54,2.12,2.7,3.4,3.68
-,2013-07-11,0.02,0.04,0.07,0.13,0.34,0.65,1.4,1.99,2.6,3.33,3.64
-,2013-07-12,0.02,0.04,0.07,0.12,0.37,0.66,1.43,2.0,2.61,3.34,3.64
-,2013-07-15,0.02,0.04,0.07,0.11,0.34,0.66,1.4,1.97,2.57,3.3,3.61
-,2013-07-16,0.02,0.03,0.07,0.1,0.34,0.64,1.38,1.95,2.55,3.28,3.58
-,2013-07-17,0.02,0.03,0.08,0.11,0.32,0.6,1.33,1.91,2.52,3.27,3.57
-,2013-07-18,0.01,0.03,0.07,0.11,0.32,0.61,1.35,1.95,2.56,3.32,3.63
-,2013-07-19,0.01,0.03,0.07,0.11,0.32,0.59,1.31,1.9,2.5,3.25,3.56
-,2013-07-22,0.01,0.04,0.07,0.1,0.32,0.59,1.32,1.9,2.5,3.25,3.55
-,2013-07-23,0.02,0.02,0.07,0.12,0.33,0.6,1.33,1.92,2.53,3.27,3.58
-,2013-07-24,0.02,0.03,0.07,0.12,0.34,0.64,1.4,2.0,2.61,3.34,3.65
-,2013-07-25,0.02,0.02,0.06,0.12,0.32,0.62,1.38,2.0,2.61,3.34,3.65
-,2013-07-26,0.02,0.03,0.07,0.11,0.31,0.59,1.36,1.98,2.58,3.31,3.61
-,2013-07-29,0.01,0.03,0.07,0.11,0.33,0.61,1.37,2.0,2.61,3.35,3.66
-,2013-07-30,0.03,0.04,0.07,0.11,0.33,0.62,1.39,2.02,2.63,3.36,3.67
-,2013-07-31,0.03,0.04,0.08,0.11,0.31,0.61,1.38,2.0,2.6,3.34,3.64
-,2013-08-01,0.02,0.04,0.08,0.13,0.35,0.65,1.49,2.15,2.74,3.48,3.77
-,2013-08-02,0.02,0.04,0.07,0.11,0.3,0.59,1.36,2.01,2.63,3.39,3.69
-,2013-08-05,0.03,0.05,0.08,0.12,0.32,0.61,1.39,2.04,2.67,3.42,3.73
-,2013-08-06,0.05,0.04,0.08,0.12,0.32,0.62,1.39,2.04,2.67,3.42,3.73
-,2013-08-07,0.05,0.05,0.08,0.12,0.32,0.61,1.38,2.0,2.61,3.37,3.68
-,2013-08-08,0.05,0.05,0.07,0.12,0.3,0.61,1.36,1.98,2.58,3.37,3.65
-,2013-08-09,0.05,0.05,0.07,0.11,0.32,0.61,1.36,1.98,2.57,3.36,3.63
-,2013-08-12,0.05,0.06,0.08,0.12,0.32,0.62,1.39,2.01,2.61,3.39,3.67
-,2013-08-13,0.06,0.06,0.08,0.12,0.34,0.68,1.49,2.13,2.71,3.48,3.75
-,2013-08-14,0.06,0.05,0.07,0.12,0.34,0.67,1.48,2.12,2.71,3.48,3.75
-,2013-08-15,0.05,0.05,0.08,0.13,0.36,0.7,1.54,2.18,2.77,3.54,3.81
-,2013-08-16,0.05,0.05,0.08,0.13,0.36,0.73,1.6,2.25,2.84,3.61,3.86
-,2013-08-19,0.03,0.06,0.08,0.13,0.36,0.76,1.63,2.29,2.88,3.64,3.89
-,2013-08-20,0.03,0.04,0.07,0.13,0.36,0.73,1.57,2.22,2.82,3.59,3.86
-,2013-08-21,0.02,0.04,0.07,0.14,0.38,0.76,1.64,2.3,2.87,3.64,3.9
-,2013-08-22,0.01,0.03,0.06,0.14,0.42,0.82,1.71,2.34,2.9,3.63,3.88
-,2013-08-23,0.02,0.03,0.06,0.14,0.4,0.8,1.66,2.27,2.82,3.55,3.8
-,2013-08-26,0.03,0.04,0.07,0.13,0.41,0.79,1.61,2.23,2.79,3.52,3.77
-,2013-08-27,0.04,0.05,0.07,0.12,0.38,0.77,1.56,2.15,2.72,3.45,3.7
-,2013-08-28,0.04,0.03,0.07,0.14,0.4,0.79,1.62,2.22,2.78,3.5,3.75
-,2013-08-29,0.03,0.02,0.06,0.14,0.39,0.79,1.6,2.2,2.75,3.45,3.7
-,2013-08-30,0.02,0.03,0.05,0.13,0.39,0.79,1.62,2.24,2.78,3.46,3.7
-,2013-09-03,0.03,0.02,0.05,0.14,0.43,0.83,1.68,2.31,2.86,3.54,3.79
-,2013-09-04,0.02,0.02,0.05,0.14,0.46,0.89,1.74,2.36,2.9,3.56,3.8
-,2013-09-05,0.03,0.02,0.06,0.16,0.52,0.97,1.85,2.45,2.98,3.64,3.88
-,2013-09-06,0.02,0.02,0.05,0.14,0.46,0.91,1.77,2.38,2.94,3.62,3.87
-,2013-09-09,0.02,0.02,0.04,0.12,0.45,0.87,1.71,2.34,2.9,3.6,3.84
-,2013-09-10,0.01,0.02,0.04,0.13,0.5,0.92,1.78,2.4,2.96,3.65,3.88
-,2013-09-11,0.01,0.02,0.05,0.12,0.47,0.88,1.72,2.34,2.93,3.61,3.85
-,2013-09-12,0.01,0.01,0.02,0.13,0.45,0.87,1.72,2.34,2.92,3.6,3.85
-,2013-09-13,0.01,0.01,0.02,0.13,0.45,0.87,1.71,2.32,2.9,3.59,3.84
-,2013-09-16,0.01,0.02,0.04,0.13,0.41,0.8,1.65,2.27,2.88,3.61,3.87
-,2013-09-17,0.01,0.01,0.04,0.12,0.39,0.78,1.62,2.26,2.86,3.57,3.84
-,2013-09-18,0.01,0.01,0.04,0.11,0.34,0.67,1.43,2.05,2.69,3.46,3.75
-,2013-09-19,0.0,0.01,0.03,0.1,0.34,0.69,1.49,2.13,2.76,3.52,3.8
-,2013-09-20,0.01,0.01,0.05,0.11,0.34,0.69,1.5,2.13,2.75,3.5,3.77
-,2013-09-23,0.01,0.02,0.05,0.1,0.35,0.68,1.48,2.1,2.72,3.46,3.73
-,2013-09-24,0.02,0.02,0.05,0.1,0.35,0.67,1.44,2.05,2.67,3.4,3.67
-,2013-09-25,0.02,0.02,0.05,0.1,0.36,0.66,1.41,2.01,2.63,3.37,3.65
-,2013-09-26,0.04,0.0,0.03,0.09,0.34,0.67,1.43,2.05,2.66,3.41,3.69
-,2013-09-27,0.03,0.02,0.03,0.1,0.34,0.64,1.4,2.02,2.64,3.4,3.68
-,2013-09-30,0.03,0.02,0.04,0.1,0.33,0.63,1.39,2.02,2.64,3.41,3.69
-,2013-10-01,0.1,0.02,0.04,0.1,0.33,0.66,1.42,2.04,2.66,3.43,3.72
-,2013-10-02,0.08,0.02,0.05,0.11,0.31,0.62,1.38,2.01,2.63,3.41,3.7
-,2013-10-03,0.12,0.03,0.05,0.11,0.33,0.61,1.36,1.99,2.62,3.4,3.71
-,2013-10-04,0.11,0.03,0.04,0.11,0.33,0.66,1.41,2.05,2.66,3.43,3.73
-,2013-10-07,0.13,0.03,0.06,0.12,0.37,0.66,1.41,2.03,2.65,3.41,3.7
-,2013-10-08,0.27,0.05,0.09,0.15,0.4,0.7,1.43,2.05,2.66,3.41,3.7
-,2013-10-09,0.26,0.05,0.08,0.15,0.37,0.68,1.43,2.06,2.68,3.43,3.73
-,2013-10-10,0.25,0.05,0.07,0.14,0.35,0.68,1.44,2.09,2.71,3.46,3.75
-,2013-10-11,0.25,0.08,0.07,0.14,0.35,0.66,1.42,2.07,2.7,3.45,3.74
-,2013-10-15,0.32,0.14,0.16,0.16,0.37,0.68,1.45,2.11,2.75,3.5,3.78
-,2013-10-16,0.14,0.1,0.11,0.15,0.34,0.64,1.41,2.06,2.69,3.43,3.72
-,2013-10-17,0.01,0.05,0.08,0.13,0.33,0.61,1.35,1.98,2.61,3.36,3.66
-,2013-10-18,0.01,0.04,0.08,0.12,0.33,0.62,1.35,1.98,2.6,3.36,3.65
-,2013-10-21,0.02,0.04,0.07,0.11,0.33,0.63,1.38,2.01,2.63,3.39,3.68
-,2013-10-22,0.04,0.04,0.07,0.1,0.31,0.59,1.3,1.92,2.54,3.31,3.61
-,2013-10-23,0.02,0.04,0.07,0.11,0.31,0.6,1.3,1.9,2.51,3.29,3.59
-,2013-10-24,0.02,0.03,0.07,0.12,0.33,0.59,1.32,1.92,2.53,3.3,3.61
-,2013-10-25,0.02,0.04,0.08,0.11,0.32,0.59,1.3,1.9,2.53,3.3,3.6
-,2013-10-28,0.02,0.04,0.08,0.11,0.32,0.59,1.31,1.91,2.54,3.31,3.61
-,2013-10-29,0.06,0.04,0.08,0.11,0.31,0.59,1.29,1.9,2.53,3.31,3.62
-,2013-10-30,0.05,0.04,0.09,0.11,0.33,0.58,1.3,1.93,2.55,3.33,3.63
-,2013-10-31,0.03,0.04,0.08,0.1,0.31,0.57,1.31,1.95,2.57,3.33,3.63
-,2013-11-01,0.03,0.04,0.08,0.1,0.33,0.61,1.37,2.03,2.65,3.4,3.69
-,2013-11-04,0.02,0.05,0.09,0.09,0.32,0.6,1.36,2.01,2.63,3.4,3.7
-,2013-11-05,0.06,0.05,0.08,0.1,0.32,0.6,1.39,2.06,2.69,3.46,3.76
-,2013-11-06,0.05,0.05,0.09,0.11,0.3,0.58,1.34,2.02,2.67,3.46,3.77
-,2013-11-07,0.04,0.05,0.09,0.11,0.29,0.55,1.31,1.98,2.63,3.41,3.71
-,2013-11-08,0.04,0.06,0.09,0.12,0.32,0.62,1.42,2.12,2.77,3.55,3.84
-,2013-11-12,0.05,0.08,0.1,0.13,0.34,0.65,1.47,2.16,2.8,3.57,3.86
-,2013-11-13,0.06,0.08,0.1,0.13,0.32,0.61,1.41,2.1,2.75,3.54,3.83
-,2013-11-14,0.06,0.08,0.1,0.13,0.29,0.56,1.34,2.04,2.69,3.49,3.79
-,2013-11-15,0.06,0.08,0.1,0.13,0.31,0.58,1.36,2.06,2.71,3.5,3.8
-,2013-11-18,0.05,0.09,0.1,0.13,0.31,0.56,1.33,2.02,2.67,3.46,3.76
-,2013-11-19,0.05,0.08,0.1,0.14,0.29,0.58,1.37,2.06,2.71,3.5,3.8
-,2013-11-20,0.06,0.08,0.11,0.12,0.28,0.57,1.39,2.13,2.8,3.61,3.9
-,2013-11-21,0.02,0.07,0.1,0.12,0.29,0.55,1.38,2.12,2.79,3.59,3.89
-,2013-11-22,0.02,0.07,0.1,0.12,0.31,0.57,1.37,2.1,2.75,3.54,3.84
-,2013-11-25,0.04,0.08,0.11,0.14,0.3,0.57,1.37,2.08,2.74,3.53,3.83
-,2013-11-26,0.07,0.07,0.11,0.13,0.29,0.55,1.34,2.05,2.71,3.5,3.8
-,2013-11-27,0.06,0.07,0.11,0.13,0.28,0.55,1.36,2.08,2.74,3.52,3.81
-,2013-11-29,0.05,0.06,0.11,0.13,0.28,0.56,1.37,2.1,2.75,3.54,3.82
-,2013-12-02,0.02,0.05,0.1,0.13,0.3,0.59,1.43,2.16,2.81,3.58,3.86
-,2013-12-03,0.04,0.06,0.1,0.13,0.28,0.58,1.4,2.13,2.79,3.56,3.84
-,2013-12-04,0.04,0.06,0.1,0.14,0.3,0.6,1.45,2.19,2.84,3.63,3.9
-,2013-12-05,0.02,0.06,0.1,0.13,0.3,0.61,1.49,2.23,2.88,3.65,3.92
-,2013-12-06,0.03,0.06,0.1,0.13,0.3,0.64,1.51,2.23,2.88,3.63,3.9
-,2013-12-09,0.04,0.07,0.1,0.13,0.3,0.64,1.5,2.23,2.86,3.61,3.88
-,2013-12-10,0.03,0.07,0.1,0.14,0.3,0.62,1.46,2.17,2.81,3.56,3.83
-,2013-12-11,0.02,0.07,0.1,0.13,0.31,0.63,1.5,2.21,2.86,3.61,3.87
-,2013-12-12,0.01,0.07,0.09,0.14,0.34,0.67,1.55,2.26,2.89,3.63,3.91
-,2013-12-13,0.02,0.07,0.09,0.14,0.34,0.68,1.55,2.25,2.88,3.61,3.88
-,2013-12-16,0.02,0.07,0.09,0.13,0.34,0.68,1.55,2.26,2.89,3.63,3.9
-,2013-12-17,0.02,0.07,0.09,0.14,0.34,0.65,1.52,2.22,2.85,3.6,3.88
-,2013-12-18,0.01,0.07,0.1,0.13,0.32,0.64,1.55,2.26,2.89,3.63,3.9
-,2013-12-19,0.01,0.06,0.09,0.13,0.35,0.7,1.63,2.35,2.94,3.64,3.91
-,2013-12-20,0.02,0.07,0.09,0.13,0.37,0.74,1.66,2.33,2.89,3.57,3.82
-,2013-12-23,0.01,0.07,0.09,0.14,0.38,0.77,1.68,2.37,2.94,3.6,3.85
-,2013-12-24,0.01,0.07,0.09,0.14,0.38,0.8,1.73,2.43,2.99,3.66,3.9
-,2013-12-26,0.0,0.07,0.09,0.13,0.42,0.81,1.74,2.43,3.0,3.68,3.92
-,2013-12-27,0.01,0.07,0.09,0.12,0.4,0.79,1.74,2.44,3.02,3.7,3.94
-,2013-12-30,0.01,0.07,0.1,0.13,0.39,0.77,1.71,2.4,2.99,3.66,3.9
-,2013-12-31,0.01,0.07,0.1,0.13,0.38,0.78,1.75,2.45,3.04,3.72,3.96
-,2014-01-02,0.01,0.07,0.09,0.13,0.39,0.76,1.72,2.41,3.0,3.68,3.92
-,2014-01-03,0.02,0.07,0.1,0.13,0.41,0.8,1.73,2.42,3.01,3.69,3.93
-,2014-01-06,0.01,0.05,0.08,0.12,0.4,0.78,1.7,2.38,2.98,3.66,3.9
-,2014-01-07,0.01,0.04,0.08,0.13,0.4,0.8,1.69,2.37,2.96,3.64,3.88
-,2014-01-08,0.0,0.05,0.08,0.13,0.43,0.87,1.77,2.44,3.01,3.67,3.9
-,2014-01-09,0.01,0.04,0.06,0.13,0.44,0.86,1.75,2.41,2.97,3.62,3.88
-,2014-01-10,0.01,0.05,0.06,0.12,0.39,0.77,1.64,2.29,2.88,3.54,3.8
-,2014-01-13,0.0,0.03,0.06,0.11,0.39,0.74,1.6,2.25,2.84,3.52,3.77
-,2014-01-14,0.0,0.04,0.06,0.11,0.39,0.78,1.65,2.3,2.88,3.54,3.8
-,2014-01-15,0.01,0.04,0.06,0.13,0.41,0.81,1.68,2.33,2.9,3.55,3.81
-,2014-01-16,0.01,0.04,0.07,0.11,0.41,0.8,1.66,2.3,2.86,3.52,3.77
-,2014-01-17,0.01,0.05,0.07,0.11,0.4,0.79,1.64,2.27,2.84,3.5,3.75
-,2014-01-21,0.01,0.04,0.07,0.12,0.4,0.81,1.67,2.29,2.85,3.5,3.74
-,2014-01-22,0.0,0.04,0.07,0.11,0.44,0.85,1.72,2.34,2.87,3.52,3.75
-,2014-01-23,0.01,0.04,0.05,0.11,0.39,0.77,1.62,2.24,2.79,3.44,3.68
-,2014-01-24,0.04,0.04,0.06,0.11,0.37,0.75,1.58,2.2,2.75,3.4,3.64
-,2014-01-27,0.04,0.05,0.07,0.11,0.37,0.76,1.61,2.24,2.78,3.43,3.67
-,2014-01-28,0.05,0.05,0.07,0.11,0.38,0.75,1.59,2.22,2.77,3.43,3.68
-,2014-01-29,0.04,0.04,0.07,0.11,0.36,0.71,1.52,2.15,2.69,3.36,3.62
-,2014-01-30,0.04,0.02,0.06,0.1,0.36,0.72,1.55,2.19,2.72,3.4,3.65
-,2014-01-31,0.03,0.02,0.06,0.1,0.34,0.69,1.49,2.13,2.67,3.35,3.61
-,2014-02-03,0.04,0.05,0.07,0.11,0.3,0.64,1.44,2.07,2.61,3.29,3.55
-,2014-02-04,0.12,0.06,0.07,0.12,0.31,0.65,1.46,2.09,2.64,3.33,3.59
-,2014-02-05,0.13,0.07,0.07,0.12,0.32,0.66,1.5,2.14,2.7,3.4,3.66
-,2014-02-06,0.07,0.07,0.08,0.13,0.33,0.69,1.52,2.17,2.73,3.42,3.67
-,2014-02-07,0.1,0.08,0.09,0.12,0.3,0.66,1.47,2.13,2.71,3.39,3.67
-,2014-02-10,0.07,0.07,0.1,0.12,0.32,0.66,1.48,2.13,2.7,3.38,3.66
-,2014-02-11,0.05,0.05,0.1,0.12,0.35,0.71,1.54,2.19,2.75,3.42,3.69
-,2014-02-12,0.01,0.05,0.09,0.12,0.35,0.74,1.59,2.23,2.8,3.45,3.72
-,2014-02-13,0.01,0.03,0.08,0.12,0.32,0.7,1.51,2.16,2.73,3.4,3.7
-,2014-02-14,0.01,0.02,0.07,0.11,0.32,0.71,1.53,2.17,2.75,3.41,3.69
-,2014-02-18,0.02,0.05,0.08,0.12,0.31,0.67,1.5,2.14,2.71,3.4,3.68
-,2014-02-19,0.04,0.06,0.09,0.11,0.33,0.69,1.53,2.17,2.73,3.42,3.71
-,2014-02-20,0.02,0.05,0.08,0.12,0.34,0.72,1.57,2.2,2.76,3.44,3.73
-,2014-02-21,0.02,0.05,0.08,0.12,0.33,0.71,1.56,2.19,2.73,3.41,3.69
-,2014-02-24,0.02,0.05,0.08,0.11,0.35,0.72,1.57,2.2,2.75,3.42,3.7
-,2014-02-25,0.04,0.05,0.08,0.11,0.34,0.7,1.53,2.16,2.7,3.37,3.66
-,2014-02-26,0.04,0.05,0.08,0.11,0.33,0.68,1.5,2.12,2.67,3.34,3.63
-,2014-02-27,0.04,0.04,0.07,0.11,0.33,0.68,1.49,2.11,2.65,3.31,3.6
-,2014-02-28,0.04,0.05,0.08,0.12,0.33,0.69,1.51,2.13,2.66,3.31,3.59
-,2014-03-03,0.04,0.05,0.08,0.12,0.32,0.66,1.46,2.07,2.6,3.27,3.55
-,2014-03-04,0.06,0.05,0.08,0.12,0.33,0.71,1.54,2.17,2.7,3.36,3.64
-,2014-03-05,0.06,0.06,0.09,0.13,0.33,0.71,1.54,2.16,2.7,3.36,3.64
-,2014-03-06,0.06,0.05,0.08,0.12,0.37,0.73,1.57,2.2,2.74,3.4,3.68
-,2014-03-07,0.06,0.06,0.09,0.13,0.38,0.79,1.65,2.27,2.8,3.45,3.72
-,2014-03-10,0.05,0.05,0.08,0.12,0.37,0.79,1.64,2.26,2.79,3.45,3.73
-,2014-03-11,0.06,0.05,0.08,0.13,0.37,0.79,1.62,2.25,2.77,3.43,3.7
-,2014-03-12,0.05,0.05,0.08,0.12,0.37,0.78,1.59,2.2,2.73,3.38,3.66
-,2014-03-13,0.06,0.05,0.08,0.12,0.34,0.74,1.53,2.14,2.66,3.31,3.6
-,2014-03-14,0.05,0.05,0.08,0.12,0.36,0.74,1.55,2.14,2.65,3.3,3.59
-,2014-03-17,0.05,0.06,0.08,0.13,0.38,0.77,1.58,2.19,2.7,3.34,3.63
-,2014-03-18,0.07,0.05,0.07,0.13,0.36,0.75,1.56,2.16,2.68,3.33,3.62
-,2014-03-19,0.07,0.06,0.09,0.15,0.47,0.91,1.75,2.31,2.78,3.39,3.66
-,2014-03-20,0.06,0.06,0.09,0.14,0.45,0.9,1.73,2.31,2.79,3.4,3.67
-,2014-03-21,0.05,0.06,0.08,0.14,0.45,0.91,1.73,2.3,2.75,3.34,3.61
-,2014-03-24,0.05,0.06,0.08,0.14,0.47,0.93,1.76,2.31,2.74,3.31,3.57
-,2014-03-25,0.05,0.05,0.08,0.13,0.47,0.92,1.76,2.32,2.75,3.32,3.59
-,2014-03-26,0.05,0.05,0.07,0.12,0.45,0.89,1.7,2.27,2.71,3.29,3.55
-,2014-03-27,0.02,0.04,0.06,0.12,0.45,0.9,1.7,2.26,2.69,3.25,3.52
-,2014-03-28,0.03,0.04,0.06,0.13,0.45,0.93,1.74,2.31,2.73,3.29,3.55
-,2014-03-31,0.03,0.05,0.07,0.13,0.44,0.9,1.73,2.3,2.73,3.31,3.56
-,2014-04-01,0.02,0.04,0.06,0.13,0.44,0.91,1.74,2.32,2.77,3.35,3.6
-,2014-04-02,0.02,0.02,0.06,0.12,0.47,0.94,1.8,2.39,2.82,3.4,3.65
-,2014-04-03,0.03,0.02,0.05,0.11,0.46,0.95,1.79,2.38,2.8,3.38,3.62
-,2014-04-04,0.03,0.03,0.05,0.11,0.43,0.89,1.71,2.3,2.74,3.33,3.59
-,2014-04-07,0.03,0.03,0.06,0.11,0.41,0.87,1.68,2.27,2.71,3.3,3.56
-,2014-04-08,0.04,0.03,0.06,0.11,0.4,0.88,1.67,2.24,2.69,3.28,3.54
-,2014-04-09,0.03,0.04,0.05,0.1,0.37,0.85,1.65,2.24,2.71,3.31,3.57
-,2014-04-10,0.03,0.04,0.06,0.09,0.37,0.81,1.59,2.17,2.65,3.24,3.52
-,2014-04-11,0.04,0.04,0.06,0.09,0.37,0.8,1.58,2.16,2.63,3.22,3.48
-,2014-04-14,0.03,0.04,0.06,0.1,0.37,0.82,1.61,2.18,2.65,3.23,3.48
-,2014-04-15,0.03,0.04,0.05,0.11,0.39,0.84,1.63,2.18,2.64,3.2,3.46
-,2014-04-16,0.03,0.04,0.05,0.11,0.39,0.87,1.67,2.21,2.65,3.2,3.45
-,2014-04-17,0.02,0.03,0.05,0.11,0.43,0.91,1.75,2.31,2.73,3.27,3.52
-,2014-04-21,0.02,0.04,0.06,0.11,0.42,0.91,1.74,2.31,2.73,3.27,3.52
-,2014-04-22,0.02,0.03,0.06,0.11,0.45,0.93,1.76,2.31,2.73,3.25,3.5
-,2014-04-23,0.02,0.02,0.05,0.11,0.43,0.91,1.73,2.28,2.7,3.22,3.47
-,2014-04-24,0.0,0.01,0.04,0.1,0.43,0.91,1.74,2.3,2.7,3.22,3.46
-,2014-04-25,0.01,0.03,0.04,0.11,0.43,0.9,1.72,2.28,2.68,3.2,3.45
-,2014-04-28,0.0,0.03,0.05,0.1,0.44,0.9,1.73,2.29,2.7,3.23,3.47
-,2014-04-29,0.02,0.02,0.05,0.11,0.44,0.91,1.74,2.29,2.71,3.25,3.49
-,2014-04-30,0.02,0.03,0.05,0.11,0.42,0.87,1.69,2.25,2.67,3.22,3.47
-,2014-05-01,0.02,0.03,0.05,0.1,0.41,0.86,1.66,2.21,2.63,3.16,3.41
-,2014-05-02,0.01,0.02,0.05,0.1,0.42,0.89,1.67,2.2,2.6,3.12,3.37
-,2014-05-05,0.01,0.03,0.05,0.11,0.43,0.9,1.68,2.22,2.63,3.16,3.41
-,2014-05-06,0.03,0.03,0.05,0.1,0.43,0.92,1.68,2.2,2.61,3.13,3.38
-,2014-05-07,0.03,0.03,0.05,0.1,0.41,0.89,1.65,2.18,2.62,3.12,3.4
-,2014-05-08,0.02,0.03,0.05,0.1,0.4,0.86,1.63,2.16,2.61,3.17,3.45
-,2014-05-09,0.02,0.03,0.05,0.1,0.4,0.86,1.63,2.17,2.62,3.18,3.47
-,2014-05-12,0.02,0.03,0.05,0.09,0.41,0.87,1.67,2.21,2.66,3.21,3.49
-,2014-05-13,0.03,0.03,0.05,0.1,0.39,0.84,1.62,2.16,2.61,3.17,3.45
-,2014-05-14,0.02,0.03,0.05,0.1,0.39,0.81,1.57,2.1,2.54,3.09,3.37
-,2014-05-15,0.01,0.03,0.05,0.09,0.38,0.8,1.55,2.05,2.5,3.05,3.33
-,2014-05-16,0.01,0.03,0.05,0.09,0.38,0.8,1.56,2.08,2.52,3.07,3.34
-,2014-05-19,0.01,0.03,0.05,0.09,0.36,0.79,1.56,2.09,2.54,3.11,3.39
-,2014-05-20,0.04,0.03,0.06,0.09,0.35,0.77,1.53,2.06,2.52,3.1,3.38
-,2014-05-21,0.04,0.04,0.06,0.09,0.37,0.79,1.55,2.08,2.54,3.13,3.42
-,2014-05-22,0.03,0.03,0.05,0.09,0.37,0.8,1.57,2.1,2.56,3.15,3.43
-,2014-05-23,0.04,0.04,0.05,0.1,0.37,0.79,1.55,2.09,2.54,3.12,3.4
-,2014-05-27,0.03,0.04,0.06,0.09,0.39,0.79,1.56,2.08,2.52,3.09,3.37
-,2014-05-28,0.04,0.04,0.05,0.1,0.37,0.76,1.5,2.01,2.44,3.01,3.29
-,2014-05-29,0.05,0.04,0.05,0.1,0.37,0.77,1.52,2.03,2.45,3.03,3.31
-,2014-05-30,0.05,0.04,0.06,0.1,0.37,0.79,1.54,2.06,2.48,3.05,3.33
-,2014-06-02,0.04,0.04,0.06,0.1,0.39,0.83,1.6,2.12,2.54,3.1,3.38
-,2014-06-03,0.04,0.04,0.06,0.1,0.41,0.85,1.65,2.18,2.6,3.17,3.43
-,2014-06-04,0.04,0.04,0.06,0.1,0.41,0.85,1.65,2.2,2.61,3.18,3.45
-,2014-06-05,0.03,0.04,0.06,0.1,0.4,0.82,1.63,2.17,2.59,3.17,3.44
-,2014-06-06,0.02,0.04,0.06,0.11,0.41,0.86,1.66,2.19,2.6,3.17,3.44
-,2014-06-09,0.03,0.04,0.06,0.11,0.43,0.88,1.69,2.22,2.62,3.18,3.45
-,2014-06-10,0.04,0.04,0.06,0.11,0.45,0.93,1.71,2.24,2.64,3.2,3.47
-,2014-06-11,0.03,0.04,0.06,0.11,0.44,0.91,1.7,2.23,2.65,3.2,3.47
-,2014-06-12,0.02,0.04,0.07,0.1,0.42,0.88,1.66,2.17,2.58,3.14,3.41
-,2014-06-13,0.02,0.04,0.07,0.11,0.45,0.93,1.7,2.21,2.6,3.14,3.41
-,2014-06-16,0.03,0.04,0.07,0.11,0.49,0.95,1.71,2.21,2.61,3.14,3.4
-,2014-06-17,0.03,0.04,0.07,0.11,0.51,0.99,1.77,2.27,2.66,3.19,3.44
-,2014-06-18,0.03,0.03,0.06,0.1,0.48,0.95,1.71,2.21,2.61,3.16,3.43
-,2014-06-19,0.01,0.02,0.05,0.09,0.48,0.94,1.71,2.22,2.64,3.2,3.47
-,2014-06-20,0.01,0.02,0.04,0.09,0.5,0.94,1.71,2.22,2.63,3.18,3.44
-,2014-06-23,0.02,0.03,0.06,0.1,0.48,0.96,1.72,2.23,2.63,3.18,3.45
-,2014-06-24,0.01,0.03,0.06,0.12,0.49,0.95,1.7,2.19,2.59,3.14,3.41
-,2014-06-25,0.01,0.03,0.05,0.11,0.48,0.92,1.68,2.17,2.57,3.12,3.38
-,2014-06-26,0.01,0.04,0.06,0.11,0.46,0.9,1.64,2.14,2.53,3.08,3.35
-,2014-06-27,0.02,0.03,0.06,0.1,0.45,0.88,1.64,2.14,2.54,3.1,3.36
-,2014-06-30,0.02,0.04,0.07,0.11,0.47,0.88,1.62,2.13,2.53,3.08,3.34
-,2014-07-01,0.03,0.02,0.06,0.11,0.47,0.9,1.66,2.17,2.58,3.13,3.4
-,2014-07-02,0.02,0.02,0.06,0.12,0.49,0.95,1.71,2.22,2.64,3.2,3.46
-,2014-07-03,0.01,0.01,0.06,0.11,0.52,0.98,1.74,2.25,2.65,3.21,3.47
-,2014-07-07,0.02,0.04,0.06,0.12,0.52,1.0,1.74,2.24,2.63,3.17,3.44
-,2014-07-08,0.02,0.03,0.06,0.11,0.51,0.99,1.7,2.19,2.58,3.12,3.38
-,2014-07-09,0.03,0.03,0.06,0.11,0.51,0.97,1.68,2.17,2.57,3.1,3.37
-,2014-07-10,0.02,0.02,0.06,0.1,0.46,0.93,1.66,2.15,2.55,3.1,3.38
-,2014-07-11,0.02,0.02,0.07,0.11,0.48,0.92,1.65,2.13,2.53,3.07,3.34
-,2014-07-14,0.02,0.03,0.06,0.11,0.48,0.95,1.68,2.17,2.55,3.1,3.36
-,2014-07-15,0.02,0.02,0.06,0.11,0.49,0.97,1.7,2.18,2.56,3.1,3.37
-,2014-07-16,0.02,0.02,0.06,0.11,0.5,0.98,1.71,2.18,2.55,3.08,3.35
-,2014-07-17,0.02,0.02,0.06,0.1,0.47,0.94,1.65,2.11,2.47,3.01,3.27
-,2014-07-18,0.03,0.02,0.05,0.1,0.51,0.97,1.69,2.14,2.5,3.03,3.29
-,2014-07-21,0.02,0.03,0.06,0.11,0.51,0.99,1.7,2.14,2.49,3.01,3.26
-,2014-07-22,0.03,0.03,0.07,0.11,0.49,0.97,1.68,2.13,2.48,3.0,3.25
-,2014-07-23,0.03,0.03,0.05,0.11,0.5,0.96,1.67,2.12,2.48,3.0,3.26
-,2014-07-24,0.04,0.03,0.06,0.11,0.53,1.0,1.72,2.18,2.52,3.04,3.3
-,2014-07-25,0.03,0.03,0.06,0.11,0.53,0.98,1.69,2.14,2.48,2.99,3.24
-,2014-07-28,0.03,0.04,0.06,0.11,0.54,1.01,1.73,2.17,2.5,3.01,3.26
-,2014-07-29,0.03,0.02,0.06,0.12,0.54,1.0,1.7,2.14,2.47,2.97,3.22
-,2014-07-30,0.03,0.04,0.06,0.13,0.56,1.04,1.77,2.24,2.57,3.06,3.31
-,2014-07-31,0.01,0.03,0.05,0.12,0.53,1.02,1.76,2.24,2.58,3.07,3.32
-,2014-08-01,0.01,0.03,0.05,0.13,0.47,0.94,1.67,2.16,2.52,3.03,3.29
-,2014-08-04,0.02,0.04,0.06,0.12,0.47,0.93,1.66,2.15,2.51,3.04,3.3
-,2014-08-05,0.03,0.03,0.05,0.12,0.47,0.93,1.66,2.14,2.49,3.02,3.28
-,2014-08-06,0.03,0.03,0.05,0.11,0.48,0.93,1.66,2.13,2.49,3.01,3.27
-,2014-08-07,0.03,0.03,0.04,0.11,0.44,0.89,1.6,2.07,2.43,2.97,3.23
-,2014-08-08,0.03,0.03,0.05,0.1,0.45,0.91,1.62,2.09,2.44,2.97,3.23
-,2014-08-11,0.03,0.04,0.05,0.1,0.47,0.93,1.62,2.09,2.44,2.97,3.24
-,2014-08-12,0.05,0.03,0.05,0.1,0.45,0.92,1.63,2.1,2.46,3.0,3.27
-,2014-08-13,0.04,0.04,0.06,0.1,0.43,0.88,1.59,2.06,2.43,2.97,3.24
-,2014-08-14,0.04,0.04,0.06,0.1,0.42,0.87,1.58,2.04,2.4,2.93,3.2
-,2014-08-15,0.03,0.03,0.05,0.09,0.42,0.86,1.55,1.99,2.34,2.86,3.13
-,2014-08-18,0.02,0.03,0.05,0.1,0.44,0.89,1.58,2.04,2.39,2.92,3.2
-,2014-08-19,0.04,0.03,0.05,0.11,0.46,0.9,1.59,2.05,2.4,2.94,3.21
-,2014-08-20,0.04,0.04,0.06,0.12,0.49,0.94,1.65,2.09,2.43,2.95,3.22
-,2014-08-21,0.03,0.02,0.06,0.1,0.49,0.95,1.64,2.08,2.41,2.92,3.19
-,2014-08-22,0.04,0.03,0.06,0.1,0.53,0.98,1.68,2.1,2.4,2.9,3.16
-,2014-08-25,0.02,0.04,0.05,0.11,0.53,0.99,1.69,2.09,2.39,2.88,3.13
-,2014-08-26,0.04,0.03,0.05,0.12,0.52,0.98,1.68,2.08,2.39,2.89,3.15
-,2014-08-27,0.02,0.04,0.05,0.11,0.51,0.97,1.65,2.05,2.37,2.85,3.11
-,2014-08-28,0.02,0.03,0.05,0.11,0.5,0.95,1.63,2.04,2.34,2.82,3.08
-,2014-08-29,0.02,0.03,0.05,0.09,0.48,0.94,1.63,2.05,2.35,2.83,3.09
-,2014-09-02,0.02,0.03,0.05,0.1,0.53,0.99,1.69,2.11,2.42,2.91,3.17
-,2014-09-03,0.02,0.03,0.05,0.11,0.52,0.99,1.69,2.11,2.41,2.9,3.15
-,2014-09-04,0.02,0.03,0.05,0.1,0.54,1.01,1.71,2.14,2.45,2.95,3.21
-,2014-09-05,0.02,0.03,0.05,0.1,0.52,0.99,1.69,2.14,2.46,2.97,3.23
-,2014-09-08,0.01,0.02,0.05,0.1,0.54,1.02,1.72,2.16,2.48,2.97,3.23
-,2014-09-09,0.01,0.02,0.05,0.11,0.56,1.06,1.76,2.19,2.5,2.97,3.23
-,2014-09-10,0.01,0.02,0.05,0.11,0.58,1.07,1.79,2.22,2.54,3.01,3.26
-,2014-09-11,0.01,0.02,0.05,0.11,0.58,1.07,1.79,2.22,2.54,3.02,3.27
-,2014-09-12,0.01,0.02,0.05,0.11,0.58,1.07,1.83,2.29,2.62,3.1,3.35
-,2014-09-15,0.01,0.02,0.05,0.11,0.58,1.06,1.8,2.26,2.6,3.09,3.34
-,2014-09-16,0.01,0.02,0.04,0.13,0.55,1.04,1.78,2.26,2.6,3.11,3.36
-,2014-09-17,0.01,0.02,0.05,0.12,0.59,1.08,1.82,2.29,2.62,3.12,3.37
-,2014-09-18,0.01,0.02,0.04,0.12,0.59,1.1,1.85,2.32,2.63,3.12,3.36
-,2014-09-19,0.01,0.02,0.04,0.11,0.59,1.09,1.83,2.29,2.59,3.05,3.29
-,2014-09-22,0.0,0.01,0.04,0.1,0.58,1.06,1.8,2.26,2.57,3.04,3.28
-,2014-09-23,0.01,0.01,0.04,0.1,0.57,1.05,1.78,2.23,2.54,3.01,3.25
-,2014-09-24,0.01,0.02,0.03,0.11,0.59,1.08,1.82,2.26,2.57,3.04,3.28
-,2014-09-25,0.0,0.01,0.03,0.1,0.56,1.03,1.75,2.21,2.52,2.98,3.22
-,2014-09-26,0.01,0.01,0.03,0.11,0.59,1.08,1.8,2.24,2.54,2.99,3.22
-,2014-09-29,0.01,0.02,0.05,0.11,0.58,1.06,1.77,2.21,2.5,2.95,3.18
-,2014-09-30,0.02,0.02,0.03,0.13,0.58,1.07,1.78,2.22,2.52,2.98,3.21
-,2014-10-01,0.01,0.02,0.04,0.1,0.53,1.0,1.69,2.12,2.42,2.87,3.12
-,2014-10-02,0.01,0.01,0.03,0.1,0.53,1.01,1.7,2.14,2.44,2.9,3.15
-,2014-10-03,0.01,0.01,0.03,0.11,0.57,1.05,1.73,2.16,2.45,2.89,3.13
-,2014-10-06,0.01,0.02,0.05,0.11,0.54,1.02,1.7,2.13,2.43,2.88,3.12
-,2014-10-07,0.02,0.02,0.04,0.1,0.52,0.98,1.64,2.06,2.36,2.81,3.06
-,2014-10-08,0.01,0.01,0.05,0.1,0.46,0.9,1.57,2.02,2.35,2.82,3.07
-,2014-10-09,0.02,0.01,0.05,0.1,0.46,0.91,1.58,2.02,2.34,2.81,3.07
-,2014-10-10,0.02,0.01,0.04,0.1,0.45,0.89,1.55,1.99,2.31,2.77,3.03
-,2014-10-14,0.03,0.02,0.04,0.09,0.39,0.8,1.45,1.88,2.21,2.68,2.95
-,2014-10-15,0.02,0.02,0.05,0.1,0.34,0.73,1.37,1.8,2.15,2.64,2.92
-,2014-10-16,0.04,0.03,0.05,0.1,0.35,0.75,1.39,1.82,2.17,2.66,2.94
-,2014-10-17,0.03,0.02,0.05,0.11,0.39,0.79,1.44,1.88,2.22,2.7,2.98
-,2014-10-20,0.03,0.02,0.06,0.1,0.37,0.76,1.41,1.85,2.2,2.68,2.96
-,2014-10-21,0.04,0.02,0.06,0.1,0.38,0.77,1.44,1.88,2.23,2.72,3.0
-,2014-10-22,0.04,0.02,0.06,0.11,0.41,0.8,1.46,1.9,2.25,2.73,3.01
-,2014-10-23,0.02,0.01,0.06,0.11,0.41,0.83,1.52,1.95,2.29,2.77,3.05
-,2014-10-24,0.02,0.01,0.06,0.11,0.41,0.82,1.52,1.96,2.29,2.77,3.05
-,2014-10-27,0.03,0.02,0.06,0.11,0.41,0.81,1.51,1.94,2.27,2.75,3.04
-,2014-10-28,0.02,0.02,0.05,0.11,0.42,0.84,1.53,1.97,2.3,2.79,3.06
-,2014-10-29,0.01,0.03,0.07,0.11,0.48,0.93,1.61,2.03,2.34,2.79,3.06
-,2014-10-30,0.01,0.01,0.06,0.11,0.48,0.91,1.58,2.02,2.32,2.77,3.04
-,2014-10-31,0.01,0.01,0.05,0.11,0.5,0.95,1.62,2.05,2.35,2.81,3.07
-,2014-11-03,0.03,0.02,0.07,0.12,0.52,0.96,1.63,2.05,2.36,2.8,3.07
-,2014-11-04,0.04,0.03,0.06,0.11,0.52,0.97,1.63,2.05,2.35,2.78,3.05
-,2014-11-05,0.04,0.03,0.07,0.11,0.52,0.97,1.63,2.05,2.36,2.79,3.06
-,2014-11-06,0.04,0.03,0.06,0.12,0.54,1.01,1.67,2.09,2.39,2.83,3.09
-,2014-11-07,0.04,0.03,0.06,0.12,0.51,0.95,1.6,2.01,2.32,2.76,3.04
-,2014-11-10,0.04,0.02,0.07,0.13,0.55,1.0,1.65,2.07,2.38,2.81,3.09
-,2014-11-12,0.05,0.02,0.07,0.14,0.55,1.0,1.65,2.06,2.37,2.81,3.09
-,2014-11-13,0.05,0.02,0.08,0.15,0.53,0.97,1.64,2.05,2.35,2.8,3.08
-,2014-11-14,0.04,0.02,0.07,0.15,0.54,0.96,1.62,2.02,2.32,2.77,3.04
-,2014-11-17,0.02,0.03,0.07,0.15,0.54,0.96,1.64,2.04,2.34,2.79,3.06
-,2014-11-18,0.04,0.02,0.07,0.14,0.53,0.96,1.63,2.03,2.32,2.77,3.05
-,2014-11-19,0.04,0.01,0.07,0.15,0.54,0.99,1.66,2.07,2.36,2.8,3.08
-,2014-11-20,0.04,0.02,0.07,0.14,0.53,0.97,1.64,2.05,2.34,2.78,3.05
-,2014-11-21,0.04,0.01,0.07,0.14,0.53,0.96,1.63,2.03,2.31,2.75,3.02
-,2014-11-24,0.04,0.02,0.08,0.14,0.53,0.95,1.62,2.02,2.3,2.74,3.01
-,2014-11-25,0.06,0.02,0.07,0.14,0.51,0.94,1.58,1.98,2.27,2.69,2.97
-,2014-11-26,0.06,0.02,0.07,0.14,0.53,0.93,1.56,1.96,2.24,2.67,2.95
-,2014-11-28,0.04,0.02,0.07,0.13,0.47,0.88,1.49,1.89,2.18,2.62,2.89
-,2014-12-01,0.01,0.03,0.08,0.13,0.49,0.9,1.52,1.93,2.22,2.66,2.95
-,2014-12-02,0.04,0.03,0.08,0.14,0.55,0.96,1.59,2.0,2.28,2.72,3.0
-,2014-12-03,0.03,0.01,0.07,0.15,0.57,0.98,1.61,2.01,2.29,2.71,2.99
-,2014-12-04,0.03,0.02,0.08,0.14,0.55,0.97,1.59,1.98,2.25,2.66,2.94
-,2014-12-05,0.02,0.02,0.08,0.18,0.65,1.09,1.69,2.06,2.31,2.69,2.97
-,2014-12-08,0.03,0.03,0.1,0.18,0.64,1.1,1.67,2.02,2.26,2.62,2.9
-,2014-12-09,0.05,0.04,0.11,0.23,0.64,1.07,1.63,1.97,2.22,2.58,2.87
-,2014-12-10,0.05,0.03,0.1,0.21,0.59,1.01,1.58,1.92,2.18,2.54,2.83
-,2014-12-11,0.02,0.03,0.09,0.21,0.62,1.05,1.62,1.96,2.19,2.54,2.84
-,2014-12-12,0.02,0.02,0.09,0.19,0.56,0.98,1.53,1.86,2.1,2.45,2.75
-,2014-12-15,0.02,0.04,0.11,0.22,0.6,1.03,1.58,1.9,2.12,2.45,2.74
-,2014-12-16,0.03,0.03,0.11,0.21,0.58,0.99,1.53,1.85,2.07,2.4,2.69
-,2014-12-17,0.03,0.03,0.11,0.23,0.62,1.06,1.61,1.93,2.14,2.46,2.74
-,2014-12-18,0.04,0.04,0.12,0.25,0.67,1.1,1.68,2.01,2.22,2.54,2.82
-,2014-12-19,0.01,0.04,0.11,0.26,0.67,1.1,1.66,1.98,2.17,2.48,2.77
-,2014-12-22,0.01,0.05,0.16,0.28,0.71,1.13,1.67,1.98,2.17,2.47,2.75
-,2014-12-23,0.02,0.03,0.14,0.26,0.73,1.17,1.76,2.06,2.26,2.57,2.85
-,2014-12-24,0.01,0.01,0.14,0.26,0.73,1.18,1.76,2.09,2.27,2.56,2.83
-,2014-12-26,0.01,0.01,0.1,0.26,0.73,1.19,1.75,2.07,2.25,2.54,2.81
-,2014-12-29,0.01,0.03,0.12,0.25,0.72,1.14,1.72,2.02,2.22,2.51,2.78
-,2014-12-30,0.03,0.03,0.12,0.23,0.69,1.11,1.68,2.0,2.2,2.49,2.76
-,2014-12-31,0.03,0.04,0.12,0.25,0.67,1.1,1.65,1.97,2.17,2.47,2.75
-,2015-01-02,0.02,0.02,0.11,0.25,0.66,1.07,1.61,1.92,2.12,2.41,2.69
-,2015-01-05,0.02,0.03,0.1,0.26,0.68,1.06,1.57,1.85,2.04,2.32,2.6
-,2015-01-06,0.02,0.03,0.1,0.25,0.65,1.02,1.5,1.78,1.97,2.25,2.52
-,2015-01-07,0.02,0.03,0.09,0.25,0.62,1.0,1.47,1.76,1.96,2.25,2.52
-,2015-01-08,0.01,0.03,0.08,0.23,0.62,1.0,1.5,1.81,2.03,2.33,2.59
-,2015-01-09,0.02,0.02,0.08,0.22,0.59,0.96,1.45,1.75,1.98,2.29,2.55
-,2015-01-12,0.02,0.03,0.09,0.19,0.56,0.91,1.39,1.69,1.92,2.23,2.49
-,2015-01-13,0.02,0.03,0.08,0.2,0.54,0.88,1.37,1.67,1.91,2.24,2.49
-,2015-01-14,0.02,0.04,0.09,0.18,0.51,0.83,1.33,1.62,1.86,2.2,2.47
-,2015-01-15,0.03,0.03,0.08,0.16,0.44,0.75,1.22,1.53,1.77,2.12,2.4
-,2015-01-16,0.02,0.03,0.07,0.17,0.49,0.8,1.29,1.6,1.83,2.17,2.44
-,2015-01-20,0.01,0.03,0.08,0.17,0.53,0.85,1.31,1.61,1.82,2.15,2.39
-,2015-01-21,0.01,0.03,0.08,0.17,0.53,0.87,1.35,1.66,1.87,2.2,2.44
-,2015-01-22,0.02,0.03,0.08,0.17,0.53,0.9,1.39,1.69,1.9,2.21,2.46
-,2015-01-23,0.02,0.02,0.07,0.17,0.52,0.86,1.33,1.62,1.81,2.12,2.38
-,2015-01-26,0.02,0.03,0.08,0.18,0.54,0.89,1.36,1.64,1.83,2.14,2.4
-,2015-01-27,0.02,0.02,0.08,0.17,0.54,0.87,1.34,1.62,1.83,2.15,2.4
-,2015-01-28,0.02,0.02,0.08,0.17,0.5,0.81,1.25,1.53,1.73,2.05,2.29
-,2015-01-29,0.01,0.03,0.07,0.17,0.51,0.84,1.28,1.59,1.77,2.11,2.33
-,2015-01-30,0.01,0.02,0.07,0.18,0.47,0.77,1.18,1.49,1.68,2.04,2.25
-,2015-02-02,0.01,0.02,0.07,0.17,0.49,0.78,1.19,1.49,1.68,2.07,2.25
-,2015-02-03,0.02,0.02,0.07,0.21,0.52,0.85,1.28,1.6,1.79,2.16,2.37
-,2015-02-04,0.01,0.01,0.06,0.2,0.52,0.86,1.29,1.61,1.81,2.17,2.39
-,2015-02-05,0.02,0.02,0.06,0.2,0.52,0.87,1.3,1.62,1.83,2.2,2.42
-,2015-02-06,0.01,0.02,0.07,0.26,0.65,1.03,1.48,1.77,1.95,2.28,2.51
-,2015-02-09,0.02,0.01,0.08,0.24,0.65,1.04,1.49,1.78,1.96,2.28,2.52
-,2015-02-10,0.02,0.01,0.08,0.25,0.67,1.05,1.52,1.82,2.01,2.33,2.58
-,2015-02-11,0.02,0.01,0.07,0.24,0.67,1.06,1.53,1.83,2.0,2.33,2.57
-,2015-02-12,0.02,0.02,0.07,0.23,0.61,1.02,1.5,1.81,1.99,2.33,2.58
-,2015-02-13,0.02,0.01,0.07,0.23,0.66,1.03,1.53,1.84,2.02,2.39,2.63
-,2015-02-17,0.02,0.02,0.07,0.25,0.7,1.1,1.62,1.95,2.14,2.49,2.73
-,2015-02-18,0.02,0.02,0.07,0.23,0.62,1.0,1.52,1.86,2.07,2.46,2.7
-,2015-02-19,0.02,0.02,0.07,0.23,0.67,1.05,1.58,1.92,2.11,2.5,2.73
-,2015-02-20,0.02,0.02,0.07,0.23,0.67,1.07,1.61,1.94,2.13,2.5,2.73
-,2015-02-23,0.01,0.02,0.08,0.22,0.64,1.03,1.56,1.88,2.06,2.44,2.66
-,2015-02-24,0.02,0.02,0.08,0.22,0.6,0.97,1.47,1.79,1.99,2.38,2.6
-,2015-02-25,0.02,0.02,0.07,0.21,0.61,0.98,1.47,1.78,1.96,2.35,2.56
-,2015-02-26,0.02,0.03,0.07,0.22,0.66,1.04,1.54,1.86,2.03,2.39,2.63
-,2015-02-27,0.02,0.02,0.07,0.22,0.63,1.01,1.5,1.82,2.0,2.38,2.6
-,2015-03-02,0.02,0.02,0.08,0.22,0.66,1.06,1.57,1.89,2.08,2.46,2.68
-,2015-03-03,0.01,0.02,0.08,0.26,0.68,1.09,1.61,1.94,2.12,2.49,2.71
-,2015-03-04,0.01,0.01,0.08,0.26,0.66,1.07,1.6,1.93,2.12,2.49,2.72
-,2015-03-05,0.02,0.02,0.08,0.25,0.65,1.05,1.57,1.9,2.11,2.49,2.71
-,2015-03-06,0.02,0.01,0.08,0.27,0.73,1.16,1.7,2.04,2.24,2.63,2.83
-,2015-03-09,0.01,0.02,0.1,0.27,0.7,1.13,1.66,1.99,2.2,2.58,2.8
-,2015-03-10,0.03,0.02,0.1,0.25,0.7,1.1,1.62,1.94,2.14,2.51,2.73
-,2015-03-11,0.03,0.03,0.1,0.25,0.7,1.09,1.6,1.92,2.11,2.47,2.69
-,2015-03-12,0.03,0.03,0.1,0.24,0.67,1.06,1.59,1.91,2.1,2.47,2.69
-,2015-03-13,0.03,0.03,0.11,0.24,0.68,1.07,1.6,1.93,2.13,2.48,2.7
-,2015-03-16,0.02,0.05,0.15,0.26,0.66,1.06,1.57,1.9,2.1,2.45,2.67
-,2015-03-17,0.05,0.05,0.15,0.27,0.7,1.07,1.56,1.87,2.06,2.4,2.61
-,2015-03-18,0.046,0.048,0.157,0.265,0.678,1.069,1.538,1.841,2.025,2.35,2.581
diff --git a/poetry.lock b/poetry.lock
index 2dc3c7f..3b362c7 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -30,7 +30,7 @@ tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>
[[package]]
name = "babel"
-version = "2.10.1"
+version = "2.10.3"
description = "Internationalization utilities"
category = "main"
optional = true
@@ -40,49 +40,24 @@ python-versions = ">=3.6"
pytz = ">=2015.7"
[[package]]
-name = "bleach"
-version = "5.0.0"
-description = "An easy safelist-based HTML-sanitizing tool."
+name = "brotli"
+version = "1.0.9"
+description = "Python bindings for the Brotli compression library"
category = "main"
optional = false
-python-versions = ">=3.7"
-
-[package.dependencies]
-six = ">=1.9.0"
-webencodings = "*"
-
-[package.extras]
-css = ["tinycss2 (>=1.1.0)"]
-dev = ["pip-tools (==6.5.1)", "pytest (==7.1.1)", "flake8 (==4.0.1)", "tox (==3.24.5)", "sphinx (==4.3.2)", "twine (==4.0.0)", "wheel (==0.37.1)", "hashin (==0.17.0)", "black (==22.3.0)", "mypy (==0.942)"]
+python-versions = "*"
[[package]]
-name = "bokeh"
-version = "2.4.2"
-description = "Interactive plots and applications in the browser from Python"
+name = "cachelib"
+version = "0.9.0"
+description = "A collection of cache libraries in the same API interface."
category = "main"
optional = false
python-versions = ">=3.7"
-[package.dependencies]
-Jinja2 = ">=2.9"
-numpy = ">=1.11.3"
-packaging = ">=16.8"
-pillow = ">=7.1.0"
-PyYAML = ">=3.10"
-tornado = ">=5.1"
-typing-extensions = ">=3.10.0"
-
-[[package]]
-name = "brotli"
-version = "1.0.9"
-description = "Python bindings for the Brotli compression library"
-category = "main"
-optional = false
-python-versions = "*"
-
[[package]]
name = "cachetools"
-version = "5.0.0"
+version = "5.2.0"
description = "Extensible memoizing collections and decorators"
category = "main"
optional = false
@@ -90,11 +65,11 @@ python-versions = "~=3.7"
[[package]]
name = "certifi"
-version = "2021.10.8"
+version = "2022.6.15"
description = "Python package for providing Mozilla's CA Bundle."
category = "main"
optional = false
-python-versions = "*"
+python-versions = ">=3.6"
[[package]]
name = "cfgv"
@@ -106,11 +81,11 @@ python-versions = ">=3.6.1"
[[package]]
name = "charset-normalizer"
-version = "2.0.12"
+version = "2.1.0"
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
category = "main"
optional = false
-python-versions = ">=3.5.0"
+python-versions = ">=3.6.0"
[package.extras]
unicode_backport = ["unicodedata2"]
@@ -128,7 +103,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""}
[[package]]
name = "colorama"
-version = "0.4.4"
+version = "0.4.5"
description = "Cross-platform colored terminal text."
category = "main"
optional = false
@@ -136,7 +111,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "coverage"
-version = "6.3.2"
+version = "6.4.1"
description = "Code coverage measurement for Python"
category = "dev"
optional = false
@@ -155,7 +130,7 @@ python-versions = ">=3.6"
[[package]]
name = "dash"
-version = "2.4.1"
+version = "2.5.1"
description = "A Python framework for building reactive web-apps. Developed by Plotly."
category = "main"
optional = false
@@ -184,6 +159,17 @@ category = "main"
optional = false
python-versions = "*"
+[[package]]
+name = "dash-daq"
+version = "0.5.0"
+description = "DAQ components for Dash"
+category = "main"
+optional = false
+python-versions = "*"
+
+[package.dependencies]
+dash = ">=1.6.1"
+
[[package]]
name = "dash-html-components"
version = "2.0.0"
@@ -202,7 +188,7 @@ python-versions = "*"
[[package]]
name = "db-dtypes"
-version = "1.0.0"
+version = "1.0.2"
description = "Pandas Data Types for SQL systems (BigQuery, Spanner)"
category = "main"
optional = false
@@ -212,7 +198,7 @@ python-versions = ">=3.6, <3.11"
numpy = ">=1.16.6,<2.0dev"
packaging = ">=17.0"
pandas = ">=0.24.2,<2.0dev"
-pyarrow = ">=3.0.0,<8.0dev"
+pyarrow = ">=3.0.0,<9.0dev"
[[package]]
name = "distlib"
@@ -232,7 +218,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "filelock"
-version = "3.6.0"
+version = "3.7.1"
description = "A platform independent file lock."
category = "dev"
optional = false
@@ -261,6 +247,18 @@ Werkzeug = ">=2.0"
async = ["asgiref (>=3.2)"]
dotenv = ["python-dotenv"]
+[[package]]
+name = "flask-caching"
+version = "2.0.0"
+description = "Adds caching support to Flask applications."
+category = "main"
+optional = false
+python-versions = ">=3.7"
+
+[package.dependencies]
+cachelib = ">=0.9.0"
+Flask = "<=2.1.2"
+
[[package]]
name = "flask-compress"
version = "1.12"
@@ -297,7 +295,7 @@ woff = ["zopfli (>=0.1.4)", "brotlicffi (>=0.8.0)", "brotli (>=1.0.1)"]
[[package]]
name = "google-api-core"
-version = "2.7.2"
+version = "2.8.2"
description = "Google API client core library"
category = "main"
optional = false
@@ -305,20 +303,18 @@ python-versions = ">=3.6"
[package.dependencies]
google-auth = ">=1.25.0,<3.0dev"
-googleapis-common-protos = ">=1.52.0,<2.0dev"
+googleapis-common-protos = ">=1.56.2,<2.0dev"
grpcio = {version = ">=1.33.2,<2.0dev", optional = true, markers = "extra == \"grpc\""}
grpcio-status = {version = ">=1.33.2,<2.0dev", optional = true, markers = "extra == \"grpc\""}
-protobuf = ">=3.12.0"
+protobuf = ">=3.15.0,<5.0.0dev"
requests = ">=2.18.0,<3.0.0dev"
[package.extras]
grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio-status (>=1.33.2,<2.0dev)"]
-grpcgcp = ["grpcio-gcp (>=0.2.2)"]
-grpcio-gcp = ["grpcio-gcp (>=0.2.2)"]
[[package]]
name = "google-auth"
-version = "2.6.6"
+version = "2.9.0"
description = "Google Authentication Library"
category = "main"
optional = false
@@ -332,16 +328,17 @@ six = ">=1.9.0"
[package.extras]
aiohttp = ["requests (>=2.20.0,<3.0.0dev)", "aiohttp (>=3.6.2,<4.0.0dev)"]
+enterprise_cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"]
pyopenssl = ["pyopenssl (>=20.0.0)"]
reauth = ["pyu2f (>=0.1.5)"]
[[package]]
name = "google-cloud-bigquery"
-version = "3.1.0"
+version = "3.3.0"
description = "Google BigQuery API client library"
category = "main"
optional = false
-python-versions = ">=3.6, <3.11"
+python-versions = ">=3.7, <3.11"
[package.dependencies]
db-dtypes = {version = ">=0.3.0,<2.0.0dev", optional = true, markers = "extra == \"pandas\""}
@@ -349,11 +346,11 @@ google-api-core = {version = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev", extras = ["g
google-cloud-bigquery-storage = ">=2.0.0,<3.0.0dev"
google-cloud-core = ">=1.4.1,<3.0.0dev"
google-resumable-media = ">=0.6.0,<3.0dev"
-grpcio = ">=1.38.1,<2.0dev"
-packaging = ">=14.3"
+grpcio = ">=1.47.0,<2.0dev"
+packaging = ">=14.3,<22.0.0dev"
pandas = {version = ">=1.0.0", optional = true, markers = "extra == \"pandas\""}
-proto-plus = ">=1.15.0"
-protobuf = ">=3.12.0"
+proto-plus = ">=1.15.0,<2.0.0dev"
+protobuf = ">=3.12.0,<4.0.0dev"
pyarrow = ">=3.0.0,<9.0dev"
python-dateutil = ">=2.7.2,<3.0dev"
requests = ">=2.18.0,<3.0.0dev"
@@ -368,7 +365,7 @@ tqdm = ["tqdm (>=4.7.4,<5.0.0dev)"]
[[package]]
name = "google-cloud-bigquery-storage"
-version = "2.13.1"
+version = "2.13.2"
description = "BigQuery Storage API API client library"
category = "main"
optional = false
@@ -376,7 +373,8 @@ python-versions = ">=3.6"
[package.dependencies]
google-api-core = {version = ">=1.31.5,<2.0.0 || >2.3.0,<3.0.0dev", extras = ["grpc"]}
-proto-plus = ">=1.18.0"
+proto-plus = ">=1.18.0,<2.0.0dev"
+protobuf = ">=3.19.0,<4.0.0dev"
[package.extras]
fastavro = ["fastavro (>=0.21.2)"]
@@ -386,7 +384,7 @@ tests = ["freezegun"]
[[package]]
name = "google-cloud-core"
-version = "2.3.0"
+version = "2.3.1"
description = "Google Cloud API client core library"
category = "main"
optional = false
@@ -412,7 +410,7 @@ testing = ["pytest"]
[[package]]
name = "google-resumable-media"
-version = "2.3.2"
+version = "2.3.3"
description = "Utilities for Google Media Downloads and Resumable Uploads"
category = "main"
optional = false
@@ -427,21 +425,21 @@ requests = ["requests (>=2.18.0,<3.0.0dev)"]
[[package]]
name = "googleapis-common-protos"
-version = "1.56.0"
+version = "1.56.3"
description = "Common protobufs used in Google APIs"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
-protobuf = ">=3.12.0"
+protobuf = ">=3.15.0,<5.0.0dev"
[package.extras]
-grpc = ["grpcio (>=1.0.0)"]
+grpc = ["grpcio (>=1.0.0,<2.0.0dev)"]
[[package]]
name = "grpcio"
-version = "1.45.0"
+version = "1.47.0"
description = "HTTP/2-based RPC framework"
category = "main"
optional = false
@@ -451,11 +449,11 @@ python-versions = ">=3.6"
six = ">=1.5.2"
[package.extras]
-protobuf = ["grpcio-tools (>=1.45.0)"]
+protobuf = ["grpcio-tools (>=1.47.0)"]
[[package]]
name = "grpcio-status"
-version = "1.45.0"
+version = "1.47.0"
description = "Status proto mapping for gRPC"
category = "main"
optional = false
@@ -463,7 +461,7 @@ python-versions = ">=3.6"
[package.dependencies]
googleapis-common-protos = ">=1.5.5"
-grpcio = ">=1.45.0"
+grpcio = ">=1.47.0"
protobuf = ">=3.12.0"
[[package]]
@@ -482,7 +480,7 @@ tornado = ["tornado (>=0.2)"]
[[package]]
name = "identify"
-version = "2.4.12"
+version = "2.5.1"
description = "File identification library for Python"
category = "dev"
optional = false
@@ -501,7 +499,7 @@ python-versions = ">=3.5"
[[package]]
name = "imagesize"
-version = "1.3.0"
+version = "1.4.1"
description = "Getting image size from png/jpeg/jpeg2000/gif file"
category = "main"
optional = true
@@ -509,7 +507,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "importlib-metadata"
-version = "4.11.3"
+version = "4.12.0"
description = "Read metadata from Python packages"
category = "main"
optional = false
@@ -521,11 +519,11 @@ zipp = ">=0.5"
[package.extras]
docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"]
perf = ["ipython"]
-testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "packaging", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "importlib-resources (>=1.3)"]
+testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.3)", "packaging", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "importlib-resources (>=1.3)"]
[[package]]
name = "importlib-resources"
-version = "5.7.1"
+version = "5.8.0"
description = "Read resources from Python packages"
category = "dev"
optional = false
@@ -556,7 +554,7 @@ python-versions = ">=3.7"
[[package]]
name = "jinja2"
-version = "3.1.1"
+version = "3.1.2"
description = "A very fast and expressive template engine."
category = "main"
optional = false
@@ -570,26 +568,12 @@ i18n = ["Babel (>=2.7)"]
[[package]]
name = "kiwisolver"
-version = "1.4.2"
+version = "1.4.3"
description = "A fast implementation of the Cassowary constraint solver"
category = "main"
optional = false
python-versions = ">=3.7"
-[[package]]
-name = "markdown"
-version = "3.3.6"
-description = "Python implementation of Markdown."
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.dependencies]
-importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""}
-
-[package.extras]
-testing = ["coverage", "pyyaml"]
-
[[package]]
name = "markupsafe"
version = "2.1.1"
@@ -600,7 +584,7 @@ python-versions = ">=3.7"
[[package]]
name = "matplotlib"
-version = "3.5.1"
+version = "3.5.2"
description = "Python plotting package"
category = "main"
optional = false
@@ -619,15 +603,15 @@ setuptools_scm = ">=4"
[[package]]
name = "nodeenv"
-version = "1.6.0"
+version = "1.7.0"
description = "Node.js virtual environment builder"
category = "dev"
optional = false
-python-versions = "*"
+python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*"
[[package]]
name = "numpy"
-version = "1.22.3"
+version = "1.23.0"
description = "NumPy is the fundamental package for array computing with Python."
category = "main"
optional = false
@@ -646,7 +630,7 @@ pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
[[package]]
name = "pandas"
-version = "1.4.2"
+version = "1.4.3"
description = "Powerful data structures for data analysis, time series, and statistics"
category = "main"
optional = false
@@ -665,55 +649,16 @@ pytz = ">=2020.1"
[package.extras]
test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"]
-[[package]]
-name = "panel"
-version = "0.13.0"
-description = "A high level app and dashboarding solution for Python."
-category = "main"
-optional = false
-python-versions = ">=3.6"
-
-[package.dependencies]
-bleach = "*"
-bokeh = ">=2.4.0,<2.5.0"
-markdown = "*"
-param = ">=1.12.0"
-pyct = ">=0.4.4"
-pyviz-comms = ">=0.7.4"
-requests = "*"
-tqdm = ">=4.48.0"
-
-[package.extras]
-all = ["aiohttp", "altair", "channels", "codecov", "croniter", "datashader", "django (<4)", "flake8", "folium", "graphviz", "holoviews", "holoviews (>1.14.1)", "hvplot", "ipyleaflet", "ipympl", "ipython (>=7.0)", "ipyvolume", "ipywidgets", "ipywidgets-bokeh", "jupyter-bokeh (>=3.0.2)", "lxml", "matplotlib (<3.4)", "nbsite (>=0.7.1)", "nbsmoke (>=0.2.0)", "networkx (>=2.5)", "notebook (>=5.4)", "pandas (>=1.3)", "parameterized", "pillow", "plotly", "plotly (>=4.0)", "pydata-sphinx-theme", "pydeck", "pygraphviz", "pyinstrument (>=4.0)", "pytest", "pytest-cov", "python-graphviz", "pyvista (<0.33)", "scikit-learn", "scipy", "sphinx-copybutton", "streamz", "twine", "vega-datasets", "vtk (==9.0.1)", "xarray"]
-build = ["param (>=1.9.2)", "pyct (>=0.4.4)", "setuptools (>=42)", "bokeh (>=2.0.0)", "pyviz-comms (>=0.6.0)", "bleach", "tqdm", "twine", "rfc3986 (>=1.4.0)"]
-doc = ["notebook (>=5.4)", "holoviews (>1.14.1)", "matplotlib (<3.4)", "pillow", "plotly", "nbsite (>=0.7.1)", "graphviz", "lxml", "python-graphviz", "pydata-sphinx-theme", "sphinx-copybutton", "pydeck"]
-examples = ["hvplot", "plotly (>=4.0)", "altair", "streamz", "vega-datasets", "vtk (==9.0.1)", "scikit-learn", "datashader", "jupyter-bokeh (>=3.0.2)", "django (<4)", "channels", "pyvista (<0.33)", "ipywidgets", "ipywidgets-bokeh", "ipyvolume", "ipyleaflet", "ipympl", "folium", "xarray", "pyinstrument (>=4.0)", "aiohttp", "croniter", "graphviz", "networkx (>=2.5)", "pygraphviz"]
-recommended = ["notebook (>=5.4)", "holoviews (>1.14.1)", "matplotlib (<3.4)", "pillow", "plotly"]
-tests = ["flake8", "parameterized", "pytest", "scipy", "nbsmoke (>=0.2.0)", "pytest-cov", "codecov", "folium", "ipympl", "twine", "pandas (>=1.3)", "ipython (>=7.0)", "holoviews"]
-
-[[package]]
-name = "param"
-version = "1.12.1"
-description = "Make your Python code clearer and more reliable by declaring Parameters."
-category = "main"
-optional = false
-python-versions = ">=2.7"
-
-[package.extras]
-all = ["aiohttp", "flake8", "graphviz", "jinja2 (<3.1)", "myst-parser", "myst-nb (==0.12.2)", "nbconvert", "nbsite (>=0.7.1)", "pandas", "panel", "pydata-sphinx-theme", "pygraphviz", "pytest", "pytest-cov", "sphinx-copybutton"]
-doc = ["pygraphviz", "nbsite (>=0.7.1)", "pydata-sphinx-theme", "jinja2 (<3.1)", "myst-parser", "nbconvert", "graphviz", "myst-nb (==0.12.2)", "sphinx-copybutton", "aiohttp", "panel", "pandas"]
-tests = ["pytest", "pytest-cov", "flake8"]
-
[[package]]
name = "pillow"
-version = "9.1.0"
+version = "9.2.0"
description = "Python Imaging Library (Fork)"
category = "main"
optional = false
python-versions = ">=3.7"
[package.extras]
-docs = ["olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinx-rtd-theme (>=1.0)", "sphinxext-opengraph"]
+docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"]
tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"]
[[package]]
@@ -730,14 +675,13 @@ test = ["appdirs (==1.4.4)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)", "pytes
[[package]]
name = "plotly"
-version = "5.7.0"
+version = "5.9.0"
description = "An open-source, interactive data visualization library for Python"
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
-six = "*"
tenacity = ">=6.2.0"
[[package]]
@@ -754,7 +698,7 @@ testing = ["pytest", "pytest-benchmark"]
[[package]]
name = "pre-commit"
-version = "2.18.1"
+version = "2.19.0"
description = "A framework for managing and maintaining multi-language pre-commit hooks."
category = "dev"
optional = false
@@ -770,17 +714,17 @@ virtualenv = ">=20.0.8"
[[package]]
name = "proto-plus"
-version = "1.20.3"
+version = "1.20.6"
description = "Beautiful, Pythonic protocol buffers."
category = "main"
optional = false
python-versions = ">=3.6"
[package.dependencies]
-protobuf = ">=3.19.0"
+protobuf = ">=3.19.0,<5.0.0dev"
[package.extras]
-testing = ["google-api-core[grpc] (>=1.22.2)"]
+testing = ["google-api-core[grpc] (>=1.31.5)"]
[[package]]
name = "protobuf"
@@ -800,7 +744,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "pyarrow"
-version = "7.0.0"
+version = "8.0.0"
description = "Python library for Apache Arrow"
category = "main"
optional = false
@@ -828,23 +772,6 @@ python-versions = "*"
[package.dependencies]
pyasn1 = ">=0.4.6,<0.5.0"
-[[package]]
-name = "pyct"
-version = "0.4.8"
-description = "Python package common tasks for users (e.g. copy examples, fetch data, ...)"
-category = "main"
-optional = false
-python-versions = ">=2.7"
-
-[package.dependencies]
-param = ">=1.7.0"
-
-[package.extras]
-build = ["setuptools", "param (>=1.7.0)"]
-cmd = ["pyyaml", "requests"]
-doc = ["nbsite", "sphinx-ioam-theme"]
-tests = ["flake8", "pytest"]
-
[[package]]
name = "pygments"
version = "2.12.0"
@@ -855,7 +782,7 @@ python-versions = ">=3.6"
[[package]]
name = "pyparsing"
-version = "3.0.8"
+version = "3.0.9"
description = "pyparsing module - Classes and methods to define and execute parsing grammars"
category = "main"
optional = false
@@ -942,47 +869,31 @@ category = "main"
optional = false
python-versions = "*"
-[[package]]
-name = "pyviz-comms"
-version = "2.2.0"
-description = "Bidirectional communication for the HoloViz ecosystem."
-category = "main"
-optional = false
-python-versions = "*"
-
-[package.dependencies]
-param = "*"
-
-[package.extras]
-all = ["flake8", "jupyter-packaging (>=0.7.9,<0.8.0)", "jupyterlab (>=3.0,<4.0)", "keyring", "nose", "rfc3986", "setuptools (>=40.8.0,<61)", "twine"]
-build = ["setuptools (>=40.8.0,<61)", "jupyterlab (>=3.0,<4.0)", "jupyter-packaging (>=0.7.9,<0.8.0)", "twine", "rfc3986", "keyring"]
-tests = ["flake8", "nose"]
-
[[package]]
name = "pyyaml"
version = "6.0"
description = "YAML parser and emitter for Python"
-category = "main"
+category = "dev"
optional = false
python-versions = ">=3.6"
[[package]]
name = "requests"
-version = "2.27.1"
+version = "2.28.1"
description = "Python HTTP for Humans."
category = "main"
optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
+python-versions = ">=3.7, <4"
[package.dependencies]
certifi = ">=2017.4.17"
-charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""}
-idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""}
+charset-normalizer = ">=2,<3"
+idna = ">=2.5,<4"
urllib3 = ">=1.21.1,<1.27"
[package.extras]
-socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"]
-use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"]
+socks = ["PySocks (>=1.5.6,!=1.5.7)"]
+use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"]
[[package]]
name = "rsa"
@@ -997,15 +908,16 @@ pyasn1 = ">=0.1.3"
[[package]]
name = "setuptools-scm"
-version = "6.4.2"
+version = "7.0.4"
description = "the blessed package to manage your versions by scm tags"
category = "main"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.7"
[package.dependencies]
packaging = ">=20.0"
tomli = ">=1.0.0"
+typing-extensions = "*"
[package.extras]
test = ["pytest (>=6.2)", "virtualenv (>20)"]
@@ -1219,17 +1131,9 @@ category = "main"
optional = false
python-versions = ">=3.7"
-[[package]]
-name = "tornado"
-version = "6.1"
-description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
-category = "main"
-optional = false
-python-versions = ">= 3.5"
-
[[package]]
name = "tox"
-version = "3.25.0"
+version = "3.25.1"
description = "tox is a generic virtualenv management and test command line tool"
category = "dev"
optional = false
@@ -1280,26 +1184,9 @@ tox = {version = ">=3.7.0", markers = "python_version >= \"3\""}
[package.extras]
test = ["coverage", "pytest", "pycodestyle", "pylint"]
-[[package]]
-name = "tqdm"
-version = "4.64.0"
-description = "Fast, Extensible Progress Meter"
-category = "main"
-optional = false
-python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
-
-[package.dependencies]
-colorama = {version = "*", markers = "platform_system == \"Windows\""}
-
-[package.extras]
-dev = ["py-make (>=0.1.0)", "twine", "wheel"]
-notebook = ["ipywidgets (>=6)"]
-slack = ["slack-sdk"]
-telegram = ["requests"]
-
[[package]]
name = "typing-extensions"
-version = "4.2.0"
+version = "4.3.0"
description = "Backported and Experimental Type Hints for Python 3.7+"
category = "main"
optional = false
@@ -1320,7 +1207,7 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
[[package]]
name = "virtualenv"
-version = "20.14.1"
+version = "20.15.1"
description = "Virtual Python Environment builder"
category = "dev"
optional = false
@@ -1336,14 +1223,6 @@ six = ">=1.9.0,<2"
docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=21.3)"]
testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)"]
-[[package]]
-name = "webencodings"
-version = "0.5.1"
-description = "Character encoding aliases for legacy web content"
-category = "main"
-optional = false
-python-versions = "*"
-
[[package]]
name = "werkzeug"
version = "2.1.2"
@@ -1373,7 +1252,7 @@ docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-tabs", "sphinx-charts", "sphinx-ma
[metadata]
lock-version = "1.1"
python-versions = ">=3.8,<3.11"
-content-hash = "757bae428cef7aef6a72ed8baa463c5e1ee5c799ddd7b7eaa6a26b6236f33ece"
+content-hash = "2f5c58b9b3996ac9336faadd7b3375c9c035e4766096a6d3c794df1e944e2cad"
[metadata.files]
alabaster = [
@@ -1389,16 +1268,8 @@ attrs = [
{file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"},
]
babel = [
- {file = "Babel-2.10.1-py3-none-any.whl", hash = "sha256:3f349e85ad3154559ac4930c3918247d319f21910d5ce4b25d439ed8693b98d2"},
- {file = "Babel-2.10.1.tar.gz", hash = "sha256:98aeaca086133efb3e1e2aad0396987490c8425929ddbcfe0550184fdc54cd13"},
-]
-bleach = [
- {file = "bleach-5.0.0-py3-none-any.whl", hash = "sha256:08a1fe86d253b5c88c92cc3d810fd8048a16d15762e1e5b74d502256e5926aa1"},
- {file = "bleach-5.0.0.tar.gz", hash = "sha256:c6d6cc054bdc9c83b48b8083e236e5f00f238428666d2ce2e083eaa5fd568565"},
-]
-bokeh = [
- {file = "bokeh-2.4.2-py3-none-any.whl", hash = "sha256:2a842d717feeee802e668054277c09054b6f1561557a16dddaf5f7c452f2728c"},
- {file = "bokeh-2.4.2.tar.gz", hash = "sha256:f0a4b53364ed3b7eb936c5cb1a4f4132369e394c7ae0a8ef420459410958033d"},
+ {file = "Babel-2.10.3-py3-none-any.whl", hash = "sha256:ff56f4892c1c4bf0d814575ea23471c230d544203c7748e8c68f0089478d48eb"},
+ {file = "Babel-2.10.3.tar.gz", hash = "sha256:7614553711ee97490f732126dc077f8d0ae084ebc6a96e23db1482afabdb2c51"},
]
brotli = [
{file = "Brotli-1.0.9-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:268fe94547ba25b58ebc724680609c8ee3e5a843202e9a381f6f9c5e8bdb5c70"},
@@ -1464,85 +1335,87 @@ brotli = [
{file = "Brotli-1.0.9-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:76ffebb907bec09ff511bb3acc077695e2c32bc2142819491579a695f77ffd4d"},
{file = "Brotli-1.0.9.zip", hash = "sha256:4d1b810aa0ed773f81dceda2cc7b403d01057458730e309856356d4ef4188438"},
]
+cachelib = []
cachetools = [
- {file = "cachetools-5.0.0-py3-none-any.whl", hash = "sha256:8fecd4203a38af17928be7b90689d8083603073622229ca7077b72d8e5a976e4"},
- {file = "cachetools-5.0.0.tar.gz", hash = "sha256:486471dfa8799eb7ec503a8059e263db000cdda20075ce5e48903087f79d5fd6"},
+ {file = "cachetools-5.2.0-py3-none-any.whl", hash = "sha256:f9f17d2aec496a9aa6b76f53e3b614c965223c061982d434d160f930c698a9db"},
+ {file = "cachetools-5.2.0.tar.gz", hash = "sha256:6a94c6402995a99c3970cc7e4884bb60b4a8639938157eeed436098bf9831757"},
]
certifi = [
- {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"},
- {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"},
+ {file = "certifi-2022.6.15-py3-none-any.whl", hash = "sha256:fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412"},
+ {file = "certifi-2022.6.15.tar.gz", hash = "sha256:84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d"},
]
cfgv = [
{file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"},
{file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"},
]
charset-normalizer = [
- {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"},
- {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"},
+ {file = "charset-normalizer-2.1.0.tar.gz", hash = "sha256:575e708016ff3a5e3681541cb9d79312c416835686d054a23accb873b254f413"},
+ {file = "charset_normalizer-2.1.0-py3-none-any.whl", hash = "sha256:5189b6f22b01957427f35b6a08d9a0bc45b46d3788ef5a92e978433c7a35f8a5"},
]
click = [
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
]
colorama = [
- {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
- {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"},
+ {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
+ {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
]
coverage = [
- {file = "coverage-6.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9b27d894748475fa858f9597c0ee1d4829f44683f3813633aaf94b19cb5453cf"},
- {file = "coverage-6.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:37d1141ad6b2466a7b53a22e08fe76994c2d35a5b6b469590424a9953155afac"},
- {file = "coverage-6.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9987b0354b06d4df0f4d3e0ec1ae76d7ce7cbca9a2f98c25041eb79eec766f1"},
- {file = "coverage-6.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:26e2deacd414fc2f97dd9f7676ee3eaecd299ca751412d89f40bc01557a6b1b4"},
- {file = "coverage-6.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4dd8bafa458b5c7d061540f1ee9f18025a68e2d8471b3e858a9dad47c8d41903"},
- {file = "coverage-6.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:46191097ebc381fbf89bdce207a6c107ac4ec0890d8d20f3360345ff5976155c"},
- {file = "coverage-6.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6f89d05e028d274ce4fa1a86887b071ae1755082ef94a6740238cd7a8178804f"},
- {file = "coverage-6.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:58303469e9a272b4abdb9e302a780072c0633cdcc0165db7eec0f9e32f901e05"},
- {file = "coverage-6.3.2-cp310-cp310-win32.whl", hash = "sha256:2fea046bfb455510e05be95e879f0e768d45c10c11509e20e06d8fcaa31d9e39"},
- {file = "coverage-6.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:a2a8b8bcc399edb4347a5ca8b9b87e7524c0967b335fbb08a83c8421489ddee1"},
- {file = "coverage-6.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f1555ea6d6da108e1999b2463ea1003fe03f29213e459145e70edbaf3e004aaa"},
- {file = "coverage-6.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5f4e1edcf57ce94e5475fe09e5afa3e3145081318e5fd1a43a6b4539a97e518"},
- {file = "coverage-6.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a15dc0a14008f1da3d1ebd44bdda3e357dbabdf5a0b5034d38fcde0b5c234b7"},
- {file = "coverage-6.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21b7745788866028adeb1e0eca3bf1101109e2dc58456cb49d2d9b99a8c516e6"},
- {file = "coverage-6.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:8ce257cac556cb03be4a248d92ed36904a59a4a5ff55a994e92214cde15c5bad"},
- {file = "coverage-6.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b0be84e5a6209858a1d3e8d1806c46214e867ce1b0fd32e4ea03f4bd8b2e3359"},
- {file = "coverage-6.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:acf53bc2cf7282ab9b8ba346746afe703474004d9e566ad164c91a7a59f188a4"},
- {file = "coverage-6.3.2-cp37-cp37m-win32.whl", hash = "sha256:8bdde1177f2311ee552f47ae6e5aa7750c0e3291ca6b75f71f7ffe1f1dab3dca"},
- {file = "coverage-6.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b31651d018b23ec463e95cf10070d0b2c548aa950a03d0b559eaa11c7e5a6fa3"},
- {file = "coverage-6.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:07e6db90cd9686c767dcc593dff16c8c09f9814f5e9c51034066cad3373b914d"},
- {file = "coverage-6.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2c6dbb42f3ad25760010c45191e9757e7dce981cbfb90e42feef301d71540059"},
- {file = "coverage-6.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c76aeef1b95aff3905fb2ae2d96e319caca5b76fa41d3470b19d4e4a3a313512"},
- {file = "coverage-6.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cf5cfcb1521dc3255d845d9dca3ff204b3229401994ef8d1984b32746bb45ca"},
- {file = "coverage-6.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fbbdc8d55990eac1b0919ca69eb5a988a802b854488c34b8f37f3e2025fa90d"},
- {file = "coverage-6.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ec6bc7fe73a938933d4178c9b23c4e0568e43e220aef9472c4f6044bfc6dd0f0"},
- {file = "coverage-6.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9baff2a45ae1f17c8078452e9e5962e518eab705e50a0aa8083733ea7d45f3a6"},
- {file = "coverage-6.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fd9e830e9d8d89b20ab1e5af09b32d33e1a08ef4c4e14411e559556fd788e6b2"},
- {file = "coverage-6.3.2-cp38-cp38-win32.whl", hash = "sha256:f7331dbf301b7289013175087636bbaf5b2405e57259dd2c42fdcc9fcc47325e"},
- {file = "coverage-6.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:68353fe7cdf91f109fc7d474461b46e7f1f14e533e911a2a2cbb8b0fc8613cf1"},
- {file = "coverage-6.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b78e5afb39941572209f71866aa0b206c12f0109835aa0d601e41552f9b3e620"},
- {file = "coverage-6.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4e21876082ed887baed0146fe222f861b5815455ada3b33b890f4105d806128d"},
- {file = "coverage-6.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34626a7eee2a3da12af0507780bb51eb52dca0e1751fd1471d0810539cefb536"},
- {file = "coverage-6.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1ebf730d2381158ecf3dfd4453fbca0613e16eaa547b4170e2450c9707665ce7"},
- {file = "coverage-6.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd6fe30bd519694b356cbfcaca9bd5c1737cddd20778c6a581ae20dc8c04def2"},
- {file = "coverage-6.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:96f8a1cb43ca1422f36492bebe63312d396491a9165ed3b9231e778d43a7fca4"},
- {file = "coverage-6.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:dd035edafefee4d573140a76fdc785dc38829fe5a455c4bb12bac8c20cfc3d69"},
- {file = "coverage-6.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5ca5aeb4344b30d0bec47481536b8ba1181d50dbe783b0e4ad03c95dc1296684"},
- {file = "coverage-6.3.2-cp39-cp39-win32.whl", hash = "sha256:f5fa5803f47e095d7ad8443d28b01d48c0359484fec1b9d8606d0e3282084bc4"},
- {file = "coverage-6.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:9548f10d8be799551eb3a9c74bbf2b4934ddb330e08a73320123c07f95cc2d92"},
- {file = "coverage-6.3.2-pp36.pp37.pp38-none-any.whl", hash = "sha256:18d520c6860515a771708937d2f78f63cc47ab3b80cb78e86573b0a760161faf"},
- {file = "coverage-6.3.2.tar.gz", hash = "sha256:03e2a7826086b91ef345ff18742ee9fc47a6839ccd517061ef8fa1976e652ce9"},
+ {file = "coverage-6.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f1d5aa2703e1dab4ae6cf416eb0095304f49d004c39e9db1d86f57924f43006b"},
+ {file = "coverage-6.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4ce1b258493cbf8aec43e9b50d89982346b98e9ffdfaae8ae5793bc112fb0068"},
+ {file = "coverage-6.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83c4e737f60c6936460c5be330d296dd5b48b3963f48634c53b3f7deb0f34ec4"},
+ {file = "coverage-6.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84e65ef149028516c6d64461b95a8dbcfce95cfd5b9eb634320596173332ea84"},
+ {file = "coverage-6.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f69718750eaae75efe506406c490d6fc5a6161d047206cc63ce25527e8a3adad"},
+ {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e57816f8ffe46b1df8f12e1b348f06d164fd5219beba7d9433ba79608ef011cc"},
+ {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:01c5615d13f3dd3aa8543afc069e5319cfa0c7d712f6e04b920431e5c564a749"},
+ {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:75ab269400706fab15981fd4bd5080c56bd5cc07c3bccb86aab5e1d5a88dc8f4"},
+ {file = "coverage-6.4.1-cp310-cp310-win32.whl", hash = "sha256:a7f3049243783df2e6cc6deafc49ea123522b59f464831476d3d1448e30d72df"},
+ {file = "coverage-6.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:ee2ddcac99b2d2aec413e36d7a429ae9ebcadf912946b13ffa88e7d4c9b712d6"},
+ {file = "coverage-6.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fb73e0011b8793c053bfa85e53129ba5f0250fdc0392c1591fd35d915ec75c46"},
+ {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:106c16dfe494de3193ec55cac9640dd039b66e196e4641fa8ac396181578b982"},
+ {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87f4f3df85aa39da00fd3ec4b5abeb7407e82b68c7c5ad181308b0e2526da5d4"},
+ {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:961e2fb0680b4f5ad63234e0bf55dfb90d302740ae9c7ed0120677a94a1590cb"},
+ {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cec3a0f75c8f1031825e19cd86ee787e87cf03e4fd2865c79c057092e69e3a3b"},
+ {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:129cd05ba6f0d08a766d942a9ed4b29283aff7b2cccf5b7ce279d50796860bb3"},
+ {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:bf5601c33213d3cb19d17a796f8a14a9eaa5e87629a53979a5981e3e3ae166f6"},
+ {file = "coverage-6.4.1-cp37-cp37m-win32.whl", hash = "sha256:269eaa2c20a13a5bf17558d4dc91a8d078c4fa1872f25303dddcbba3a813085e"},
+ {file = "coverage-6.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:f02cbbf8119db68455b9d763f2f8737bb7db7e43720afa07d8eb1604e5c5ae28"},
+ {file = "coverage-6.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ffa9297c3a453fba4717d06df579af42ab9a28022444cae7fa605af4df612d54"},
+ {file = "coverage-6.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:145f296d00441ca703a659e8f3eb48ae39fb083baba2d7ce4482fb2723e050d9"},
+ {file = "coverage-6.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d44996140af8b84284e5e7d398e589574b376fb4de8ccd28d82ad8e3bea13"},
+ {file = "coverage-6.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2bd9a6fc18aab8d2e18f89b7ff91c0f34ff4d5e0ba0b33e989b3cd4194c81fd9"},
+ {file = "coverage-6.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3384f2a3652cef289e38100f2d037956194a837221edd520a7ee5b42d00cc605"},
+ {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9b3e07152b4563722be523e8cd0b209e0d1a373022cfbde395ebb6575bf6790d"},
+ {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1480ff858b4113db2718848d7b2d1b75bc79895a9c22e76a221b9d8d62496428"},
+ {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:865d69ae811a392f4d06bde506d531f6a28a00af36f5c8649684a9e5e4a85c83"},
+ {file = "coverage-6.4.1-cp38-cp38-win32.whl", hash = "sha256:664a47ce62fe4bef9e2d2c430306e1428ecea207ffd68649e3b942fa8ea83b0b"},
+ {file = "coverage-6.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:26dff09fb0d82693ba9e6231248641d60ba606150d02ed45110f9ec26404ed1c"},
+ {file = "coverage-6.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d9c80df769f5ec05ad21ea34be7458d1dc51ff1fb4b2219e77fe24edf462d6df"},
+ {file = "coverage-6.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:39ee53946bf009788108b4dd2894bf1349b4e0ca18c2016ffa7d26ce46b8f10d"},
+ {file = "coverage-6.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5b66caa62922531059bc5ac04f836860412f7f88d38a476eda0a6f11d4724f4"},
+ {file = "coverage-6.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd180ed867e289964404051a958f7cccabdeed423f91a899829264bb7974d3d3"},
+ {file = "coverage-6.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84631e81dd053e8a0d4967cedab6db94345f1c36107c71698f746cb2636c63e3"},
+ {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8c08da0bd238f2970230c2a0d28ff0e99961598cb2e810245d7fc5afcf1254e8"},
+ {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d42c549a8f41dc103a8004b9f0c433e2086add8a719da00e246e17cbe4056f72"},
+ {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:309ce4a522ed5fca432af4ebe0f32b21d6d7ccbb0f5fcc99290e71feba67c264"},
+ {file = "coverage-6.4.1-cp39-cp39-win32.whl", hash = "sha256:fdb6f7bd51c2d1714cea40718f6149ad9be6a2ee7d93b19e9f00934c0f2a74d9"},
+ {file = "coverage-6.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:342d4aefd1c3e7f620a13f4fe563154d808b69cccef415415aece4c786665397"},
+ {file = "coverage-6.4.1-pp36.pp37.pp38-none-any.whl", hash = "sha256:4803e7ccf93230accb928f3a68f00ffa80a88213af98ed338a57ad021ef06815"},
+ {file = "coverage-6.4.1.tar.gz", hash = "sha256:4321f075095a096e70aff1d002030ee612b65a205a0a0f5b815280d5dc58100c"},
]
cycler = [
{file = "cycler-0.11.0-py3-none-any.whl", hash = "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3"},
{file = "cycler-0.11.0.tar.gz", hash = "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f"},
]
dash = [
- {file = "dash-2.4.1-py3-none-any.whl", hash = "sha256:44ad5593d69f8aba37e4dd8fa07b1e5dfc012aebd8cccf6e4f68591bca02d177"},
- {file = "dash-2.4.1.tar.gz", hash = "sha256:aef5fdbb2e948a378c1c8175d52a76c59cf998c62b25eaff616cd947310b04d3"},
+ {file = "dash-2.5.1-py3-none-any.whl", hash = "sha256:1b9110bcde7559a8405095901d4f7cfcfd18054b0c9758ec8562b3977824fbfe"},
+ {file = "dash-2.5.1.tar.gz", hash = "sha256:343c802006abcaf71aadd8c3f55737ea7c72116e62fff465e980f9f1f304f1ee"},
]
dash-core-components = [
{file = "dash_core_components-2.0.0-py3-none-any.whl", hash = "sha256:52b8e8cce13b18d0802ee3acbc5e888cb1248a04968f962d63d070400af2e346"},
{file = "dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee"},
]
+dash-daq = []
dash-html-components = [
{file = "dash_html_components-2.0.0-py3-none-any.whl", hash = "sha256:b42cc903713c9706af03b3f2548bda4be7307a7cf89b7d6eae3da872717d1b63"},
{file = "dash_html_components-2.0.0.tar.gz", hash = "sha256:8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50"},
@@ -1552,8 +1425,8 @@ dash-table = [
{file = "dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308"},
]
db-dtypes = [
- {file = "db-dtypes-1.0.0.tar.gz", hash = "sha256:3070d1a8d86ff0b5d9b16f15c5fab9c18893c6b3d5723cd95ee397b169049454"},
- {file = "db_dtypes-1.0.0-py2.py3-none-any.whl", hash = "sha256:66f6c1b87161814292a2856d1acc17fd4af1b7055853dc7d11af33dc5b94f64e"},
+ {file = "db-dtypes-1.0.2.tar.gz", hash = "sha256:7f1b5d9a75309e22d24b85914383f819636c3d487238c0ad4fa304879e04303e"},
+ {file = "db_dtypes-1.0.2-py2.py3-none-any.whl", hash = "sha256:1016122f37ee077f5d984dd00b4b25c72b39b579997739d8deb437225c48b5d7"},
]
distlib = [
{file = "distlib-0.3.4-py2.py3-none-any.whl", hash = "sha256:6564fe0a8f51e734df6333d08b8b94d4ea8ee6b99b5ed50613f731fd4089f34b"},
@@ -1564,13 +1437,14 @@ docutils = [
{file = "docutils-0.16.tar.gz", hash = "sha256:c2de3a60e9e7d07be26b7f2b00ca0309c207e06c100f9cc2a94931fc75a478fc"},
]
filelock = [
- {file = "filelock-3.6.0-py3-none-any.whl", hash = "sha256:f8314284bfffbdcfa0ff3d7992b023d4c628ced6feb957351d4c48d059f56bc0"},
- {file = "filelock-3.6.0.tar.gz", hash = "sha256:9cd540a9352e432c7246a48fe4e8712b10acb1df2ad1f30e8c070b82ae1fed85"},
+ {file = "filelock-3.7.1-py3-none-any.whl", hash = "sha256:37def7b658813cda163b56fc564cdc75e86d338246458c4c28ae84cabefa2404"},
+ {file = "filelock-3.7.1.tar.gz", hash = "sha256:3a0fd85166ad9dbab54c9aec96737b744106dc5f15c0b09a6744a445299fcf04"},
]
flask = [
{file = "Flask-2.1.2-py3-none-any.whl", hash = "sha256:fad5b446feb0d6db6aec0c3184d16a8c1f6c3e464b511649c8918a9be100b4fe"},
{file = "Flask-2.1.2.tar.gz", hash = "sha256:315ded2ddf8a6281567edb27393010fe3406188bafbfe65a3339d5787d89e477"},
]
+flask-caching = []
flask-compress = [
{file = "Flask-Compress-1.12.tar.gz", hash = "sha256:e2159499f39d618a4d56ba0484e7b58b57956b9a2c6d3510f095f5bb14b7afc5"},
{file = "Flask_Compress-1.12-py3-none-any.whl", hash = "sha256:9f4e40211755e86f85e5eb7d414856ef1e8751912caa78d62853169400335f0c"},
@@ -1580,24 +1454,21 @@ fonttools = [
{file = "fonttools-4.33.3.zip", hash = "sha256:c0fdcfa8ceebd7c1b2021240bd46ef77aa8e7408cf10434be55df52384865f8e"},
]
google-api-core = [
- {file = "google-api-core-2.7.2.tar.gz", hash = "sha256:65480309a7437f739e4476da037af02a3ec8263f1d1f89f72bbdc8f54fe402d2"},
- {file = "google_api_core-2.7.2-py3-none-any.whl", hash = "sha256:8fcbe52dc129fd83dca4e638a76f22b3a11579c493e643134e50e9870b233302"},
+ {file = "google-api-core-2.8.2.tar.gz", hash = "sha256:06f7244c640322b508b125903bb5701bebabce8832f85aba9335ec00b3d02edc"},
+ {file = "google_api_core-2.8.2-py3-none-any.whl", hash = "sha256:93c6a91ccac79079ac6bbf8b74ee75db970cc899278b97d53bc012f35908cf50"},
]
google-auth = [
- {file = "google-auth-2.6.6.tar.gz", hash = "sha256:1ba4938e032b73deb51e59c4656a00e0939cf0b1112575099f136babb4563312"},
- {file = "google_auth-2.6.6-py2.py3-none-any.whl", hash = "sha256:349ac49b18b01019453cc99c11c92ed772739778c92f184002b7ab3a5b7ac77d"},
-]
-google-cloud-bigquery = [
- {file = "google-cloud-bigquery-3.1.0.tar.gz", hash = "sha256:d2d6caf78d1c133e7ffd9b0b7e2d7df1f9b2f703de377497b96d9a74cfe8ec02"},
- {file = "google_cloud_bigquery-3.1.0-py2.py3-none-any.whl", hash = "sha256:d7cf136dccb6e754bc364553c7a92d31c90fbdb74d06f311a489588d548ac655"},
+ {file = "google-auth-2.9.0.tar.gz", hash = "sha256:3b2f9d2f436cc7c3b363d0ac66470f42fede249c3bafcc504e9f0bcbe983cff0"},
+ {file = "google_auth-2.9.0-py2.py3-none-any.whl", hash = "sha256:75b3977e7e22784607e074800048f44d6a56df589fb2abe58a11d4d20c97c314"},
]
+google-cloud-bigquery = []
google-cloud-bigquery-storage = [
- {file = "google-cloud-bigquery-storage-2.13.1.tar.gz", hash = "sha256:7a25148f635a04ca9ff568d47e64be275d3a4a3c90772524879e8f88f270d92d"},
- {file = "google_cloud_bigquery_storage-2.13.1-py2.py3-none-any.whl", hash = "sha256:4f3845535c77f9271a03046438e43cfd56df575d0c5f2ee3362bf8760a0aba50"},
+ {file = "google-cloud-bigquery-storage-2.13.2.tar.gz", hash = "sha256:ac4ce734e805aca7e73a69617b14d31e690a113446136e92292a74e1d8b3e3b2"},
+ {file = "google_cloud_bigquery_storage-2.13.2-py2.py3-none-any.whl", hash = "sha256:b3f72c66e6c92afdb8ba76b81cceba1969d217a205c35acb4eb1a5257b7fd21d"},
]
google-cloud-core = [
- {file = "google-cloud-core-2.3.0.tar.gz", hash = "sha256:fdaa629e6174b4177c2d56eb8ab1ddd87661064d0a3e9bb06b62e4d7e2344669"},
- {file = "google_cloud_core-2.3.0-py2.py3-none-any.whl", hash = "sha256:35900f614045a33d5208e1d50f0d7945df98ce088388ce7237e7a2db12d5656e"},
+ {file = "google-cloud-core-2.3.1.tar.gz", hash = "sha256:34334359cb04187bdc80ddcf613e462dfd7a3aabbc3fe4d118517ab4b9303d53"},
+ {file = "google_cloud_core-2.3.1-py2.py3-none-any.whl", hash = "sha256:113ba4f492467d5bd442c8d724c1a25ad7384045c3178369038840ecdd19346c"},
]
google-crc32c = [
{file = "google-crc32c-1.3.0.tar.gz", hash = "sha256:276de6273eb074a35bc598f8efbc00c7869c5cf2e29c90748fccc8c898c244df"},
@@ -1645,96 +1516,88 @@ google-crc32c = [
{file = "google_crc32c-1.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:7f6fe42536d9dcd3e2ffb9d3053f5d05221ae3bbcefbe472bdf2c71c793e3183"},
]
google-resumable-media = [
- {file = "google-resumable-media-2.3.2.tar.gz", hash = "sha256:06924e8b1e79f158f0202e7dd151ad75b0ea9d59b997c850f56bdd4a5a361513"},
- {file = "google_resumable_media-2.3.2-py2.py3-none-any.whl", hash = "sha256:3c13f84813861ac8f5b6371254bdd437076bf1f3bac527a9f3fd123a70166f52"},
+ {file = "google-resumable-media-2.3.3.tar.gz", hash = "sha256:27c52620bd364d1c8116eaac4ea2afcbfb81ae9139fb3199652fcac1724bfb6c"},
+ {file = "google_resumable_media-2.3.3-py2.py3-none-any.whl", hash = "sha256:5b52774ea7a829a8cdaa8bd2d4c3d4bc660c91b30857ab2668d0eb830f4ea8c5"},
]
googleapis-common-protos = [
- {file = "googleapis-common-protos-1.56.0.tar.gz", hash = "sha256:4007500795bcfc269d279f0f7d253ae18d6dc1ff5d5a73613ffe452038b1ec5f"},
- {file = "googleapis_common_protos-1.56.0-py2.py3-none-any.whl", hash = "sha256:60220c89b8bd5272159bed4929ecdc1243ae1f73437883a499a44a1cbc084086"},
+ {file = "googleapis-common-protos-1.56.3.tar.gz", hash = "sha256:6f1369b58ed6cf3a4b7054a44ebe8d03b29c309257583a2bbdc064cd1e4a1442"},
+ {file = "googleapis_common_protos-1.56.3-py2.py3-none-any.whl", hash = "sha256:87955d7b3a73e6e803f2572a33179de23989ebba725e05ea42f24838b792e461"},
]
grpcio = [
- {file = "grpcio-1.45.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:0d74a159df9401747e57960f0772f4371486e3281919004efa9df8a82985abee"},
- {file = "grpcio-1.45.0-cp310-cp310-macosx_10_10_universal2.whl", hash = "sha256:4e6d15bfdfa28e5f6d524dd3b29c7dc129cfc578505b067aa97574490c5b70fe"},
- {file = "grpcio-1.45.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:44615be86e5540a18f5e4ca5a0f428d4b1efb800d255cfd9f902a11daca8fd74"},
- {file = "grpcio-1.45.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8b452f715e2cae9e75cb309f59a37f82e5b25f51f0bfc3cd1462de86265cef05"},
- {file = "grpcio-1.45.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db1c45daa35c64f17498af1ba6eb1d0a8d88a8a0b6b322f960ab461e7ef0419e"},
- {file = "grpcio-1.45.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:678a673fe811dad3ed5bd2e2352b79851236e4d718aeaeffc10f372a55954d8d"},
- {file = "grpcio-1.45.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a5c8a08aff0af770c977dcede62fbed53ae7b99adbc184d5299d148bb04652f1"},
- {file = "grpcio-1.45.0-cp310-cp310-win32.whl", hash = "sha256:1d764c8a190719301ec6f3b6ddeb48a234604e337d0fbb3184a4ddcda2aca9da"},
- {file = "grpcio-1.45.0-cp310-cp310-win_amd64.whl", hash = "sha256:797f5b750be6ff2905b9d0529a00c1f873d8035a5d01a9801910ace5f0d52a18"},
- {file = "grpcio-1.45.0-cp36-cp36m-linux_armv7l.whl", hash = "sha256:b46772b7eb58c6cb0b468b56d59618694d2c2f2cee2e5b4e83ae9729a46b8af0"},
- {file = "grpcio-1.45.0-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:2f135e5c8e9acd14f3090fd86dccb9d7c26aea7bfbd4528e8a86ff621d39e610"},
- {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:16603b9544a4af135ce4d594a7396602fbe62d1ccaa484b05cb1814c17a3e559"},
- {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ccba925045c00acc9ce2cc645b6fa9d19767dbb16c9c49921013da412b1d3415"},
- {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_17_aarch64.whl", hash = "sha256:7262b9d96db79e29049c7eb2b75b03f2b9485fd838209b5ff8e3cca73b2a706c"},
- {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a1c1098f35c33b985c312cacea39e2aa66f7ac1462579eed1d3aed2e51fff00d"},
- {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b18c86a9cfbedd0c4e083690fecc82027b3f938100ed0af8db77d52a171eb1e"},
- {file = "grpcio-1.45.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:638364d3603df9e4a1dbc2151b5fe1b491ceecda4e1672be86724e1dfa79c44d"},
- {file = "grpcio-1.45.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:8de79eac582431cb6d05ff5652e68089c40aa0e604ec1630fa52ac926bc44f1b"},
- {file = "grpcio-1.45.0-cp36-cp36m-win32.whl", hash = "sha256:6cf5f1827c182ef9b503d7d01e503c1067f4499d45af792d95ccd1d8b0bea30d"},
- {file = "grpcio-1.45.0-cp36-cp36m-win_amd64.whl", hash = "sha256:4f1a22744f93b38d393b7a83cb607029ac5e2de680cab39957ffdd116590a178"},
- {file = "grpcio-1.45.0-cp37-cp37m-linux_armv7l.whl", hash = "sha256:321f84dbc788481f7a3cd12636a133ba5f4d17e57f1c906de5a22fd709c971b5"},
- {file = "grpcio-1.45.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:a33ed7d3e52ddc839e2f020592a4371d805c2ae820fb63b12525058e1810fe46"},
- {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f9f28d8c5343602e1510d4839e38568bcd0ca6353bd98ad9941787584a371a1d"},
- {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3a40dbb8aac60cf6a86583e2ba74fc2c286f1abc7a3404b25dcd12a49b9f7d8b"},
- {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:b00ce58323dde47d2ea240d10ee745471b9966429c97d9e6567c8d56e02b0372"},
- {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd4944f35f1e5ab54804c3e37d24921ecc01908ef871cdce6bd52995ea4f985c"},
- {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc135b77f384a84bac67a37947886986be136356446338d64160a30c85f20c6d"},
- {file = "grpcio-1.45.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:35ae55460514ed404ceaa95533b9a79989691b562faf012fc8fb143d8fd16e47"},
- {file = "grpcio-1.45.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:779db3d00c8da1d3efa942387cb0fea9ac6d50124d656024f82f9faefdd016e3"},
- {file = "grpcio-1.45.0-cp37-cp37m-win32.whl", hash = "sha256:aea67bd3cbf93db552c725bc0b4db0acdc6a284d036d1cc32d638305e0f01fd9"},
- {file = "grpcio-1.45.0-cp37-cp37m-win_amd64.whl", hash = "sha256:7fe3ac700cc5ecba9dc9072c0e6cfd2f964ea9f273ce1111eaa27d13aa20ec32"},
- {file = "grpcio-1.45.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:259c126821fefcda298c020a0d83c4a4edac3cf10b1af12a62d250f8192ea1d1"},
- {file = "grpcio-1.45.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:5d05cd1b2b0975bb000ba97ca465565158dc211616c9bbbef5d1b77871974687"},
- {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6f2e044a715507fd13c70c928cd90daf8d0295c936a81fd9065a24e58ba7cc7d"},
- {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4d37c526b86c46d229f6117df5dca2510de597ab73c5956bc379ca41f8a1db84"},
- {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:6df338b8d2c328ba91a25e28786d10059dea3bc9115fa1ddad30ba5d459e714a"},
- {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:042921a824e90bf2974dbef7d89937096181298294799fb53e5576d9958884c7"},
- {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb23ed6ed84ae312df03e96c7a7cd3aa5f7e3a1ad7066fdb6cd47f1bd334196c"},
- {file = "grpcio-1.45.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:79582ec821ef10162348170a6e912d93ea257c749320a162dfc3a132ef25ac1b"},
- {file = "grpcio-1.45.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d14d372ea5a51d5ab991aa6d499a26e5a1e3b3f3af93f41826ea610f8a276c9e"},
- {file = "grpcio-1.45.0-cp38-cp38-win32.whl", hash = "sha256:b54444cf4212935a7b98cd26a30ad3a036389e4fd2ff3e461b176af876c7e20b"},
- {file = "grpcio-1.45.0-cp38-cp38-win_amd64.whl", hash = "sha256:da395720d6e9599c754f862f3f75bc0e8ff29fa55259e082e442a9cc916ffbc3"},
- {file = "grpcio-1.45.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:add03308fa2d434628aeaa445e0c75cdb9535f39128eb949b1483ae83fafade6"},
- {file = "grpcio-1.45.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:250d8f18332f3dbd4db00efa91d33d336e58362e9c80e6946d45ecf5e82d95ec"},
- {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dfca4dfd307b449d0a1e92bc7fbb5224ccf16db384aab412ba6766fc56bdffb6"},
- {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b7f2dc8831045eb0c892bb947e1cba2b1ed639e79a54abff7c4ad90bdd329f78"},
- {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:2355493a9e71f15d9004b2ab87892cb532e9e98db6882fced2912115eb5631af"},
- {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2798e42d62a0296982276d0bab96fc7d6772cd148357154348355304d6216763"},
- {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fe6acb1439127e0bee773f8a9a3ece290cb4cac4fe8d46b10bc8dda250a990c"},
- {file = "grpcio-1.45.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6774272a59b9ee16fb0d4f53e23716953a22bbb3efe12fdf9a4ee3eec2c4f81f"},
- {file = "grpcio-1.45.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52f61fcb17d92b87ba47d54b3c9deae09d4f0216a3ea277b7df4b6c1794e6556"},
- {file = "grpcio-1.45.0-cp39-cp39-win32.whl", hash = "sha256:3992c690228126e5652c7a1f61863c1ebfd71369cf2adb0fce86fee1d82d2d27"},
- {file = "grpcio-1.45.0-cp39-cp39-win_amd64.whl", hash = "sha256:220867a53e53b2e201e98c55061e3053e31c0ce613625087242be684d3e8612a"},
- {file = "grpcio-1.45.0.tar.gz", hash = "sha256:ff2c8b965b0fc25cf281961aa46619c10900543effe3f806ef818231c40aaff3"},
+ {file = "grpcio-1.47.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:544da3458d1d249bb8aed5504adf3e194a931e212017934bf7bfa774dad37fb3"},
+ {file = "grpcio-1.47.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:b88bec3f94a16411a1e0336eb69f335f58229e45d4082b12d8e554cedea97586"},
+ {file = "grpcio-1.47.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:06c0739dff9e723bca28ec22301f3711d85c2e652d1c8ae938aa0f7ad632ef9a"},
+ {file = "grpcio-1.47.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4508e8abd67ebcccd0fbde6e2b1917ba5d153f3f20c1de385abd8722545e05f"},
+ {file = "grpcio-1.47.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9723784cf264697024778dcf4b7542c851fe14b14681d6268fb984a53f76df1"},
+ {file = "grpcio-1.47.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1bb9afa85e797a646bfcd785309e869e80a375c959b11a17c9680abebacc0cb0"},
+ {file = "grpcio-1.47.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4d9ad7122f60157454f74a850d1337ba135146cef6fb7956d78c7194d52db0fe"},
+ {file = "grpcio-1.47.0-cp310-cp310-win32.whl", hash = "sha256:0425b5577be202d0a4024536bbccb1b052c47e0766096e6c3a5789ddfd5f400d"},
+ {file = "grpcio-1.47.0-cp310-cp310-win_amd64.whl", hash = "sha256:d0d481ff55ea6cc49dab2c8276597bd4f1a84a8745fedb4bc23e12e9fb9d0e45"},
+ {file = "grpcio-1.47.0-cp36-cp36m-linux_armv7l.whl", hash = "sha256:5f57b9b61c22537623a5577bf5f2f970dc4e50fac5391090114c6eb3ab5a129f"},
+ {file = "grpcio-1.47.0-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:14d2bc74218986e5edf5527e870b0969d63601911994ebf0dce96288548cf0ef"},
+ {file = "grpcio-1.47.0-cp36-cp36m-manylinux_2_17_aarch64.whl", hash = "sha256:c79996ae64dc4d8730782dff0d1daacc8ce7d4c2ba9cef83b6f469f73c0655ce"},
+ {file = "grpcio-1.47.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a24b50810aae90c74bbd901c3f175b9645802d2fbf03eadaf418ddee4c26668"},
+ {file = "grpcio-1.47.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:55782a31ec539f15b34ee56f19131fe1430f38a4be022eb30c85e0b0dcf57f11"},
+ {file = "grpcio-1.47.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:35dfd981b03a3ec842671d1694fe437ee9f7b9e6a02792157a2793b0eba4f478"},
+ {file = "grpcio-1.47.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:664a270d3eac68183ad049665b0f4d0262ec387d5c08c0108dbcfe5b351a8b4d"},
+ {file = "grpcio-1.47.0-cp36-cp36m-win32.whl", hash = "sha256:9298d6f2a81f132f72a7e79cbc90a511fffacc75045c2b10050bb87b86c8353d"},
+ {file = "grpcio-1.47.0-cp36-cp36m-win_amd64.whl", hash = "sha256:815089435d0f113719eabf105832e4c4fa1726b39ae3fb2ca7861752b0f70570"},
+ {file = "grpcio-1.47.0-cp37-cp37m-linux_armv7l.whl", hash = "sha256:7191ffc8bcf8a630c547287ab103e1fdf72b2e0c119e634d8a36055c1d988ad0"},
+ {file = "grpcio-1.47.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:1ec63bbd09586e5cda1bdc832ae6975d2526d04433a764a1cc866caa399e50d4"},
+ {file = "grpcio-1.47.0-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:08307dc5a6ac4da03146d6c00f62319e0665b01c6ffe805cfcaa955c17253f9c"},
+ {file = "grpcio-1.47.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:668350ea02af018ca945bd629754d47126b366d981ab88e0369b53bc781ffb14"},
+ {file = "grpcio-1.47.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64e097dd08bb408afeeaee9a56f75311c9ca5b27b8b0278279dc8eef85fa1051"},
+ {file = "grpcio-1.47.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:0d8a7f3eb6f290189f48223a5f4464c99619a9de34200ce80d5092fb268323d2"},
+ {file = "grpcio-1.47.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:f89de64d9eb3478b188859214752db50c91a749479011abd99e248550371375f"},
+ {file = "grpcio-1.47.0-cp37-cp37m-win32.whl", hash = "sha256:67cd275a651532d28620eef677b97164a5438c5afcfd44b15e8992afa9eb598c"},
+ {file = "grpcio-1.47.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f515782b168a4ec6ea241add845ccfebe187fc7b09adf892b3ad9e2592c60af1"},
+ {file = "grpcio-1.47.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:91cd292373e85a52c897fa5b4768c895e20a7dc3423449c64f0f96388dd1812e"},
+ {file = "grpcio-1.47.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:a278d02272214ec33f046864a24b5f5aab7f60f855de38c525e5b4ef61ec5b48"},
+ {file = "grpcio-1.47.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:bfdb8af4801d1c31a18d54b37f4e49bb268d1f485ecf47f70e78d56e04ff37a7"},
+ {file = "grpcio-1.47.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e63e0619a5627edb7a5eb3e9568b9f97e604856ba228cc1d8a9f83ce3d0466e"},
+ {file = "grpcio-1.47.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc34d182c4fd64b6ff8304a606b95e814e4f8ed4b245b6d6cc9607690e3ef201"},
+ {file = "grpcio-1.47.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a6b2432ac2353c80a56d9015dfc5c4af60245c719628d4193ecd75ddf9cd248c"},
+ {file = "grpcio-1.47.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fcd5d932842df503eb0bf60f9cc35e6fe732b51f499e78b45234e0be41b0018d"},
+ {file = "grpcio-1.47.0-cp38-cp38-win32.whl", hash = "sha256:43857d06b2473b640467467f8f553319b5e819e54be14c86324dad83a0547818"},
+ {file = "grpcio-1.47.0-cp38-cp38-win_amd64.whl", hash = "sha256:96cff5a2081db82fb710db6a19dd8f904bdebb927727aaf4d9c427984b79a4c1"},
+ {file = "grpcio-1.47.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:68b5e47fcca8481f36ef444842801928e60e30a5b3852c9f4a95f2582d10dcb2"},
+ {file = "grpcio-1.47.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0cd44d78f302ff67f11a8c49b786c7ccbed2cfef6f4fd7bb0c3dc9255415f8f7"},
+ {file = "grpcio-1.47.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:4706c78b0c183dca815bbb4ef3e8dd2136ccc8d1699f62c585e75e211ad388f6"},
+ {file = "grpcio-1.47.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:324e363bad4d89a8ec7124013371f268d43afd0ac0fdeec1b21c1a101eb7dafb"},
+ {file = "grpcio-1.47.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b821403907e865e8377af3eee62f0cb233ea2369ba0fcdce9505ca5bfaf4eeb3"},
+ {file = "grpcio-1.47.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2061dbe41e43b0a5e1fd423e8a7fb3a0cf11d69ce22d0fac21f1a8c704640b12"},
+ {file = "grpcio-1.47.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8dbef03853a0dbe457417c5469cb0f9d5bf47401b49d50c7dad3c495663b699b"},
+ {file = "grpcio-1.47.0-cp39-cp39-win32.whl", hash = "sha256:090dfa19f41efcbe760ae59b34da4304d4be9a59960c9682b7eab7e0b6748a79"},
+ {file = "grpcio-1.47.0-cp39-cp39-win_amd64.whl", hash = "sha256:55cd8b13c5ef22003889f599b8f2930836c6f71cd7cf3fc0196633813dc4f928"},
+ {file = "grpcio-1.47.0.tar.gz", hash = "sha256:5dbba95fab9b35957b4977b8904fc1fa56b302f9051eff4d7716ebb0c087f801"},
]
grpcio-status = [
- {file = "grpcio-status-1.45.0.tar.gz", hash = "sha256:4baad8e8ec3c44788e038c24e3d7dc70259e06ba09f40a5b8178538563ba3e5a"},
- {file = "grpcio_status-1.45.0-py3-none-any.whl", hash = "sha256:e21fa1d960f36c790fe6aa648e482442ecfb5c536fc50670b7c43320381377a9"},
+ {file = "grpcio-status-1.47.0.tar.gz", hash = "sha256:c9ce3213e84c6fd8801c31aca3ea4a6b3453eaa40b93a6c0a23ea8999808fa00"},
+ {file = "grpcio_status-1.47.0-py3-none-any.whl", hash = "sha256:2154fdb8aad20452488712be6879657b508115ca06139fde8897ea8e9bc79367"},
]
gunicorn = [
{file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"},
{file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"},
]
identify = [
- {file = "identify-2.4.12-py2.py3-none-any.whl", hash = "sha256:5f06b14366bd1facb88b00540a1de05b69b310cbc2654db3c7e07fa3a4339323"},
- {file = "identify-2.4.12.tar.gz", hash = "sha256:3f3244a559290e7d3deb9e9adc7b33594c1bc85a9dd82e0f1be519bf12a1ec17"},
+ {file = "identify-2.5.1-py2.py3-none-any.whl", hash = "sha256:0dca2ea3e4381c435ef9c33ba100a78a9b40c0bab11189c7cf121f75815efeaa"},
+ {file = "identify-2.5.1.tar.gz", hash = "sha256:3d11b16f3fe19f52039fb7e39c9c884b21cb1b586988114fbe42671f03de3e82"},
]
idna = [
{file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"},
{file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
]
imagesize = [
- {file = "imagesize-1.3.0-py2.py3-none-any.whl", hash = "sha256:1db2f82529e53c3e929e8926a1fa9235aa82d0bd0c580359c67ec31b2fddaa8c"},
- {file = "imagesize-1.3.0.tar.gz", hash = "sha256:cd1750d452385ca327479d45b64d9c7729ecf0b3969a58148298c77092261f9d"},
+ {file = "imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b"},
+ {file = "imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a"},
]
importlib-metadata = [
- {file = "importlib_metadata-4.11.3-py3-none-any.whl", hash = "sha256:1208431ca90a8cca1a6b8af391bb53c1a2db74e5d1cef6ddced95d4b2062edc6"},
- {file = "importlib_metadata-4.11.3.tar.gz", hash = "sha256:ea4c597ebf37142f827b8f39299579e31685c31d3a438b59f469406afd0f2539"},
+ {file = "importlib_metadata-4.12.0-py3-none-any.whl", hash = "sha256:7401a975809ea1fdc658c3aa4f78cc2195a0e019c5cbc4c06122884e9ae80c23"},
+ {file = "importlib_metadata-4.12.0.tar.gz", hash = "sha256:637245b8bab2b6502fcbc752cc4b7a6f6243bb02b31c5c26156ad103d3d45670"},
]
importlib-resources = [
- {file = "importlib_resources-5.7.1-py3-none-any.whl", hash = "sha256:e447dc01619b1e951286f3929be820029d48c75eb25d265c28b92a16548212b8"},
- {file = "importlib_resources-5.7.1.tar.gz", hash = "sha256:b6062987dfc51f0fcb809187cffbd60f35df7acb4589091f154214af6d0d49d3"},
+ {file = "importlib_resources-5.8.0-py3-none-any.whl", hash = "sha256:7952325ffd516c05a8ad0858c74dff2c3343f136fe66a6002b2623dd1d43f223"},
+ {file = "importlib_resources-5.8.0.tar.gz", hash = "sha256:568c9f16cb204f9decc8d6d24a572eeea27dacbb4cee9e6b03a8025736769751"},
]
iniconfig = [
{file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
@@ -1745,57 +1608,53 @@ itsdangerous = [
{file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"},
]
jinja2 = [
- {file = "Jinja2-3.1.1-py3-none-any.whl", hash = "sha256:539835f51a74a69f41b848a9645dbdc35b4f20a3b601e2d9a7e22947b15ff119"},
- {file = "Jinja2-3.1.1.tar.gz", hash = "sha256:640bed4bb501cbd17194b3cace1dc2126f5b619cf068a726b98192a0fde74ae9"},
+ {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"},
+ {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"},
]
kiwisolver = [
- {file = "kiwisolver-1.4.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6e395ece147f0692ca7cdb05a028d31b83b72c369f7b4a2c1798f4b96af1e3d8"},
- {file = "kiwisolver-1.4.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0b7f50a1a25361da3440f07c58cd1d79957c2244209e4f166990e770256b6b0b"},
- {file = "kiwisolver-1.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3c032c41ae4c3a321b43a3650e6ecc7406b99ff3e5279f24c9b310f41bc98479"},
- {file = "kiwisolver-1.4.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1dcade8f6fe12a2bb4efe2cbe22116556e3b6899728d3b2a0d3b367db323eacc"},
- {file = "kiwisolver-1.4.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0e45e780a74416ef2f173189ef4387e44b5494f45e290bcb1f03735faa6779bf"},
- {file = "kiwisolver-1.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d2bb56309fb75a811d81ed55fbe2208aa77a3a09ff5f546ca95e7bb5fac6eff"},
- {file = "kiwisolver-1.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69b2d6c12f2ad5f55104a36a356192cfb680c049fe5e7c1f6620fc37f119cdc2"},
- {file = "kiwisolver-1.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:262c248c60f22c2b547683ad521e8a3db5909c71f679b93876921549107a0c24"},
- {file = "kiwisolver-1.4.2-cp310-cp310-win32.whl", hash = "sha256:1008346a7741620ab9cc6c96e8ad9b46f7a74ce839dbb8805ddf6b119d5fc6c2"},
- {file = "kiwisolver-1.4.2-cp310-cp310-win_amd64.whl", hash = "sha256:6ece2e12e4b57bc5646b354f436416cd2a6f090c1dadcd92b0ca4542190d7190"},
- {file = "kiwisolver-1.4.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b978afdb913ca953cf128d57181da2e8798e8b6153be866ae2a9c446c6162f40"},
- {file = "kiwisolver-1.4.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f88c4b8e449908eeddb3bbd4242bd4dc2c7a15a7aa44bb33df893203f02dc2d"},
- {file = "kiwisolver-1.4.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e348f1904a4fab4153407f7ccc27e43b2a139752e8acf12e6640ba683093dd96"},
- {file = "kiwisolver-1.4.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c839bf28e45d7ddad4ae8f986928dbf5a6d42ff79760d54ec8ada8fb263e097c"},
- {file = "kiwisolver-1.4.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8ae5a071185f1a93777c79a9a1e67ac46544d4607f18d07131eece08d415083a"},
- {file = "kiwisolver-1.4.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c222f91a45da9e01a9bc4f760727ae49050f8e8345c4ff6525495f7a164c8973"},
- {file = "kiwisolver-1.4.2-cp37-cp37m-win32.whl", hash = "sha256:a4e8f072db1d6fb7a7cc05a6dbef8442c93001f4bb604f1081d8c2db3ca97159"},
- {file = "kiwisolver-1.4.2-cp37-cp37m-win_amd64.whl", hash = "sha256:be9a650890fb60393e60aacb65878c4a38bb334720aa5ecb1c13d0dac54dd73b"},
- {file = "kiwisolver-1.4.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8ec2e55bf31b43aabe32089125dca3b46fdfe9f50afbf0756ae11e14c97b80ca"},
- {file = "kiwisolver-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d1078ba770d6165abed3d9a1be1f9e79b61515de1dd00d942fa53bba79f01ae"},
- {file = "kiwisolver-1.4.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cbb5eb4a2ea1ffec26268d49766cafa8f957fe5c1b41ad00733763fae77f9436"},
- {file = "kiwisolver-1.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e6cda72db409eefad6b021e8a4f964965a629f577812afc7860c69df7bdb84a"},
- {file = "kiwisolver-1.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b1605c7c38cc6a85212dfd6a641f3905a33412e49f7c003f35f9ac6d71f67720"},
- {file = "kiwisolver-1.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81237957b15469ea9151ec8ca08ce05656090ffabc476a752ef5ad7e2644c526"},
- {file = "kiwisolver-1.4.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:240009fdf4fa87844f805e23f48995537a8cb8f8c361e35fda6b5ac97fcb906f"},
- {file = "kiwisolver-1.4.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:240c2d51d098395c012ddbcb9bd7b3ba5de412a1d11840698859f51d0e643c4f"},
- {file = "kiwisolver-1.4.2-cp38-cp38-win32.whl", hash = "sha256:8b6086aa6936865962b2cee0e7aaecf01ab6778ce099288354a7229b4d9f1408"},
- {file = "kiwisolver-1.4.2-cp38-cp38-win_amd64.whl", hash = "sha256:0d98dca86f77b851350c250f0149aa5852b36572514d20feeadd3c6b1efe38d0"},
- {file = "kiwisolver-1.4.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:91eb4916271655dfe3a952249cb37a5c00b6ba68b4417ee15af9ba549b5ba61d"},
- {file = "kiwisolver-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fa4d97d7d2b2c082e67907c0b8d9f31b85aa5d3ba0d33096b7116f03f8061261"},
- {file = "kiwisolver-1.4.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:71469b5845b9876b8d3d252e201bef6f47bf7456804d2fbe9a1d6e19e78a1e65"},
- {file = "kiwisolver-1.4.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8ff3033e43e7ca1389ee59fb7ecb8303abb8713c008a1da49b00869e92e3dd7c"},
- {file = "kiwisolver-1.4.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:89b57c2984f4464840e4b768affeff6b6809c6150d1166938ade3e22fbe22db8"},
- {file = "kiwisolver-1.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffbdb9a96c536f0405895b5e21ee39ec579cb0ed97bdbd169ae2b55f41d73219"},
- {file = "kiwisolver-1.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a830a03970c462d1a2311c90e05679da56d3bd8e78a4ba9985cb78ef7836c9f"},
- {file = "kiwisolver-1.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f74f2a13af201559e3d32b9ddfc303c94ae63d63d7f4326d06ce6fe67e7a8255"},
- {file = "kiwisolver-1.4.2-cp39-cp39-win32.whl", hash = "sha256:e677cc3626287f343de751e11b1e8a5b915a6ac897e8aecdbc996cd34de753a0"},
- {file = "kiwisolver-1.4.2-cp39-cp39-win_amd64.whl", hash = "sha256:b3e251e5c38ac623c5d786adb21477f018712f8c6fa54781bd38aa1c60b60fc2"},
- {file = "kiwisolver-1.4.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0c380bb5ae20d829c1a5473cfcae64267b73aaa4060adc091f6df1743784aae0"},
- {file = "kiwisolver-1.4.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:484f2a5f0307bc944bc79db235f41048bae4106ffa764168a068d88b644b305d"},
- {file = "kiwisolver-1.4.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e8afdf533b613122e4bbaf3c1e42c2a5e9e2d1dd3a0a017749a7658757cb377"},
- {file = "kiwisolver-1.4.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:42f6ef9b640deb6f7d438e0a371aedd8bef6ddfde30683491b2e6f568b4e884e"},
- {file = "kiwisolver-1.4.2.tar.gz", hash = "sha256:7f606d91b8a8816be476513a77fd30abe66227039bd6f8b406c348cb0247dcc9"},
-]
-markdown = [
- {file = "Markdown-3.3.6-py3-none-any.whl", hash = "sha256:9923332318f843411e9932237530df53162e29dc7a4e2b91e35764583c46c9a3"},
- {file = "Markdown-3.3.6.tar.gz", hash = "sha256:76df8ae32294ec39dcf89340382882dfa12975f87f45c3ed1ecdb1e8cefc7006"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:fd2842a0faed9ab9aba0922c951906132d9384be89690570f0ed18cd4f20e658"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:caa59e2cae0e23b1e225447d7a9ddb0f982f42a6a22d497a484dfe62a06f7c0e"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1d2c744aeedce22c122bb42d176b4aa6d063202a05a4abdacb3e413c214b3694"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:afe173ac2646c2636305ab820cc0380b22a00a7bca4290452e7166b4f4fa49d0"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40240da438c0ebfe2aa76dd04b844effac6679423df61adbe3437d32f23468d9"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21a3a98f0a21fc602663ca9bce2b12a4114891bdeba2dea1e9ad84db59892fca"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51078855a16b7a4984ed2067b54e35803d18bca9861cb60c60f6234b50869a56"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c16635f8dddbeb1b827977d0b00d07b644b040aeb9ff8607a9fc0997afa3e567"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-win32.whl", hash = "sha256:2d76780d9c65c7529cedd49fa4802d713e60798d8dc3b0d5b12a0a8f38cca51c"},
+ {file = "kiwisolver-1.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:3a297d77b3d6979693f5948df02b89431ae3645ec95865e351fb45578031bdae"},
+ {file = "kiwisolver-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ca3eefb02ef17257fae8b8555c85e7c1efdfd777f671384b0e4ef27409b02720"},
+ {file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d248c46c0aa406695bda2abf99632db991f8b3a6d46018721a2892312a99f069"},
+ {file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb55258931448d61e2d50187de4ee66fc9d9f34908b524949b8b2b93d0c57136"},
+ {file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86bcf0009f2012847a688f2f4f9b16203ca4c835979a02549aa0595d9f457cc8"},
+ {file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e7cf940af5fee00a92e281eb157abe8770227a5255207818ea9a34e54a29f5b2"},
+ {file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:dd22085446f3eca990d12a0878eeb5199dc9553b2e71716bfe7bed9915a472ab"},
+ {file = "kiwisolver-1.4.3-cp37-cp37m-win32.whl", hash = "sha256:d2578e5149ff49878934debfacf5c743fab49eca5ecdb983d0b218e1e554c498"},
+ {file = "kiwisolver-1.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:5fb73cc8a34baba1dfa546ae83b9c248ef6150c238b06fc53d2773685b67ec67"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f70f3d028794e31cf9d1a822914efc935aadb2438ec4e8d4871d95eb1ce032d6"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:71af5b43e4fa286a35110fc5bb740fdeae2b36ca79fbcf0a54237485baeee8be"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:26b5a70bdab09e6a2f40babc4f8f992e3771751e144bda1938084c70d3001c09"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1858ad3cb686eccc7c6b7c5eac846a1cfd45aacb5811b2cf575e80b208f5622a"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dc350cb65fe4e3f737d50f0465fa6ea0dcae0e5722b7edf5d5b0a0e3cd2c3c7"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:007799c7fa934646318fc128b033bb6e6baabe7fbad521bfb2279aac26225cd7"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:46fb56fde006b7ef5f8eaa3698299b0ea47444238b869ff3ced1426aa9fedcb5"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b9eb88593159a53a5ee0b0159daee531ff7dd9c87fa78f5d807ca059c7eb1b2b"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-win32.whl", hash = "sha256:3b1dcbc49923ac3c973184a82832e1f018dec643b1e054867d04a3a22255ec6a"},
+ {file = "kiwisolver-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:7118ca592d25b2957ff7b662bc0fe4f4c2b5d5b27814b9b1bc9f2fb249a970e7"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:747190fcdadc377263223f8f72b038381b3b549a8a3df5baf4d067da4749b046"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fd628e63ffdba0112e3ddf1b1e9f3db29dd8262345138e08f4938acbc6d0805a"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:22ccba48abae827a0f952a78a7b1a7ff01866131e5bbe1f826ce9bda406bf051"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:af24b21c2283ca69c416a8a42cde9764dc36c63d3389645d28c69b0e93db3cd7"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:547111ef7cf13d73546c2de97ce434935626c897bdec96a578ca100b5fcd694b"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:84f85adfebd7d3c3db649efdf73659e1677a2cf3fa6e2556a3f373578af14bf7"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ffd7cf165ff71afb202b3f36daafbf298932bee325aac9f58e1c9cd55838bef0"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b3136eecf7e1b4a4d23e4b19d6c4e7a8e0b42d55f30444e3c529700cdacaa0d"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-win32.whl", hash = "sha256:46c6e5018ba31d5ee7582f323d8661498a154dea1117486a571db4c244531f24"},
+ {file = "kiwisolver-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:8395064d63b26947fa2c9faeea9c3eee35e52148c5339c37987e1d96fbf009b3"},
+ {file = "kiwisolver-1.4.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:325fa1b15098e44fe4590a6c5c09a212ca10c6ebb5d96f7447d675f6c8340e4e"},
+ {file = "kiwisolver-1.4.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:654280c5f41831ddcc5a331c0e3ce2e480bbc3d7c93c18ecf6236313aae2d61a"},
+ {file = "kiwisolver-1.4.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ae7aa0784aeadfbd693c27993727792fbe1455b84d49970bad5886b42976b18"},
+ {file = "kiwisolver-1.4.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:130c6c35eded399d3967cf8a542c20b671f5ba85bd6f210f8b939f868360e9eb"},
+ {file = "kiwisolver-1.4.3.tar.gz", hash = "sha256:ab8a15c2750ae8d53e31f77a94f846d0a00772240f1c12817411fa2344351f86"},
]
markupsafe = [
{file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"},
@@ -1840,162 +1699,176 @@ markupsafe = [
{file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"},
]
matplotlib = [
- {file = "matplotlib-3.5.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:456cc8334f6d1124e8ff856b42d2cc1c84335375a16448189999496549f7182b"},
- {file = "matplotlib-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8a77906dc2ef9b67407cec0bdbf08e3971141e535db888974a915be5e1e3efc6"},
- {file = "matplotlib-3.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e70ae6475cfd0fad3816dcbf6cac536dc6f100f7474be58d59fa306e6e768a4"},
- {file = "matplotlib-3.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53273c5487d1c19c3bc03b9eb82adaf8456f243b97ed79d09dded747abaf1235"},
- {file = "matplotlib-3.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e3b6f3fd0d8ca37861c31e9a7cab71a0ef14c639b4c95654ea1dd153158bf0df"},
- {file = "matplotlib-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8c87cdaf06fd7b2477f68909838ff4176f105064a72ca9d24d3f2a29f73d393"},
- {file = "matplotlib-3.5.1-cp310-cp310-win32.whl", hash = "sha256:e2f28a07b4f82abb40267864ad7b3a4ed76f1b1663e81c7efc84a9b9248f672f"},
- {file = "matplotlib-3.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:d70a32ee1f8b55eed3fd4e892f0286df8cccc7e0475c11d33b5d0a148f5c7599"},
- {file = "matplotlib-3.5.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:68fa30cec89b6139dc559ed6ef226c53fd80396da1919a1b5ef672c911aaa767"},
- {file = "matplotlib-3.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e3484d8455af3fdb0424eae1789af61f6a79da0c80079125112fd5c1b604218"},
- {file = "matplotlib-3.5.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e293b16cf303fe82995e41700d172a58a15efc5331125d08246b520843ef21ee"},
- {file = "matplotlib-3.5.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:e3520a274a0e054e919f5b3279ee5dbccf5311833819ccf3399dab7c83e90a25"},
- {file = "matplotlib-3.5.1-cp37-cp37m-win32.whl", hash = "sha256:2252bfac85cec7af4a67e494bfccf9080bcba8a0299701eab075f48847cca907"},
- {file = "matplotlib-3.5.1-cp37-cp37m-win_amd64.whl", hash = "sha256:abf67e05a1b7f86583f6ebd01f69b693b9c535276f4e943292e444855870a1b8"},
- {file = "matplotlib-3.5.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6c094e4bfecd2fa7f9adffd03d8abceed7157c928c2976899de282f3600f0a3d"},
- {file = "matplotlib-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:506b210cc6e66a0d1c2bb765d055f4f6bc2745070fb1129203b67e85bbfa5c18"},
- {file = "matplotlib-3.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b04fc29bcef04d4e2d626af28d9d892be6aba94856cb46ed52bcb219ceac8943"},
- {file = "matplotlib-3.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:577ed20ec9a18d6bdedb4616f5e9e957b4c08563a9f985563a31fd5b10564d2a"},
- {file = "matplotlib-3.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e486f60db0cd1c8d68464d9484fd2a94011c1ac8593d765d0211f9daba2bd535"},
- {file = "matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1"},
- {file = "matplotlib-3.5.1-cp38-cp38-win32.whl", hash = "sha256:d24e5bb8028541ce25e59390122f5e48c8506b7e35587e5135efcb6471b4ac6c"},
- {file = "matplotlib-3.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:778d398c4866d8e36ee3bf833779c940b5f57192fa0a549b3ad67bc4c822771b"},
- {file = "matplotlib-3.5.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bb1c613908f11bac270bc7494d68b1ef6e7c224b7a4204d5dacf3522a41e2bc3"},
- {file = "matplotlib-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:edf5e4e1d5fb22c18820e8586fb867455de3b109c309cb4fce3aaed85d9468d1"},
- {file = "matplotlib-3.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:40e0d7df05e8efe60397c69b467fc8f87a2affeb4d562fe92b72ff8937a2b511"},
- {file = "matplotlib-3.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a350ca685d9f594123f652ba796ee37219bf72c8e0fc4b471473d87121d6d34"},
- {file = "matplotlib-3.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3e66497cd990b1a130e21919b004da2f1dc112132c01ac78011a90a0f9229778"},
- {file = "matplotlib-3.5.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:87900c67c0f1728e6db17c6809ec05c025c6624dcf96a8020326ea15378fe8e7"},
- {file = "matplotlib-3.5.1-cp39-cp39-win32.whl", hash = "sha256:b8a4fb2a0c5afbe9604f8a91d7d0f27b1832c3e0b5e365f95a13015822b4cd65"},
- {file = "matplotlib-3.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:fe8d40c434a8e2c68d64c6d6a04e77f21791a93ff6afe0dce169597c110d3079"},
- {file = "matplotlib-3.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34a1fc29f8f96e78ec57a5eff5e8d8b53d3298c3be6df61e7aa9efba26929522"},
- {file = "matplotlib-3.5.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b19a761b948e939a9e20173aaae76070025f0024fc8f7ba08bef22a5c8573afc"},
- {file = "matplotlib-3.5.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6803299cbf4665eca14428d9e886de62e24f4223ac31ab9c5d6d5339a39782c7"},
- {file = "matplotlib-3.5.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:14334b9902ec776461c4b8c6516e26b450f7ebe0b3ef8703bf5cdfbbaecf774a"},
- {file = "matplotlib-3.5.1.tar.gz", hash = "sha256:b2e9810e09c3a47b73ce9cab5a72243a1258f61e7900969097a817232246ce1c"},
+ {file = "matplotlib-3.5.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:03bbb3f5f78836855e127b5dab228d99551ad0642918ccbf3067fcd52ac7ac5e"},
+ {file = "matplotlib-3.5.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49a5938ed6ef9dda560f26ea930a2baae11ea99e1c2080c8714341ecfda72a89"},
+ {file = "matplotlib-3.5.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:77157be0fc4469cbfb901270c205e7d8adb3607af23cef8bd11419600647ceed"},
+ {file = "matplotlib-3.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5844cea45d804174bf0fac219b4ab50774e504bef477fc10f8f730ce2d623441"},
+ {file = "matplotlib-3.5.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c87973ddec10812bddc6c286b88fdd654a666080fbe846a1f7a3b4ba7b11ab78"},
+ {file = "matplotlib-3.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a05f2b37222319753a5d43c0a4fd97ed4ff15ab502113e3f2625c26728040cf"},
+ {file = "matplotlib-3.5.2-cp310-cp310-win32.whl", hash = "sha256:9776e1a10636ee5f06ca8efe0122c6de57ffe7e8c843e0fb6e001e9d9256ec95"},
+ {file = "matplotlib-3.5.2-cp310-cp310-win_amd64.whl", hash = "sha256:b4fedaa5a9aa9ce14001541812849ed1713112651295fdddd640ea6620e6cf98"},
+ {file = "matplotlib-3.5.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ee175a571e692fc8ae8e41ac353c0e07259113f4cb063b0ec769eff9717e84bb"},
+ {file = "matplotlib-3.5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e8bda1088b941ead50caabd682601bece983cadb2283cafff56e8fcddbf7d7f"},
+ {file = "matplotlib-3.5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9480842d5aadb6e754f0b8f4ebeb73065ac8be1855baa93cd082e46e770591e9"},
+ {file = "matplotlib-3.5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6c623b355d605a81c661546af7f24414165a8a2022cddbe7380a31a4170fa2e9"},
+ {file = "matplotlib-3.5.2-cp37-cp37m-win32.whl", hash = "sha256:a91426ae910819383d337ba0dc7971c7cefdaa38599868476d94389a329e599b"},
+ {file = "matplotlib-3.5.2-cp37-cp37m-win_amd64.whl", hash = "sha256:c4b82c2ae6d305fcbeb0eb9c93df2602ebd2f174f6e8c8a5d92f9445baa0c1d3"},
+ {file = "matplotlib-3.5.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ebc27ad11df3c1661f4677a7762e57a8a91dd41b466c3605e90717c9a5f90c82"},
+ {file = "matplotlib-3.5.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5a32ea6e12e80dedaca2d4795d9ed40f97bfa56e6011e14f31502fdd528b9c89"},
+ {file = "matplotlib-3.5.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2a0967d4156adbd0d46db06bc1a877f0370bce28d10206a5071f9ecd6dc60b79"},
+ {file = "matplotlib-3.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2b696699386766ef171a259d72b203a3c75d99d03ec383b97fc2054f52e15cf"},
+ {file = "matplotlib-3.5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7f409716119fa39b03da3d9602bd9b41142fab7a0568758cd136cd80b1bf36c8"},
+ {file = "matplotlib-3.5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b8d3f4e71e26307e8c120b72c16671d70c5cd08ae412355c11254aa8254fb87f"},
+ {file = "matplotlib-3.5.2-cp38-cp38-win32.whl", hash = "sha256:b6c63cd01cad0ea8704f1fd586e9dc5777ccedcd42f63cbbaa3eae8dd41172a1"},
+ {file = "matplotlib-3.5.2-cp38-cp38-win_amd64.whl", hash = "sha256:75c406c527a3aa07638689586343f4b344fcc7ab1f79c396699eb550cd2b91f7"},
+ {file = "matplotlib-3.5.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4a44cdfdb9d1b2f18b1e7d315eb3843abb097869cd1ef89cfce6a488cd1b5182"},
+ {file = "matplotlib-3.5.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3d8e129af95b156b41cb3be0d9a7512cc6d73e2b2109f82108f566dbabdbf377"},
+ {file = "matplotlib-3.5.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:364e6bca34edc10a96aa3b1d7cd76eb2eea19a4097198c1b19e89bee47ed5781"},
+ {file = "matplotlib-3.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea75df8e567743207e2b479ba3d8843537be1c146d4b1e3e395319a4e1a77fe9"},
+ {file = "matplotlib-3.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:44c6436868186564450df8fd2fc20ed9daaef5caad699aa04069e87099f9b5a8"},
+ {file = "matplotlib-3.5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:7d7705022df2c42bb02937a2a824f4ec3cca915700dd80dc23916af47ff05f1a"},
+ {file = "matplotlib-3.5.2-cp39-cp39-win32.whl", hash = "sha256:ee0b8e586ac07f83bb2950717e66cb305e2859baf6f00a9c39cc576e0ce9629c"},
+ {file = "matplotlib-3.5.2-cp39-cp39-win_amd64.whl", hash = "sha256:c772264631e5ae61f0bd41313bbe48e1b9bcc95b974033e1118c9caa1a84d5c6"},
+ {file = "matplotlib-3.5.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:751d3815b555dcd6187ad35b21736dc12ce6925fc3fa363bbc6dc0f86f16484f"},
+ {file = "matplotlib-3.5.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:31fbc2af27ebb820763f077ec7adc79b5a031c2f3f7af446bd7909674cd59460"},
+ {file = "matplotlib-3.5.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4fa28ca76ac5c2b2d54bc058b3dad8e22ee85d26d1ee1b116a6fd4d2277b6a04"},
+ {file = "matplotlib-3.5.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:24173c23d1bcbaed5bf47b8785d27933a1ac26a5d772200a0f3e0e38f471b001"},
+ {file = "matplotlib-3.5.2.tar.gz", hash = "sha256:48cf850ce14fa18067f2d9e0d646763681948487a8080ec0af2686468b4607a2"},
]
nodeenv = [
- {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"},
- {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"},
+ {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"},
+ {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"},
]
numpy = [
- {file = "numpy-1.22.3-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:92bfa69cfbdf7dfc3040978ad09a48091143cffb778ec3b03fa170c494118d75"},
- {file = "numpy-1.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8251ed96f38b47b4295b1ae51631de7ffa8260b5b087808ef09a39a9d66c97ab"},
- {file = "numpy-1.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48a3aecd3b997bf452a2dedb11f4e79bc5bfd21a1d4cc760e703c31d57c84b3e"},
- {file = "numpy-1.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3bae1a2ed00e90b3ba5f7bd0a7c7999b55d609e0c54ceb2b076a25e345fa9f4"},
- {file = "numpy-1.22.3-cp310-cp310-win32.whl", hash = "sha256:f950f8845b480cffe522913d35567e29dd381b0dc7e4ce6a4a9f9156417d2430"},
- {file = "numpy-1.22.3-cp310-cp310-win_amd64.whl", hash = "sha256:08d9b008d0156c70dc392bb3ab3abb6e7a711383c3247b410b39962263576cd4"},
- {file = "numpy-1.22.3-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:201b4d0552831f7250a08d3b38de0d989d6f6e4658b709a02a73c524ccc6ffce"},
- {file = "numpy-1.22.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f8c1f39caad2c896bc0018f699882b345b2a63708008be29b1f355ebf6f933fe"},
- {file = "numpy-1.22.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:568dfd16224abddafb1cbcce2ff14f522abe037268514dd7e42c6776a1c3f8e5"},
- {file = "numpy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1"},
- {file = "numpy-1.22.3-cp38-cp38-win32.whl", hash = "sha256:e7927a589df200c5e23c57970bafbd0cd322459aa7b1ff73b7c2e84d6e3eae62"},
- {file = "numpy-1.22.3-cp38-cp38-win_amd64.whl", hash = "sha256:07a8c89a04997625236c5ecb7afe35a02af3896c8aa01890a849913a2309c676"},
- {file = "numpy-1.22.3-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:2c10a93606e0b4b95c9b04b77dc349b398fdfbda382d2a39ba5a822f669a0123"},
- {file = "numpy-1.22.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fade0d4f4d292b6f39951b6836d7a3c7ef5b2347f3c420cd9820a1d90d794802"},
- {file = "numpy-1.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bfb1bb598e8229c2d5d48db1860bcf4311337864ea3efdbe1171fb0c5da515d"},
- {file = "numpy-1.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97098b95aa4e418529099c26558eeb8486e66bd1e53a6b606d684d0c3616b168"},
- {file = "numpy-1.22.3-cp39-cp39-win32.whl", hash = "sha256:fdf3c08bce27132395d3c3ba1503cac12e17282358cb4bddc25cc46b0aca07aa"},
- {file = "numpy-1.22.3-cp39-cp39-win_amd64.whl", hash = "sha256:639b54cdf6aa4f82fe37ebf70401bbb74b8508fddcf4797f9fe59615b8c5813a"},
- {file = "numpy-1.22.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c34ea7e9d13a70bf2ab64a2532fe149a9aced424cd05a2c4ba662fd989e3e45f"},
- {file = "numpy-1.22.3.zip", hash = "sha256:dbc7601a3b7472d559dc7b933b18b4b66f9aa7452c120e87dfb33d02008c8a18"},
+ {file = "numpy-1.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58bfd40eb478f54ff7a5710dd61c8097e169bc36cc68333d00a9bcd8def53b38"},
+ {file = "numpy-1.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:196cd074c3f97c4121601790955f915187736f9cf458d3ee1f1b46aff2b1ade0"},
+ {file = "numpy-1.23.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1d88ef79e0a7fa631bb2c3dda1ea46b32b1fe614e10fedd611d3d5398447f2f"},
+ {file = "numpy-1.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d54b3b828d618a19779a84c3ad952e96e2c2311b16384e973e671aa5be1f6187"},
+ {file = "numpy-1.23.0-cp310-cp310-win32.whl", hash = "sha256:2b2da66582f3a69c8ce25ed7921dcd8010d05e59ac8d89d126a299be60421171"},
+ {file = "numpy-1.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:97a76604d9b0e79f59baeca16593c711fddb44936e40310f78bfef79ee9a835f"},
+ {file = "numpy-1.23.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d8cc87bed09de55477dba9da370c1679bd534df9baa171dd01accbb09687dac3"},
+ {file = "numpy-1.23.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f0f18804df7370571fb65db9b98bf1378172bd4e962482b857e612d1fec0f53e"},
+ {file = "numpy-1.23.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac86f407873b952679f5f9e6c0612687e51547af0e14ddea1eedfcb22466babd"},
+ {file = "numpy-1.23.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae8adff4172692ce56233db04b7ce5792186f179c415c37d539c25de7298d25d"},
+ {file = "numpy-1.23.0-cp38-cp38-win32.whl", hash = "sha256:fe8b9683eb26d2c4d5db32cd29b38fdcf8381324ab48313b5b69088e0e355379"},
+ {file = "numpy-1.23.0-cp38-cp38-win_amd64.whl", hash = "sha256:5043bcd71fcc458dfb8a0fc5509bbc979da0131b9d08e3d5f50fb0bbb36f169a"},
+ {file = "numpy-1.23.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1c29b44905af288b3919803aceb6ec7fec77406d8b08aaa2e8b9e63d0fe2f160"},
+ {file = "numpy-1.23.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:98e8e0d8d69ff4d3fa63e6c61e8cfe2d03c29b16b58dbef1f9baa175bbed7860"},
+ {file = "numpy-1.23.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79a506cacf2be3a74ead5467aee97b81fca00c9c4c8b3ba16dbab488cd99ba10"},
+ {file = "numpy-1.23.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:092f5e6025813e64ad6d1b52b519165d08c730d099c114a9247c9bb635a2a450"},
+ {file = "numpy-1.23.0-cp39-cp39-win32.whl", hash = "sha256:d6ca8dabe696c2785d0c8c9b0d8a9b6e5fdbe4f922bde70d57fa1a2848134f95"},
+ {file = "numpy-1.23.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc431493df245f3c627c0c05c2bd134535e7929dbe2e602b80e42bf52ff760bc"},
+ {file = "numpy-1.23.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f9c3fc2adf67762c9fe1849c859942d23f8d3e0bee7b5ed3d4a9c3eeb50a2f07"},
+ {file = "numpy-1.23.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0d2094e8f4d760500394d77b383a1b06d3663e8892cdf5df3c592f55f3bff66"},
+ {file = "numpy-1.23.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:94b170b4fa0168cd6be4becf37cb5b127bd12a795123984385b8cd4aca9857e5"},
+ {file = "numpy-1.23.0.tar.gz", hash = "sha256:bd3fa4fe2e38533d5336e1272fc4e765cabbbde144309ccee8675509d5cd7b05"},
]
packaging = [
{file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
{file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
]
pandas = [
- {file = "pandas-1.4.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:be67c782c4f1b1f24c2f16a157e12c2693fd510f8df18e3287c77f33d124ed07"},
- {file = "pandas-1.4.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5a206afa84ed20e07603f50d22b5f0db3fb556486d8c2462d8bc364831a4b417"},
- {file = "pandas-1.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0010771bd9223f7afe5f051eb47c4a49534345dfa144f2f5470b27189a4dd3b5"},
- {file = "pandas-1.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3228198333dd13c90b6434ddf61aa6d57deaca98cf7b654f4ad68a2db84f8cfe"},
- {file = "pandas-1.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b79af3a69e5175c6fa7b4e046b21a646c8b74e92c6581a9d825687d92071b51"},
- {file = "pandas-1.4.2-cp310-cp310-win_amd64.whl", hash = "sha256:5586cc95692564b441f4747c47c8a9746792e87b40a4680a2feb7794defb1ce3"},
- {file = "pandas-1.4.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:061609334a8182ab500a90fe66d46f6f387de62d3a9cb9aa7e62e3146c712167"},
- {file = "pandas-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b8134651258bce418cb79c71adeff0a44090c98d955f6953168ba16cc285d9f7"},
- {file = "pandas-1.4.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:df82739e00bb6daf4bba4479a40f38c718b598a84654cbd8bb498fd6b0aa8c16"},
- {file = "pandas-1.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:385c52e85aaa8ea6a4c600a9b2821181a51f8be0aee3af6f2dcb41dafc4fc1d0"},
- {file = "pandas-1.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:295872bf1a09758aba199992c3ecde455f01caf32266d50abc1a073e828a7b9d"},
- {file = "pandas-1.4.2-cp38-cp38-win32.whl", hash = "sha256:95c1e422ced0199cf4a34385ff124b69412c4bc912011ce895582bee620dfcaa"},
- {file = "pandas-1.4.2-cp38-cp38-win_amd64.whl", hash = "sha256:5c54ea4ef3823108cd4ec7fb27ccba4c3a775e0f83e39c5e17f5094cb17748bc"},
- {file = "pandas-1.4.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c072c7f06b9242c855ed8021ff970c0e8f8b10b35e2640c657d2a541c5950f59"},
- {file = "pandas-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f549097993744ff8c41b5e8f2f0d3cbfaabe89b4ae32c8c08ead6cc535b80139"},
- {file = "pandas-1.4.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ff08a14ef21d94cdf18eef7c569d66f2e24e0bc89350bcd7d243dd804e3b5eb2"},
- {file = "pandas-1.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c5bf555b6b0075294b73965adaafb39cf71c312e38c5935c93d78f41c19828a"},
- {file = "pandas-1.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51649ef604a945f781105a6d2ecf88db7da0f4868ac5d45c51cb66081c4d9c73"},
- {file = "pandas-1.4.2-cp39-cp39-win32.whl", hash = "sha256:d0d4f13e4be7ce89d7057a786023c461dd9370040bdb5efa0a7fe76b556867a0"},
- {file = "pandas-1.4.2-cp39-cp39-win_amd64.whl", hash = "sha256:09d8be7dd9e1c4c98224c4dfe8abd60d145d934e9fc1f5f411266308ae683e6a"},
- {file = "pandas-1.4.2.tar.gz", hash = "sha256:92bc1fc585f1463ca827b45535957815b7deb218c549b7c18402c322c7549a12"},
-]
-panel = [
- {file = "panel-0.13.0-py2.py3-none-any.whl", hash = "sha256:22fd4b6f8e67d975074a5b99cdd17605ffe15d99a0b3efbdfdabf6eab1e078f7"},
- {file = "panel-0.13.0.tar.gz", hash = "sha256:703c448bc83d6db9b72b0605af7a7403136310f84137d32d9228963b8abc2d74"},
-]
-param = [
- {file = "param-1.12.1-py2.py3-none-any.whl", hash = "sha256:d3b8852815e4012803110cb44a8c9c77e15fc1a62895e2a9a215ef5f5a036933"},
- {file = "param-1.12.1.tar.gz", hash = "sha256:ca53f1837d3172f4c181159fbe009f71f034f8dd9ffaf9e56bf64bf6b4b84f8f"},
+ {file = "pandas-1.4.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d51674ed8e2551ef7773820ef5dab9322be0828629f2cbf8d1fc31a0c4fed640"},
+ {file = "pandas-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:16ad23db55efcc93fa878f7837267973b61ea85d244fc5ff0ccbcfa5638706c5"},
+ {file = "pandas-1.4.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:958a0588149190c22cdebbc0797e01972950c927a11a900fe6c2296f207b1d6f"},
+ {file = "pandas-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e48fbb64165cda451c06a0f9e4c7a16b534fcabd32546d531b3c240ce2844112"},
+ {file = "pandas-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f803320c9da732cc79210d7e8cc5c8019aad512589c910c66529eb1b1818230"},
+ {file = "pandas-1.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:2893e923472a5e090c2d5e8db83e8f907364ec048572084c7d10ef93546be6d1"},
+ {file = "pandas-1.4.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:24ea75f47bbd5574675dae21d51779a4948715416413b30614c1e8b480909f81"},
+ {file = "pandas-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d5ebc990bd34f4ac3c73a2724c2dcc9ee7bf1ce6cf08e87bb25c6ad33507e318"},
+ {file = "pandas-1.4.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d6c0106415ff1a10c326c49bc5dd9ea8b9897a6ca0c8688eb9c30ddec49535ef"},
+ {file = "pandas-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78b00429161ccb0da252229bcda8010b445c4bf924e721265bec5a6e96a92e92"},
+ {file = "pandas-1.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6dfbf16b1ea4f4d0ee11084d9c026340514d1d30270eaa82a9f1297b6c8ecbf0"},
+ {file = "pandas-1.4.3-cp38-cp38-win32.whl", hash = "sha256:48350592665ea3cbcd07efc8c12ff12d89be09cd47231c7925e3b8afada9d50d"},
+ {file = "pandas-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:605d572126eb4ab2eadf5c59d5d69f0608df2bf7bcad5c5880a47a20a0699e3e"},
+ {file = "pandas-1.4.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a3924692160e3d847e18702bb048dc38e0e13411d2b503fecb1adf0fcf950ba4"},
+ {file = "pandas-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:07238a58d7cbc8a004855ade7b75bbd22c0db4b0ffccc721556bab8a095515f6"},
+ {file = "pandas-1.4.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:755679c49460bd0d2f837ab99f0a26948e68fa0718b7e42afbabd074d945bf84"},
+ {file = "pandas-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41fc406e374590a3d492325b889a2686b31e7a7780bec83db2512988550dadbf"},
+ {file = "pandas-1.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d9382f72a4f0e93909feece6fef5500e838ce1c355a581b3d8f259839f2ea76"},
+ {file = "pandas-1.4.3-cp39-cp39-win32.whl", hash = "sha256:0daf876dba6c622154b2e6741f29e87161f844e64f84801554f879d27ba63c0d"},
+ {file = "pandas-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:721a3dd2f06ef942f83a819c0f3f6a648b2830b191a72bbe9451bcd49c3bd42e"},
+ {file = "pandas-1.4.3.tar.gz", hash = "sha256:2ff7788468e75917574f080cd4681b27e1a7bf36461fe968b49a87b5a54d007c"},
]
pillow = [
- {file = "Pillow-9.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:af79d3fde1fc2e33561166d62e3b63f0cc3e47b5a3a2e5fea40d4917754734ea"},
- {file = "Pillow-9.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:55dd1cf09a1fd7c7b78425967aacae9b0d70125f7d3ab973fadc7b5abc3de652"},
- {file = "Pillow-9.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:66822d01e82506a19407d1afc104c3fcea3b81d5eb11485e593ad6b8492f995a"},
- {file = "Pillow-9.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a5eaf3b42df2bcda61c53a742ee2c6e63f777d0e085bbc6b2ab7ed57deb13db7"},
- {file = "Pillow-9.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01ce45deec9df310cbbee11104bae1a2a43308dd9c317f99235b6d3080ddd66e"},
- {file = "Pillow-9.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:aea7ce61328e15943d7b9eaca87e81f7c62ff90f669116f857262e9da4057ba3"},
- {file = "Pillow-9.1.0-cp310-cp310-win32.whl", hash = "sha256:7a053bd4d65a3294b153bdd7724dce864a1d548416a5ef61f6d03bf149205160"},
- {file = "Pillow-9.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:97bda660702a856c2c9e12ec26fc6d187631ddfd896ff685814ab21ef0597033"},
- {file = "Pillow-9.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:21dee8466b42912335151d24c1665fcf44dc2ee47e021d233a40c3ca5adae59c"},
- {file = "Pillow-9.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b6d4050b208c8ff886fd3db6690bf04f9a48749d78b41b7a5bf24c236ab0165"},
- {file = "Pillow-9.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5cfca31ab4c13552a0f354c87fbd7f162a4fafd25e6b521bba93a57fe6a3700a"},
- {file = "Pillow-9.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed742214068efa95e9844c2d9129e209ed63f61baa4d54dbf4cf8b5e2d30ccf2"},
- {file = "Pillow-9.1.0-cp37-cp37m-win32.whl", hash = "sha256:c9efef876c21788366ea1f50ecb39d5d6f65febe25ad1d4c0b8dff98843ac244"},
- {file = "Pillow-9.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:de344bcf6e2463bb25179d74d6e7989e375f906bcec8cb86edb8b12acbc7dfef"},
- {file = "Pillow-9.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:17869489de2fce6c36690a0c721bd3db176194af5f39249c1ac56d0bb0fcc512"},
- {file = "Pillow-9.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:25023a6209a4d7c42154073144608c9a71d3512b648a2f5d4465182cb93d3477"},
- {file = "Pillow-9.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8782189c796eff29dbb37dd87afa4ad4d40fc90b2742704f94812851b725964b"},
- {file = "Pillow-9.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:463acf531f5d0925ca55904fa668bb3461c3ef6bc779e1d6d8a488092bdee378"},
- {file = "Pillow-9.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f42364485bfdab19c1373b5cd62f7c5ab7cc052e19644862ec8f15bb8af289e"},
- {file = "Pillow-9.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3fddcdb619ba04491e8f771636583a7cc5a5051cd193ff1aa1ee8616d2a692c5"},
- {file = "Pillow-9.1.0-cp38-cp38-win32.whl", hash = "sha256:4fe29a070de394e449fd88ebe1624d1e2d7ddeed4c12e0b31624561b58948d9a"},
- {file = "Pillow-9.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:c24f718f9dd73bb2b31a6201e6db5ea4a61fdd1d1c200f43ee585fc6dcd21b34"},
- {file = "Pillow-9.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fb89397013cf302f282f0fc998bb7abf11d49dcff72c8ecb320f76ea6e2c5717"},
- {file = "Pillow-9.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c870193cce4b76713a2b29be5d8327c8ccbe0d4a49bc22968aa1e680930f5581"},
- {file = "Pillow-9.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69e5ddc609230d4408277af135c5b5c8fe7a54b2bdb8ad7c5100b86b3aab04c6"},
- {file = "Pillow-9.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35be4a9f65441d9982240e6966c1eaa1c654c4e5e931eaf580130409e31804d4"},
- {file = "Pillow-9.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82283af99c1c3a5ba1da44c67296d5aad19f11c535b551a5ae55328a317ce331"},
- {file = "Pillow-9.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a325ac71914c5c043fa50441b36606e64a10cd262de12f7a179620f579752ff8"},
- {file = "Pillow-9.1.0-cp39-cp39-win32.whl", hash = "sha256:a598d8830f6ef5501002ae85c7dbfcd9c27cc4efc02a1989369303ba85573e58"},
- {file = "Pillow-9.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:0c51cb9edac8a5abd069fd0758ac0a8bfe52c261ee0e330f363548aca6893595"},
- {file = "Pillow-9.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a336a4f74baf67e26f3acc4d61c913e378e931817cd1e2ef4dfb79d3e051b481"},
- {file = "Pillow-9.1.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb1b89b11256b5b6cad5e7593f9061ac4624f7651f7a8eb4dfa37caa1dfaa4d0"},
- {file = "Pillow-9.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:255c9d69754a4c90b0ee484967fc8818c7ff8311c6dddcc43a4340e10cd1636a"},
- {file = "Pillow-9.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5a3ecc026ea0e14d0ad7cd990ea7f48bfcb3eb4271034657dc9d06933c6629a7"},
- {file = "Pillow-9.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5b0ff59785d93b3437c3703e3c64c178aabada51dea2a7f2c5eccf1bcf565a3"},
- {file = "Pillow-9.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7110ec1701b0bf8df569a7592a196c9d07c764a0a74f65471ea56816f10e2c8"},
- {file = "Pillow-9.1.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:8d79c6f468215d1a8415aa53d9868a6b40c4682165b8cb62a221b1baa47db458"},
- {file = "Pillow-9.1.0.tar.gz", hash = "sha256:f401ed2bbb155e1ade150ccc63db1a4f6c1909d3d378f7d1235a44e90d75fb97"},
+ {file = "Pillow-9.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:a9c9bc489f8ab30906d7a85afac4b4944a572a7432e00698a7239f44a44e6efb"},
+ {file = "Pillow-9.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:510cef4a3f401c246cfd8227b300828715dd055463cdca6176c2e4036df8bd4f"},
+ {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7888310f6214f19ab2b6df90f3f06afa3df7ef7355fc025e78a3044737fab1f5"},
+ {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:831e648102c82f152e14c1a0938689dbb22480c548c8d4b8b248b3e50967b88c"},
+ {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cc1d2451e8a3b4bfdb9caf745b58e6c7a77d2e469159b0d527a4554d73694d1"},
+ {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:136659638f61a251e8ed3b331fc6ccd124590eeff539de57c5f80ef3a9594e58"},
+ {file = "Pillow-9.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:6e8c66f70fb539301e064f6478d7453e820d8a2c631da948a23384865cd95544"},
+ {file = "Pillow-9.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:37ff6b522a26d0538b753f0b4e8e164fdada12db6c6f00f62145d732d8a3152e"},
+ {file = "Pillow-9.2.0-cp310-cp310-win32.whl", hash = "sha256:c79698d4cd9318d9481d89a77e2d3fcaeff5486be641e60a4b49f3d2ecca4e28"},
+ {file = "Pillow-9.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:254164c57bab4b459f14c64e93df11eff5ded575192c294a0c49270f22c5d93d"},
+ {file = "Pillow-9.2.0-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:408673ed75594933714482501fe97e055a42996087eeca7e5d06e33218d05aa8"},
+ {file = "Pillow-9.2.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:727dd1389bc5cb9827cbd1f9d40d2c2a1a0c9b32dd2261db522d22a604a6eec9"},
+ {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50dff9cc21826d2977ef2d2a205504034e3a4563ca6f5db739b0d1026658e004"},
+ {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cb6259196a589123d755380b65127ddc60f4c64b21fc3bb46ce3a6ea663659b0"},
+ {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b0554af24df2bf96618dac71ddada02420f946be943b181108cac55a7a2dcd4"},
+ {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:15928f824870535c85dbf949c09d6ae7d3d6ac2d6efec80f3227f73eefba741c"},
+ {file = "Pillow-9.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:bdd0de2d64688ecae88dd8935012c4a72681e5df632af903a1dca8c5e7aa871a"},
+ {file = "Pillow-9.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5b87da55a08acb586bad5c3aa3b86505f559b84f39035b233d5bf844b0834b1"},
+ {file = "Pillow-9.2.0-cp311-cp311-win32.whl", hash = "sha256:b6d5e92df2b77665e07ddb2e4dbd6d644b78e4c0d2e9272a852627cdba0d75cf"},
+ {file = "Pillow-9.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:6bf088c1ce160f50ea40764f825ec9b72ed9da25346216b91361eef8ad1b8f8c"},
+ {file = "Pillow-9.2.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:2c58b24e3a63efd22554c676d81b0e57f80e0a7d3a5874a7e14ce90ec40d3069"},
+ {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eef7592281f7c174d3d6cbfbb7ee5984a671fcd77e3fc78e973d492e9bf0eb3f"},
+ {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dcd7b9c7139dc8258d164b55696ecd16c04607f1cc33ba7af86613881ffe4ac8"},
+ {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a138441e95562b3c078746a22f8fca8ff1c22c014f856278bdbdd89ca36cff1b"},
+ {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:93689632949aff41199090eff5474f3990b6823404e45d66a5d44304e9cdc467"},
+ {file = "Pillow-9.2.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:f3fac744f9b540148fa7715a435d2283b71f68bfb6d4aae24482a890aed18b59"},
+ {file = "Pillow-9.2.0-cp37-cp37m-win32.whl", hash = "sha256:fa768eff5f9f958270b081bb33581b4b569faabf8774726b283edb06617101dc"},
+ {file = "Pillow-9.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:69bd1a15d7ba3694631e00df8de65a8cb031911ca11f44929c97fe05eb9b6c1d"},
+ {file = "Pillow-9.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:030e3460861488e249731c3e7ab59b07c7853838ff3b8e16aac9561bb345da14"},
+ {file = "Pillow-9.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:74a04183e6e64930b667d321524e3c5361094bb4af9083db5c301db64cd341f3"},
+ {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d33a11f601213dcd5718109c09a52c2a1c893e7461f0be2d6febc2879ec2402"},
+ {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fd6f5e3c0e4697fa7eb45b6e93996299f3feee73a3175fa451f49a74d092b9f"},
+ {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a647c0d4478b995c5e54615a2e5360ccedd2f85e70ab57fbe817ca613d5e63b8"},
+ {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:4134d3f1ba5f15027ff5c04296f13328fecd46921424084516bdb1b2548e66ff"},
+ {file = "Pillow-9.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:bc431b065722a5ad1dfb4df354fb9333b7a582a5ee39a90e6ffff688d72f27a1"},
+ {file = "Pillow-9.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:1536ad017a9f789430fb6b8be8bf99d2f214c76502becc196c6f2d9a75b01b76"},
+ {file = "Pillow-9.2.0-cp38-cp38-win32.whl", hash = "sha256:2ad0d4df0f5ef2247e27fc790d5c9b5a0af8ade9ba340db4a73bb1a4a3e5fb4f"},
+ {file = "Pillow-9.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:ec52c351b35ca269cb1f8069d610fc45c5bd38c3e91f9ab4cbbf0aebc136d9c8"},
+ {file = "Pillow-9.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ed2c4ef2451de908c90436d6e8092e13a43992f1860275b4d8082667fbb2ffc"},
+ {file = "Pillow-9.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ad2f835e0ad81d1689f1b7e3fbac7b01bb8777d5a985c8962bedee0cc6d43da"},
+ {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea98f633d45f7e815db648fd7ff0f19e328302ac36427343e4432c84432e7ff4"},
+ {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7761afe0126d046974a01e030ae7529ed0ca6a196de3ec6937c11df0df1bc91c"},
+ {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a54614049a18a2d6fe156e68e188da02a046a4a93cf24f373bffd977e943421"},
+ {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:5aed7dde98403cd91d86a1115c78d8145c83078e864c1de1064f52e6feb61b20"},
+ {file = "Pillow-9.2.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:13b725463f32df1bfeacbf3dd197fb358ae8ebcd8c5548faa75126ea425ccb60"},
+ {file = "Pillow-9.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:808add66ea764ed97d44dda1ac4f2cfec4c1867d9efb16a33d158be79f32b8a4"},
+ {file = "Pillow-9.2.0-cp39-cp39-win32.whl", hash = "sha256:337a74fd2f291c607d220c793a8135273c4c2ab001b03e601c36766005f36885"},
+ {file = "Pillow-9.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:fac2d65901fb0fdf20363fbd345c01958a742f2dc62a8dd4495af66e3ff502a4"},
+ {file = "Pillow-9.2.0-pp37-pypy37_pp73-macosx_10_10_x86_64.whl", hash = "sha256:ad2277b185ebce47a63f4dc6302e30f05762b688f8dc3de55dbae4651872cdf3"},
+ {file = "Pillow-9.2.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c7b502bc34f6e32ba022b4a209638f9e097d7a9098104ae420eb8186217ebbb"},
+ {file = "Pillow-9.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d1f14f5f691f55e1b47f824ca4fdcb4b19b4323fe43cc7bb105988cad7496be"},
+ {file = "Pillow-9.2.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:dfe4c1fedfde4e2fbc009d5ad420647f7730d719786388b7de0999bf32c0d9fd"},
+ {file = "Pillow-9.2.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:f07f1f00e22b231dd3d9b9208692042e29792d6bd4f6639415d2f23158a80013"},
+ {file = "Pillow-9.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1802f34298f5ba11d55e5bb09c31997dc0c6aed919658dfdf0198a2fe75d5490"},
+ {file = "Pillow-9.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17d4cafe22f050b46d983b71c707162d63d796a1235cdf8b9d7a112e97b15bac"},
+ {file = "Pillow-9.2.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:96b5e6874431df16aee0c1ba237574cb6dff1dcb173798faa6a9d8b399a05d0e"},
+ {file = "Pillow-9.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:0030fdbd926fb85844b8b92e2f9449ba89607231d3dd597a21ae72dc7fe26927"},
+ {file = "Pillow-9.2.0.tar.gz", hash = "sha256:75e636fd3e0fb872693f23ccb8a5ff2cd578801251f3a4f6854c6a5d437d3c04"},
]
platformdirs = [
{file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"},
{file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"},
]
plotly = [
- {file = "plotly-5.7.0-py2.py3-none-any.whl", hash = "sha256:3a35131762c6567813012462e1d496e1d3898f56ab3d386b32f103f7f0c79cf1"},
- {file = "plotly-5.7.0.tar.gz", hash = "sha256:15ab20e9ed8b55f669b3d35e186eb48f9e1fe07321a1337b8b7df8d3573d265a"},
+ {file = "plotly-5.9.0-py2.py3-none-any.whl", hash = "sha256:9acf168915101caac82ed6da3390840c622d9d4e4a78cbe1260f52501efc3117"},
+ {file = "plotly-5.9.0.tar.gz", hash = "sha256:b0536e72bbc0b3cf169ac1fd00759d77aae7bb12ae378cdc75c5dc362f5de576"},
]
pluggy = [
{file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
]
pre-commit = [
- {file = "pre_commit-2.18.1-py2.py3-none-any.whl", hash = "sha256:02226e69564ebca1a070bd1f046af866aa1c318dbc430027c50ab832ed2b73f2"},
- {file = "pre_commit-2.18.1.tar.gz", hash = "sha256:5d445ee1fa8738d506881c5d84f83c62bb5be6b2838e32207433647e8e5ebe10"},
+ {file = "pre_commit-2.19.0-py2.py3-none-any.whl", hash = "sha256:10c62741aa5704faea2ad69cb550ca78082efe5697d6f04e5710c3c229afdd10"},
+ {file = "pre_commit-2.19.0.tar.gz", hash = "sha256:4233a1e38621c87d9dda9808c6606d7e7ba0e087cd56d3fe03202a01d2919615"},
]
proto-plus = [
- {file = "proto-plus-1.20.3.tar.gz", hash = "sha256:f28b225bc9e6c14e206fb7f8e996a46fb2ccd902648e512d496abb6a716a4ae5"},
- {file = "proto_plus-1.20.3-py3-none-any.whl", hash = "sha256:b06be21c3848fbc20387d1d6891a9b97dfa1cdd0f10d3d42ef70b5700ec0f423"},
+ {file = "proto-plus-1.20.6.tar.gz", hash = "sha256:449b4537e83f4776bd69051c4d776db8ffe3f9d0641f1e87b06c116eb94c90e9"},
+ {file = "proto_plus-1.20.6-py3-none-any.whl", hash = "sha256:c6c43c3fcfc360fdab46b47e2e9e805ff56e13169f9f2e45caf88b6b593215ab"},
]
protobuf = [
{file = "protobuf-3.20.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3cc797c9d15d7689ed507b165cd05913acb992d78b379f6014e013f9ecb20996"},
@@ -2028,36 +1901,36 @@ py = [
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
]
pyarrow = [
- {file = "pyarrow-7.0.0-cp310-cp310-macosx_10_13_universal2.whl", hash = "sha256:0f15213f380539c9640cb2413dc677b55e70f04c9e98cfc2e1d8b36c770e1036"},
- {file = "pyarrow-7.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:29c4e3b3be0b94d07ff4921a5e410fc690a3a066a850a302fc504de5fc638495"},
- {file = "pyarrow-7.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8a9bfc8a016bcb8f9a8536d2fa14a890b340bc7a236275cd60fd4fb8b93ff405"},
- {file = "pyarrow-7.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:49d431ed644a3e8f53ae2bbf4b514743570b495b5829548db51610534b6eeee7"},
- {file = "pyarrow-7.0.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:aa6442a321c1e49480b3d436f7d631c895048a16df572cf71c23c6b53c45ed66"},
- {file = "pyarrow-7.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6b01a23cb401750092c6f7c4dcae67cd8fd6b99ae710e26f654f23508f25f25"},
- {file = "pyarrow-7.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f10928745c6ff66e121552731409803bed86c66ac79c64c90438b053b5242c5"},
- {file = "pyarrow-7.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:759090caa1474cafb5e68c93a9bd6cb45d8bb8e4f2cad2f1a0cc9439bae8ae88"},
- {file = "pyarrow-7.0.0-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:e3fe34bcfc28d9c4a747adc3926d2307a04c5c50b89155946739515ccfe5eab0"},
- {file = "pyarrow-7.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:040dce5345603e4e621bcf4f3b21f18d557852e7b15307e559bb14c8951c8714"},
- {file = "pyarrow-7.0.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ed4b647c3345ae3463d341a9d28d0260cd302fb92ecf4e2e3e0f1656d6e0e55c"},
- {file = "pyarrow-7.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7fecd5d5604f47e003f50887a42aee06cb8b7bf8e8bf7dc543a22331d9ba832"},
- {file = "pyarrow-7.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f2d00b892fe865e43346acb78761ba268f8bb1cbdba588816590abcb780ee3d"},
- {file = "pyarrow-7.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f439f7d77201681fd31391d189aa6b1322d27c9311a8f2fce7d23972471b02b6"},
- {file = "pyarrow-7.0.0-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:3e06b0e29ce1e32f219c670c6b31c33d25a5b8e29c7828f873373aab78bf30a5"},
- {file = "pyarrow-7.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:13dc05bcf79dbc1bd2de1b05d26eb64824b85883d019d81ca3c2eca9b68b5a44"},
- {file = "pyarrow-7.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:06183a7ff2b0c030ec0413fc4dc98abad8cf336c78c280a0b7f4bcbebb78d125"},
- {file = "pyarrow-7.0.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:702c5a9f960b56d03569eaaca2c1a05e8728f05ea1a2138ef64234aa53cd5884"},
- {file = "pyarrow-7.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7313038203df77ec4092d6363dbc0945071caa72635f365f2b1ae0dd7469865"},
- {file = "pyarrow-7.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e87d1f7dc7a0b2ecaeb0c7a883a85710f5b5626d4134454f905571c04bc73d5a"},
- {file = "pyarrow-7.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:ba69488ae25c7fde1a2ae9ea29daf04d676de8960ffd6f82e1e13ca945bb5861"},
- {file = "pyarrow-7.0.0-cp39-cp39-macosx_10_13_universal2.whl", hash = "sha256:11a591f11d2697c751261c9d57e6e5b0d38fdc7f0cc57f4fd6edc657da7737df"},
- {file = "pyarrow-7.0.0-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:6183c700877852dc0f8a76d4c0c2ffd803ba459e2b4a452e355c2d58d48cf39f"},
- {file = "pyarrow-7.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d1748154714b543e6ae8452a68d4af85caf5298296a7e5d4d00f1b3021838ac6"},
- {file = "pyarrow-7.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcc8f934c7847a88f13ec35feecffb61fe63bb7a3078bd98dd353762e969ce60"},
- {file = "pyarrow-7.0.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:759f59ac77b84878dbd54d06cf6df74ff781b8e7cf9313eeffbb5ec97b94385c"},
- {file = "pyarrow-7.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d3e3f93ac2993df9c5e1922eab7bdea047b9da918a74e52145399bc1f0099a3"},
- {file = "pyarrow-7.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:306120af554e7e137895254a3b4741fad682875a5f6403509cd276de3fe5b844"},
- {file = "pyarrow-7.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:087769dac6e567d58d59b94c4f866b3356c00d3db5b261387ece47e7324c2150"},
- {file = "pyarrow-7.0.0.tar.gz", hash = "sha256:da656cad3c23a2ebb6a307ab01d35fce22f7850059cffafcb90d12590f8f4f38"},
+ {file = "pyarrow-8.0.0-cp310-cp310-macosx_10_13_universal2.whl", hash = "sha256:d5ef4372559b191cafe7db8932801eee252bfc35e983304e7d60b6954576a071"},
+ {file = "pyarrow-8.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:863be6bad6c53797129610930794a3e797cb7d41c0a30e6794a2ac0e42ce41b8"},
+ {file = "pyarrow-8.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:69b043a3fce064ebd9fbae6abc30e885680296e5bd5e6f7353e6a87966cf2ad7"},
+ {file = "pyarrow-8.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:51e58778fcb8829fca37fbfaea7f208d5ce7ea89ea133dd13d8ce745278ee6f0"},
+ {file = "pyarrow-8.0.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:15511ce2f50343f3fd5e9f7c30e4d004da9134e9597e93e9c96c3985928cbe82"},
+ {file = "pyarrow-8.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea132067ec712d1b1116a841db1c95861508862b21eddbcafefbce8e4b96b867"},
+ {file = "pyarrow-8.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:deb400df8f19a90b662babceb6dd12daddda6bb357c216e558b207c0770c7654"},
+ {file = "pyarrow-8.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:3bd201af6e01f475f02be88cf1f6ee9856ab98c11d8bbb6f58347c58cd07be00"},
+ {file = "pyarrow-8.0.0-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:78a6ac39cd793582998dac88ab5c1c1dd1e6503df6672f064f33a21937ec1d8d"},
+ {file = "pyarrow-8.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d6f1e1040413651819074ef5b500835c6c42e6c446532a1ddef8bc5054e8dba5"},
+ {file = "pyarrow-8.0.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c13b2e28a91b0fbf24b483df54a8d7814c074c2623ecef40dce1fa52f6539b"},
+ {file = "pyarrow-8.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9c97c8e288847e091dfbcdf8ce51160e638346f51919a9e74fe038b2e8aee62"},
+ {file = "pyarrow-8.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:edad25522ad509e534400d6ab98cf1872d30c31bc5e947712bfd57def7af15bb"},
+ {file = "pyarrow-8.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ece333706a94c1221ced8b299042f85fd88b5db802d71be70024433ddf3aecab"},
+ {file = "pyarrow-8.0.0-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:95c7822eb37663e073da9892f3499fe28e84f3464711a3e555e0c5463fd53a19"},
+ {file = "pyarrow-8.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:25a5f7c7f36df520b0b7363ba9f51c3070799d4b05d587c60c0adaba57763479"},
+ {file = "pyarrow-8.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ce64bc1da3109ef5ab9e4c60316945a7239c798098a631358e9ab39f6e5529e9"},
+ {file = "pyarrow-8.0.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:541e7845ce5f27a861eb5b88ee165d931943347eec17b9ff1e308663531c9647"},
+ {file = "pyarrow-8.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cd86e04a899bef43e25184f4b934584861d787cf7519851a8c031803d45c6d8"},
+ {file = "pyarrow-8.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba2b7aa7efb59156b87987a06f5241932914e4d5bbb74a465306b00a6c808849"},
+ {file = "pyarrow-8.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:42b7982301a9ccd06e1dd4fabd2e8e5df74b93ce4c6b87b81eb9e2d86dc79871"},
+ {file = "pyarrow-8.0.0-cp39-cp39-macosx_10_13_universal2.whl", hash = "sha256:1dd482ccb07c96188947ad94d7536ab696afde23ad172df8e18944ec79f55055"},
+ {file = "pyarrow-8.0.0-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:81b87b782a1366279411f7b235deab07c8c016e13f9af9f7c7b0ee564fedcc8f"},
+ {file = "pyarrow-8.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:03a10daad957970e914920b793f6a49416699e791f4c827927fd4e4d892a5d16"},
+ {file = "pyarrow-8.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:65c7f4cc2be195e3db09296d31a654bb6d8786deebcab00f0e2455fd109d7456"},
+ {file = "pyarrow-8.0.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3fee786259d986f8c046100ced54d63b0c8c9f7cdb7d1bbe07dc69e0f928141c"},
+ {file = "pyarrow-8.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ea2c54e6b5ecd64e8299d2abb40770fe83a718f5ddc3825ddd5cd28e352cce1"},
+ {file = "pyarrow-8.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8392b9a1e837230090fe916415ed4c3433b2ddb1a798e3f6438303c70fbabcfc"},
+ {file = "pyarrow-8.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:cb06cacc19f3b426681f2f6803cc06ff481e7fe5b3a533b406bc5b2138843d4f"},
+ {file = "pyarrow-8.0.0.tar.gz", hash = "sha256:4a18a211ed888f1ac0b0ebcb99e2d9a3e913a481120ee9b1fe33d3fedb945d4e"},
]
pyasn1 = [
{file = "pyasn1-0.4.8-py2.4.egg", hash = "sha256:fec3e9d8e36808a28efb59b489e4528c10ad0f480e57dcc32b4de5c9d8c9fdf3"},
@@ -2089,17 +1962,13 @@ pyasn1-modules = [
{file = "pyasn1_modules-0.2.8-py3.6.egg", hash = "sha256:cbac4bc38d117f2a49aeedec4407d23e8866ea4ac27ff2cf7fb3e5b570df19e0"},
{file = "pyasn1_modules-0.2.8-py3.7.egg", hash = "sha256:c29a5e5cc7a3f05926aff34e097e84f8589cd790ce0ed41b67aed6857b26aafd"},
]
-pyct = [
- {file = "pyct-0.4.8-py2.py3-none-any.whl", hash = "sha256:222e104d561b28cfdb56667d2ba10e5290b4466db66d0af38ab935577af85390"},
- {file = "pyct-0.4.8.tar.gz", hash = "sha256:23d7525b5a1567535c093aea4b9c33809415aa5f018dd77f6eb738b1226df6f7"},
-]
pygments = [
{file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"},
{file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"},
]
pyparsing = [
- {file = "pyparsing-3.0.8-py3-none-any.whl", hash = "sha256:ef7b523f6356f763771559412c0d7134753f037822dad1b16945b7b846f7ad06"},
- {file = "pyparsing-3.0.8.tar.gz", hash = "sha256:7bf433498c016c4314268d95df76c81b842a4cb2b276fa3312cfb1e1d85f6954"},
+ {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
+ {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
]
pytest = [
{file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"},
@@ -2124,10 +1993,6 @@ pytz = [
{file = "pytz-2022.1-py2.py3-none-any.whl", hash = "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"},
{file = "pytz-2022.1.tar.gz", hash = "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7"},
]
-pyviz-comms = [
- {file = "pyviz_comms-2.2.0-py2.py3-none-any.whl", hash = "sha256:c11837635ae47d7001d001d87cf8bf3ae417b4bbf6f493c376114207b7efcd77"},
- {file = "pyviz_comms-2.2.0.tar.gz", hash = "sha256:b8c9dcbde01f3847843fb4d04c3b3f4de784920c71e44ced9dfbb560f6c92218"},
-]
pyyaml = [
{file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"},
{file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"},
@@ -2164,16 +2029,16 @@ pyyaml = [
{file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
]
requests = [
- {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"},
- {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"},
+ {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"},
+ {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"},
]
rsa = [
{file = "rsa-4.8-py3-none-any.whl", hash = "sha256:95c5d300c4e879ee69708c428ba566c59478fd653cc3a22243eeb8ed846950bb"},
{file = "rsa-4.8.tar.gz", hash = "sha256:5c6bd9dc7a543b7fe4304a631f8a8a3b674e2bbfc49c2ae96200cdbe55df6b17"},
]
setuptools-scm = [
- {file = "setuptools_scm-6.4.2-py3-none-any.whl", hash = "sha256:acea13255093849de7ccb11af9e1fb8bde7067783450cee9ef7a93139bddf6d4"},
- {file = "setuptools_scm-6.4.2.tar.gz", hash = "sha256:6833ac65c6ed9711a4d5d2266f8024cfa07c533a0e55f4c12f6eff280a5a9e30"},
+ {file = "setuptools_scm-7.0.4-py3-none-any.whl", hash = "sha256:53a6f51451a84d891ca485cec700a802413bbc5e76ee65da134e54c733a6e44d"},
+ {file = "setuptools_scm-7.0.4.tar.gz", hash = "sha256:c27bc1f48593cfc9527251f1f0fc41ce282ea57bbc7fd5a1ea3acb99325fab4c"},
]
six = [
{file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
@@ -2242,52 +2107,9 @@ tomli = [
{file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
]
-tornado = [
- {file = "tornado-6.1-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32"},
- {file = "tornado-6.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c"},
- {file = "tornado-6.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9de9e5188a782be6b1ce866e8a51bc76a0fbaa0e16613823fc38e4fc2556ad05"},
- {file = "tornado-6.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:61b32d06ae8a036a6607805e6720ef00a3c98207038444ba7fd3d169cd998910"},
- {file = "tornado-6.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:3e63498f680547ed24d2c71e6497f24bca791aca2fe116dbc2bd0ac7f191691b"},
- {file = "tornado-6.1-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:6c77c9937962577a6a76917845d06af6ab9197702a42e1346d8ae2e76b5e3675"},
- {file = "tornado-6.1-cp35-cp35m-win32.whl", hash = "sha256:6286efab1ed6e74b7028327365cf7346b1d777d63ab30e21a0f4d5b275fc17d5"},
- {file = "tornado-6.1-cp35-cp35m-win_amd64.whl", hash = "sha256:fa2ba70284fa42c2a5ecb35e322e68823288a4251f9ba9cc77be04ae15eada68"},
- {file = "tornado-6.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:0a00ff4561e2929a2c37ce706cb8233b7907e0cdc22eab98888aca5dd3775feb"},
- {file = "tornado-6.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:748290bf9112b581c525e6e6d3820621ff020ed95af6f17fedef416b27ed564c"},
- {file = "tornado-6.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:e385b637ac3acaae8022e7e47dfa7b83d3620e432e3ecb9a3f7f58f150e50921"},
- {file = "tornado-6.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:25ad220258349a12ae87ede08a7b04aca51237721f63b1808d39bdb4b2164558"},
- {file = "tornado-6.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:65d98939f1a2e74b58839f8c4dab3b6b3c1ce84972ae712be02845e65391ac7c"},
- {file = "tornado-6.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:e519d64089b0876c7b467274468709dadf11e41d65f63bba207e04217f47c085"},
- {file = "tornado-6.1-cp36-cp36m-win32.whl", hash = "sha256:b87936fd2c317b6ee08a5741ea06b9d11a6074ef4cc42e031bc6403f82a32575"},
- {file = "tornado-6.1-cp36-cp36m-win_amd64.whl", hash = "sha256:cc0ee35043162abbf717b7df924597ade8e5395e7b66d18270116f8745ceb795"},
- {file = "tornado-6.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7250a3fa399f08ec9cb3f7b1b987955d17e044f1ade821b32e5f435130250d7f"},
- {file = "tornado-6.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ed3ad863b1b40cd1d4bd21e7498329ccaece75db5a5bf58cd3c9f130843e7102"},
- {file = "tornado-6.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:dcef026f608f678c118779cd6591c8af6e9b4155c44e0d1bc0c87c036fb8c8c4"},
- {file = "tornado-6.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:70dec29e8ac485dbf57481baee40781c63e381bebea080991893cd297742b8fd"},
- {file = "tornado-6.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:d3f7594930c423fd9f5d1a76bee85a2c36fd8b4b16921cae7e965f22575e9c01"},
- {file = "tornado-6.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3447475585bae2e77ecb832fc0300c3695516a47d46cefa0528181a34c5b9d3d"},
- {file = "tornado-6.1-cp37-cp37m-win32.whl", hash = "sha256:e7229e60ac41a1202444497ddde70a48d33909e484f96eb0da9baf8dc68541df"},
- {file = "tornado-6.1-cp37-cp37m-win_amd64.whl", hash = "sha256:cb5ec8eead331e3bb4ce8066cf06d2dfef1bfb1b2a73082dfe8a161301b76e37"},
- {file = "tornado-6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:20241b3cb4f425e971cb0a8e4ffc9b0a861530ae3c52f2b0434e6c1b57e9fd95"},
- {file = "tornado-6.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:c77da1263aa361938476f04c4b6c8916001b90b2c2fdd92d8d535e1af48fba5a"},
- {file = "tornado-6.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:fba85b6cd9c39be262fcd23865652920832b61583de2a2ca907dbd8e8a8c81e5"},
- {file = "tornado-6.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:1e8225a1070cd8eec59a996c43229fe8f95689cb16e552d130b9793cb570a288"},
- {file = "tornado-6.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:d14d30e7f46a0476efb0deb5b61343b1526f73ebb5ed84f23dc794bdb88f9d9f"},
- {file = "tornado-6.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:8f959b26f2634a091bb42241c3ed8d3cedb506e7c27b8dd5c7b9f745318ddbb6"},
- {file = "tornado-6.1-cp38-cp38-win32.whl", hash = "sha256:34ca2dac9e4d7afb0bed4677512e36a52f09caa6fded70b4e3e1c89dbd92c326"},
- {file = "tornado-6.1-cp38-cp38-win_amd64.whl", hash = "sha256:6196a5c39286cc37c024cd78834fb9345e464525d8991c21e908cc046d1cc02c"},
- {file = "tornado-6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0ba29bafd8e7e22920567ce0d232c26d4d47c8b5cf4ed7b562b5db39fa199c5"},
- {file = "tornado-6.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:33892118b165401f291070100d6d09359ca74addda679b60390b09f8ef325ffe"},
- {file = "tornado-6.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7da13da6f985aab7f6f28debab00c67ff9cbacd588e8477034c0652ac141feea"},
- {file = "tornado-6.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:e0791ac58d91ac58f694d8d2957884df8e4e2f6687cdf367ef7eb7497f79eaa2"},
- {file = "tornado-6.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:66324e4e1beede9ac79e60f88de548da58b1f8ab4b2f1354d8375774f997e6c0"},
- {file = "tornado-6.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:a48900ecea1cbb71b8c71c620dee15b62f85f7c14189bdeee54966fbd9a0c5bd"},
- {file = "tornado-6.1-cp39-cp39-win32.whl", hash = "sha256:d3d20ea5782ba63ed13bc2b8c291a053c8d807a8fa927d941bd718468f7b950c"},
- {file = "tornado-6.1-cp39-cp39-win_amd64.whl", hash = "sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4"},
- {file = "tornado-6.1.tar.gz", hash = "sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791"},
-]
tox = [
- {file = "tox-3.25.0-py2.py3-none-any.whl", hash = "sha256:0805727eb4d6b049de304977dfc9ce315a1938e6619c3ab9f38682bb04662a5a"},
- {file = "tox-3.25.0.tar.gz", hash = "sha256:37888f3092aa4e9f835fc8cc6dadbaaa0782651c41ef359e3a5743fcb0308160"},
+ {file = "tox-3.25.1-py2.py3-none-any.whl", hash = "sha256:c38e15f4733683a9cc0129fba078633e07eb0961f550a010ada879e95fb32632"},
+ {file = "tox-3.25.1.tar.gz", hash = "sha256:c138327815f53bc6da4fe56baec5f25f00622ae69ef3fe4e1e385720e22486f9"},
]
tox-gh-actions = [
{file = "tox-gh-actions-2.9.1.tar.gz", hash = "sha256:2bbb681eccd3fd3573231a05f7acf228caae1e3f12397b5517b404417ab90aba"},
@@ -2297,25 +2119,17 @@ tox-poetry = [
{file = "tox-poetry-0.4.1.tar.gz", hash = "sha256:2395808e1ce487b5894c10f2202e14702bfa6d6909c0d1e525170d14809ac7ef"},
{file = "tox_poetry-0.4.1-py2.py3-none-any.whl", hash = "sha256:11d9cd4e51d4cd9484b3ba63f2650ab4cfb4096e5f0682ecf561ddfc3c8e8c92"},
]
-tqdm = [
- {file = "tqdm-4.64.0-py2.py3-none-any.whl", hash = "sha256:74a2cdefe14d11442cedf3ba4e21a3b84ff9a2dbdc6cfae2c34addb2a14a5ea6"},
- {file = "tqdm-4.64.0.tar.gz", hash = "sha256:40be55d30e200777a307a7585aee69e4eabb46b4ec6a4b4a5f2d9f11e7d5408d"},
-]
typing-extensions = [
- {file = "typing_extensions-4.2.0-py3-none-any.whl", hash = "sha256:6657594ee297170d19f67d55c05852a874e7eb634f4f753dbd667855e07c1708"},
- {file = "typing_extensions-4.2.0.tar.gz", hash = "sha256:f1c24655a0da0d1b67f07e17a5e6b2a105894e6824b92096378bb3668ef02376"},
+ {file = "typing_extensions-4.3.0-py3-none-any.whl", hash = "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02"},
+ {file = "typing_extensions-4.3.0.tar.gz", hash = "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6"},
]
urllib3 = [
{file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"},
{file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"},
]
virtualenv = [
- {file = "virtualenv-20.14.1-py2.py3-none-any.whl", hash = "sha256:e617f16e25b42eb4f6e74096b9c9e37713cf10bf30168fb4a739f3fa8f898a3a"},
- {file = "virtualenv-20.14.1.tar.gz", hash = "sha256:ef589a79795589aada0c1c5b319486797c03b67ac3984c48c669c0e4f50df3a5"},
-]
-webencodings = [
- {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
- {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
+ {file = "virtualenv-20.15.1-py2.py3-none-any.whl", hash = "sha256:b30aefac647e86af6d82bfc944c556f8f1a9c90427b2fb4e3bfbf338cb82becf"},
+ {file = "virtualenv-20.15.1.tar.gz", hash = "sha256:288171134a2ff3bfb1a2f54f119e77cd1b81c29fc1265a2356f3e8d14c7d58c4"},
]
werkzeug = [
{file = "Werkzeug-2.1.2-py3-none-any.whl", hash = "sha256:72a4b735692dd3135217911cbeaa1be5fa3f62bffb8745c5215420a03dc55255"},
diff --git a/pyproject.toml b/pyproject.toml
index e5a32cc..40a4c6a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,7 +2,7 @@
[tool.poetry]
name = "aerosense-dashboard"
-version = "0.1.0"
+version = "0.2.0"
description = "High-level visualisation for aerosense"
authors = ["Tom Clark", "Marcus Lugg", "Yuriy Marykovsky"]
license = "BSD-3"
@@ -18,8 +18,8 @@ classifiers = [
"Operating System :: OS Independent",
]
repository = "https://github.com/aerosense-ai/aerosense-dashboard"
+packages = [{ include = "dashboard"}]
keywords = ["aerosense", "dashboard"]
-packages = [{ include = "board" },]
[tool.poetry.dependencies]
@@ -29,7 +29,6 @@ sphinx-rtd-theme = {version = "1.0.0", optional = true}
sphinx-tabs = {version = "3.2.0", optional = true}
sphinx-charts = {version = "0.1.2", optional = true}
sphinx-math-dollar = {version = "1.2.0", optional = true}
-panel = "^0.13.0"
pandas = "^1.4.2"
numpy = "^1.22.3"
matplotlib = "^3.5.1"
@@ -37,6 +36,8 @@ google-cloud-bigquery = {extras = ["bqstorage", "pandas"], version = "^3.0.1"}
plotly = "^5.7.0"
gunicorn = "^20.1.0"
dash = "^2.4.1"
+Flask-Caching = "^2.0.0"
+dash-daq = "^0.5.0"
[tool.poetry.dev-dependencies]
coverage = "^6.2"
diff --git a/setup.cfg b/setup.cfg
index 7041481..f348de2 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -13,7 +13,7 @@ default_section = THIRDPARTY
known_third_party = environ,google,google*,requests
known_first_party = aerosense_tools,tests
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
-no_lines_before = THIRDPARTY, LOCALFOLDER
+no_lines_before = LOCALFOLDER
lines_after_imports=2
# These are necessary for `isort` to create import statements that are
# compatible with `black`. Changing these will break our auto-formatting.