API Usage Tutorial
Concepts
Data in the datastore is organized as a set of tables
of
latest values for each object and also as
sets of
time series values for each instance of each object.
Object types include types such as Interfaces, LSPs, Nodes,
Demands, Interface Queues, Inventory and custom, user defined types. Each object has a
set of properties which are typically measured at regular time intervals,
such as the "Traffic In" measurement of Interfaces, which may be collected and stored
every ten minutes. For example, if there exists an Interface :
"tokyjp05.jp.bb/ae1.0", which has increasing traffic
every ten minutes over the past day from 200Mbps to 800Mbps. The api:
api/objects/{type} will fetch
latest values only, so that a request for:
api/objects/interfaces?filter=node(tokyjp05.jp.bb);name(ae1.0);
will return a single object whose "Traffic In" value is 800.0.
Time Series data, which comprises the bulk of the data, is
typically accessed via reports, which apply filters, aggregations and some
analysis to create summary tables and graphs. There also exists a special api:
api/jobs/live, which synchronously retrieves the
raw data for a single object over a period of time.
Otherwise, all reports are run
asynchronously.
Reports come in four types: Ad Hoc, Deviation, Health and
Traffic. They operate on a set of objects of a single type, chosen using a
filter on latest values. The data within reports is derived from the
raw, time series data. For example, an ad hoc report on all interface with a
filter for a "traffic in" value of 800Mbps will include the "tokyjp05.jp.bb/ae1.0"
interface because its
latest value is 800 and will not include all
interfaces whose value has ever been 800Mbps. If the report includes the
"traffic in" property, it will include the raw data for that object (or a set
of objects,) plus requested values, such as min, max or average.
The process
to run a report is:
- Define report: api/definitions.
- Start the report: api/jobs.
- Check status: api/jobs/{jid}.
- Fetch results: api/reportout/{jobid}.
Note that steps 1 & 2 can be combined into a single step by POSTing the report
definition to
api/jobs.
API Usage Examples
Fetching latest values.
The objects api:
api/objects/{type} fetches a single object identified by the
filter parameter. Note that each set of objects comes with full meta data for all object properties. In the following example, a single interface named "ap_tok_bb1/ae0.0" is retrieved:
curl -X GET -H "Accept: application/json" -u admin:cariden "http://127.0.0.1:8080/matelive/api/objects/interfaces?filter=node(ap_tok_bb1);name(ae0.0);"
{
"objectDataList": null,
"objectData": [
{
"data": [
"AP_TOK_BB1",
"1714",
"ae0.0",
"To AP_TOK_ER7 Bundle-Ether0",
"20000",
"172.20.7.30/30",
"10",
"AP_TOK_ER7",
"Bundle-Ether0",
"up",
"up",
"1670.62",
"8.35",
"1793.64",
"8.97",
"389243.34",
"362546.75",
null,
"0",
"edge",
";LagImbalance",
"1713",
"3",
"64512",
"64512",
"1.07"
],
"selected": null,
"notesInfo": null
}
],
"objectMeta": [
{
"category": "Interfaces",
"name": "Node",
"type": "String",
"isKey": true,
"hidden": false,
"displayName": "Node",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "thingid",
"type": "Integer",
"isKey": false,
"hidden": true,
"displayName": "thingid",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "Name",
"type": "String",
"isKey": true,
"hidden": false,
"displayName": "Name",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "Description",
"type": "String",
"isKey": false,
"hidden": false,
"displayName": "Description",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "Capacity",
"type": "Long",
"isKey": false,
"hidden": false,
"displayName": "Capacity",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "IPAddress",
"type": "String",
"isKey": false,
"hidden": false,
"displayName": "IP Address",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "Metric",
"type": "Long",
"isKey": false,
"hidden": false,
"displayName": "Metric",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "RemoteNode",
"type": "String",
"isKey": false,
"hidden": false,
"displayName": "Remote Node",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "RemoteInterface",
"type": "String",
"isKey": false,
"hidden": false,
"displayName": "Remote Interface",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "AdminStatus",
"type": "String",
"isKey": false,
"hidden": false,
"displayName": "Admin Status",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "OperStatus",
"type": "String",
"isKey": false,
"hidden": false,
"displayName": "Operational Status",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "TraffOut",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "Traffic Out",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "UtilOut",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "Util Out",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "TraffIn",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "Traffic In",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "UtilIn",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "Util In",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "PacketsIn",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "Packets In",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "PacketsOut",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "Packets Out",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "ErrorsPacketsIn",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "Error Packets In",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "DroppedPacketsOut",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "Dropped Packets Out",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "Function",
"type": "String",
"isKey": false,
"hidden": false,
"displayName": "Function",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "Tags",
"type": "String",
"isKey": false,
"hidden": false,
"displayName": "Tags",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "ParentThingId",
"type": "Long",
"isKey": false,
"hidden": true,
"displayName": "ParentThingId",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "Type",
"type": "Long",
"isKey": false,
"hidden": false,
"displayName": "Type",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "RemoteAS",
"type": "Long",
"isKey": false,
"hidden": false,
"displayName": "Remote AS",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "AS",
"type": "Long",
"isKey": false,
"hidden": false,
"displayName": "AS",
"additionalFilter": null
},
{
"category": "Interfaces",
"name": "TraffIn over TraffOut",
"type": "Double",
"isKey": false,
"hidden": false,
"displayName": "TraffIn over TraffOut",
"additionalFilter": null
}
],
"treeMeta": null,
"objectType": {
"name": "Interfaces",
"display": "Interfaces"
},
"count": 1
}
Running an ad hoc report.
Defining a report involves POSTing a report definition of one of the main report types.
If the POST uses the api:
api/jobs, the response with be a Job ID.
If the POST uses the api:
api/definitions, the response with be a Definition ID which can then be POSTed to
api/jobs.
The example below shows the more convenient method of POSTing directly to
api/jobs. This example reports on the past month's utilization numbers for all interfaces whose capacity is 100Gb.
curl -X POST -H "Content-Type: application/json" -u admin:cariden "http://127.0.0.1:8080/matelive/api/jobs" -d '{"properties":[{"name":"UtilIn","aggregationMode":"P95"},{"name":"UtilOut","aggregationMode":"P95"}],"definitionId":4,"name":"","reportType":"AdHoc","objectType":"Interfaces","group":"Capacity","subGroup":"100000","query":null,"filter":null,"objectKeys":null,"timeRangeUnits":"month","timeRangeValue":"1","timeFrom":null,"timeTo":null,"hasCumulativeSum":true,"cumulativeGroupBy":"Node","aggPeriodUnits":null,"aggPeriodValue":0}'
4
Report status.
The above response (4) was a Job ID, which can be used to fetch status.
curl -X GET -u admin:cariden "http://127.0.0.1:8080/matelive/api/jobs/4"
{
"jobId": 4,
"definitionId": 2,
"definitionName": null,
"startTime": "2014-10-29 16:03:33",
"endTime": "2014-10-29 16:03:38",
"elapsedTime": 5854,
"percentComplete": 100,
"jobStatus": "completed",
"defineURL": "http://127.0.0.1:8080/matelive/defineReport?outputXml&name=\"Ad+Hoc-Interfaces-9\"&objectType=interfaces&group.capacity=100000&reportType=adhoc&time.last=1.month&utilin.p95&utilout.p95&sum.group=Node",
"outputFilter": null,
"outputSorts": null
}
Report output.
Reports typically consist of a table with links to graphs and other details. The following fetches the report table.
curl -X GET -u admin:cariden "http://127.0.0.1:8080/matelive/services/reportout/4?page=1&nPerPage=10"
{
"id": 4,
"title": null,
"summary": {
"summary": [
[
"Group",
"Capacity"
],
[
"Sub-Group",
"100000"
],
[
"Grouped by",
"Node"
],
[
"Generated on",
"2014-10-29 16:14:06"
],
[
"Time range",
"2013-09-16 03:15:57 - 2013-10-16 13:45:00"
],
[
"Measurements",
"UtilIn (P95),UtilOut (P95)"
],
[
"Raw Interval",
"900000"
],
[
"Output Mode",
"Cumulative"
],
[
"Definition ID",
"4"
],
[
"Category",
"Interfaces"
],
[
"Report Type",
"Ad Hoc"
]
]
},
"table": {
"jsType": "UiTable",
"tableName": null,
"headers": [
"Node",
"Count",
"Util In (P95)",
"Util Out (P95)",
"rowId"
],
"dataTypes": [
"String",
"Integer",
"Double",
"Double",
"int"
],
"drillDowns": [
"false",
"true",
"false",
"false",
null
],
"keyColumns": [
0
],
"rows": [
[
"AM_DC_EAST_BB1",
"3",
"2.19",
"5.86",
"4"
],
[
"AM_DC_EAST_BB2",
"3",
"2.19",
"5.86",
"2"
],
[
"AM_DC_EAST_BB3",
"5",
"8.35",
"8.35",
"9"
],
[
"AM_DC_EAST_BB4",
"5",
"1.22",
"1.22",
"8"
],
[
"AM_DCA_BB1",
"2",
"2.28",
"0.79",
"3"
],
[
"AM_NYC_BB2",
"8",
"24.35",
"22.01",
"10"
],
[
"AM_SEA_BB1",
"3",
"48.3",
"48.64",
"5"
],
[
"AM_SEA_BB2",
"1",
"35.88",
"38.8",
"6"
],
[
"AP_TOK_BB3",
"2",
"54.88",
"53.06",
"1"
],
[
"EU_LON_BB1",
"2",
"38.16",
"33.53",
"7"
]
],
"currentPage": 1,
"sorts": [
{
"columnIndex": 0,
"sortDirection": "inc"
}
],
"totalRows": 10,
"origRows": 0,
"nPerPage": 10,
"csvUrl": "data/report/9_4_20141029T161402/0.csv",
"filters": ""
}
}
Report graphs
Fetching graph data is a two step process. The first step is to fetch the list of graphs available for a particular Job Id, column & row. If overall graphs are needed, choose a column number greater than the total number of columns, such as 999.
This uses the following api:
api/reportout/{id}/{coldIndex}/{rowId} .
The row ID is found in the previous summary table output. Thus, to get the utilization graphs for the previous report (jobID=4,) for the second row, call GET on the following:
curl -X GET -u admin:cariden "http://127.0.0.1:8080/matelive/services/reportout/4/999/2"
{
"jsType": "LwReportResults",
"from": 1379301357000,
"to": 1381931100000,
"chartFrom": 0,
"chartTo": 0,
"rors": [
{
"jsType": "LwReportObjectResult",
"repObj": {
"jsType": "LwReportObject",
"kvs": [
{
"value1": "Node",
"value2": "AM_DCA_BB1"
}
],
"dataTypes": [
"String"
],
"size": 2,
"url": null
},
"propOuts": [
{
"jsType": "LwSeriesOutput",
"prop": "UtilIn",
"display": "Util In",
"raw": {
"jsType": "ChartData",
"vertLbl": "%",
"title": "UtilIn Raw",
"ctype": "DOT",
"plotColor": "",
"overlay": "UtilIn",
"legends": null,
"csvUrl": "matelive/data/report/4_4_20141028T212716/1811424281_1414531638084.csv",
"dataUrl": null
},
"aggs": null
},
{
"jsType": "LwSeriesOutput",
"prop": "UtilOut",
"display": "Util Out",
"raw": {
"jsType": "ChartData",
"vertLbl": "%",
"title": "UtilOut Raw",
"ctype": "DOT",
"plotColor": "",
"overlay": "UtilOut",
"legends": null,
"csvUrl": "matelive/data/report/4_4_20141028T212716/1041527622_1414531638529.csv",
"dataUrl": null
},
"aggs": null
}
]
}
]
}
In this result, there are two graphs listed:
- UtilIn: "csvUrl": "matelive/data/report/4_4_20141028T212716/1811424281_1414531638084.csv"
- UtilOut: "csvUrl": "matelive/data/report/4_4_20141028T212716/1041527622_1414531638529.csv"
REST Data Resource
Report output will often refer to raw data files by URLs which point to comma separated value files on the server, which can be retrieved using GET. The following is an example which uses basic authentication using the default WAE Live administrator user name ane password. To fetch the UtilOut data from the above report, use the
cvsUrl property retrieved above:
curl -X GET -u admin:cariden "http://127.0.0.1:8080/matelive/data/report/4_4_20141028T212716/1811424281_1414531638084.csv"
Timestamp,UtilOut
2013-09-16 03:15:57,0
2013-09-16 03:30:00,0.02
2013-09-16 03:45:00,0.02
2013-09-16 04:00:00,0.01
2013-09-16 04:15:00,0.01
2013-09-16 04:30:00,0.02
2013-09-16 04:45:00,0.02
2013-09-16 05:00:00,0.02
2013-09-16 05:15:00,0.04
2013-09-16 05:30:00,0.02
2013-09-16 05:45:00,0.02
2013-09-16 06:00:00,0.03
2013-09-16 06:15:00,0.02
2013-09-16 06:30:00,0.02
2013-09-16 06:45:00,0.03
2013-09-16 07:00:00,0.03
2013-09-16 07:15:00,0.03
2013-09-16 07:30:00,0.03
2013-09-16 07:45:00,0.03
2013-09-16 08:00:00,0.03
2013-09-16 08:15:00,0.03
2013-09-16 08:30:00,0.03
2013-09-16 08:45:00,0.04
2013-09-16 09:00:00,0.04
2013-09-16 09:15:00,0.05
2013-09-16 09:30:00,0.05
2013-09-16 09:45:00,0.05
2013-09-16 10:00:00,0.05
2013-09-16 10:15:00,0.05
2013-09-16 10:30:00,0.05
2013-09-16 10:45:00,0.06
2013-09-16 11:00:00,0.05
2013-09-16 11:15:00,0.05
2013-09-16 11:30:00,0.06
2013-09-16 11:45:00,0.06
2013-09-16 12:00:00,0.06
2013-09-16 12:15:00,0.06
2013-09-16 12:30:00,0.05
2013-09-16 12:45:00,0.06
2013-09-16 13:00:00,0.06
2013-09-16 13:15:00,0.07
2013-09-16 13:30:00,0.06
2013-09-16 13:45:00,0.06
2013-09-16 14:00:00,0.06
2013-09-16 14:15:00,0.06
2013-09-16 14:30:00,0.06
2013-09-16 14:45:00,0.06
2013-09-16 15:00:00,0.06
2013-09-16 15:15:00,0.06
2013-09-16 15:30:00,0.06
2013-09-16 15:45:00,0.06
2013-09-16 16:00:00,0.06
2013-09-16 16:15:00,0.06
2013-09-16 16:30:00,0.05
2013-09-16 16:45:00,0.05
2013-09-16 17:00:00,0.06
2013-09-16 17:15:00,0.05
2013-09-16 17:30:00,0.05
2013-09-16 17:45:00,0.05
2013-09-16 18:00:00,0.05
2013-09-16 18:15:00,0.05
2013-09-16 18:30:00,0.05
2013-09-16 18:45:00,0.04
2013-09-16 19:00:00,0.04
2013-09-16 19:15:00,0.05
2013-09-16 19:30:00,0.04
2013-09-16 19:45:00,0.04
2013-09-16 20:00:00,0.04
2013-09-16 20:15:00,0.03
2013-09-16 20:30:00,0.03
2013-09-16 20:45:00,0.03
2013-09-16 21:00:00,0.03
2013-09-16 21:15:00,0.03
2013-09-16 21:30:00,0.03
2013-09-16 21:45:00,0.03
2013-09-16 22:00:00,0.04
2013-09-16 22:15:00,0.03
2013-09-16 22:30:00,0.03
2013-09-16 22:45:00,0.02
2013-09-16 23:00:00,0.03
2013-09-16 23:15:00,0.02
2013-09-16 23:30:00,0.01
2013-09-16 23:45:00,0.02
2013-09-17 00:00:00,0.02
2013-09-17 00:15:00,0.01
2013-09-17 00:30:00,0.02
2013-09-17 00:45:00,0.02
2013-09-17 01:00:00,0.02
2013-09-17 01:15:00,0.02
2013-09-17 01:30:00,0.01
2013-09-17 01:45:00,0.02
2013-09-17 02:00:00,0.02
2013-09-17 02:15:00,0.01
2013-09-17 02:30:00,0.01
2013-09-17 02:45:00,0.02
2013-09-17 03:00:00,0.02
2013-09-17 03:15:00,0.01
2013-09-17 03:30:00,0.02
2013-09-17 03:45:00,0.02
2013-09-17 04:00:00,0.02
2013-09-17 04:15:00,0.02
2013-09-17 04:30:00,0.02
2013-09-17 04:45:00,0.02
2013-09-17 05:00:00,0.02
2013-09-17 05:15:00,0.02
2013-09-17 05:30:00,0.03
2013-09-17 05:45:00,0.02
2013-09-17 06:00:00,0.02
2013-09-17 06:15:00,0.03
2013-09-17 06:30:00,0.03
2013-09-17 06:45:00,0.03
2013-09-17 07:00:00,0.03
2013-09-17 07:15:00,0.04
2013-09-17 07:30:00,0.04
2013-09-17 07:45:00,0.04
2013-09-17 08:00:00,0.04
2013-09-17 08:15:00,0.03
2013-09-17 08:30:00,0.04
2013-09-17 08:45:00,0.04
2013-09-17 09:00:00,0.04
2013-09-17 09:15:00,0.04
2013-09-17 09:30:00,0.04
2013-09-17 09:45:00,0.04
2013-09-17 10:00:00,0.04
2013-09-17 10:15:00,0.04
2013-09-17 10:30:00,0.04
2013-09-17 10:45:00,0.05
2013-09-17 11:00:00,0.04
2013-09-17 11:15:00,0.05
2013-09-17 11:30:00,0.05
2013-09-17 11:45:00,0.05
2013-09-17 12:00:00,0.05
2013-09-17 12:15:00,0.05
2013-09-17 12:30:00,0.05
2013-09-17 12:45:00,0.05
2013-09-17 13:00:00,0.06
2013-09-17 13:15:00,0.05
2013-09-17 13:30:00,0.05
2013-09-17 13:45:00,0.05
2013-09-17 14:00:00,0.05
2013-09-17 14:15:00,0.06
2013-09-17 14:30:00,0.06
2013-09-17 14:45:00,0.06
2013-09-17 15:00:00,0.06
2013-09-17 15:15:00,0.05
2013-09-17 15:30:00,0.04
2013-09-17 15:45:00,0.05
2013-09-17 16:00:00,0.05
2013-09-17 16:15:00,0.05
2013-09-17 16:30:00,0.05
2013-09-17 16:45:00,0.05
2013-09-17 17:00:00,0.05
2013-09-17 17:15:00,0.05
2013-09-17 17:30:00,0.05
2013-09-17 17:45:00,0.04
2013-09-17 18:00:00,0.05
2013-09-17 18:15:00,0.04
2013-09-17 18:30:00,0.04
2013-09-17 18:45:00,0.04
2013-09-17 19:00:00,0.04
2013-09-17 19:15:00,0.04
2013-09-17 19:30:00,0.03
2013-09-17 19:45:00,0.04
2013-09-17 20:00:00,0.03
2013-09-17 20:15:00,0.03
2013-09-17 20:30:00,0.03
2013-09-17 20:45:00,0.03
2013-09-17 21:00:00,0.03
2013-09-17 21:15:00,0.03
2013-09-17 21:30:00,0.02
2013-09-17 21:45:00,0.03
2013-09-17 22:00:00,0.02
2013-09-17 22:15:00,0.02
2013-09-17 22:30:00,0.02
2013-09-17 22:45:00,0.02
2013-09-17 23:00:00,0.02
2013-09-17 23:15:00,0.02
2013-09-17 23:30:00,0.02
2013-09-17 23:45:00,0.01
2013-09-18 00:00:00,0.02
2013-09-18 00:15:00,0.02
2013-09-18 00:30:00,0.01
2013-09-18 00:45:00,0.02
2013-09-18 01:00:00,0.02
2013-09-18 01:15:00,0.02
2013-09-18 01:30:00,0.01
2013-09-18 01:45:00,0.01
2013-09-18 02:00:00,0.01
2013-09-18 02:15:00,0.02
2013-09-18 02:30:00,0.01
2013-09-18 02:45:00,0.01
2013-09-18 03:00:00,0.01
2013-09-18 03:15:00,0.01
2013-09-18 03:30:00,0.01
2013-09-18 03:45:00,0.02
2013-09-18 04:00:00,0.01
2013-09-18 04:15:00,0.02
2013-09-18 04:30:00,0.02
2013-09-18 04:45:00,0.02
2013-09-18 05:00:00,0.02
2013-09-18 05:15:00,0.02
2013-09-18 05:30:00,0.02
2013-09-18 05:45:00,0.02
2013-09-18 06:00:00,0.02
2013-09-18 06:15:00,0.02
2013-09-18 06:30:00,0.03
2013-09-18 06:45:00,0.03
2013-09-18 07:00:00,0.03
2013-09-18 07:15:00,0.03
2013-09-18 07:30:00,0.03
2013-09-18 07:45:00,0.03
2013-09-18 08:00:00,0.03
2013-09-18 08:15:00,0.03
2013-09-18 08:30:00,0.04
2013-09-18 08:45:00,0.04
2013-09-18 09:00:00,0.04
2013-09-18 09:15:00,0.05
2013-09-18 09:30:00,0.05
2013-09-18 09:45:00,0.05
2013-09-18 10:00:00,0.05
2013-09-18 10:15:00,0.05
2013-09-18 10:30:00,0.06
2013-09-18 10:45:00,0.05
2013-09-18 11:00:00,0.06
2013-09-18 11:15:00,0.06
2013-09-18 11:30:00,0.05
2013-09-18 11:45:00,0.06
2013-09-18 12:00:00,0.06
2013-09-18 12:15:00,0.06
2013-09-18 12:30:00,0.06
2013-09-18 12:45:00,0.06
2013-09-18 13:00:00,0.06
2013-09-18 13:15:00,0.06
2013-09-18 13:30:00,0.06
2013-09-18 13:45:00,0.06
2013-09-18 14:00:00,0.06
2013-09-18 14:15:00,0.06
2013-09-18 14:30:00,0.06
2013-09-18 14:45:00,0.06
2013-09-18 15:00:00,0.06
2013-09-18 15:15:00,0.06
2013-09-18 15:30:00,0.06
2013-09-18 15:45:00,0.06
2013-09-18 16:00:00,0.06
2013-09-18 16:15:00,0.06
2013-09-18 16:30:00,0.06
2013-09-18 16:45:00,0.05
2013-09-18 17:00:00,0.05
2013-09-18 17:15:00,0.05
2013-09-18 17:30:00,0.06
2013-09-18 17:45:00,0.05
2013-09-18 18:00:00,0.05
2013-09-18 18:15:00,0.06
2013-09-18 18:30:00,0.05
2013-09-18 18:45:00,0.05
2013-09-18 19:00:00,0.04
2013-09-18 19:15:00,0.04
2013-09-18 19:30:00,0.04
2013-09-18 19:45:00,0.04
2013-09-18 20:00:00,0.04
2013-09-18 20:15:00,0.04
2013-09-18 20:30:00,0.03
2013-09-18 20:45:00,0.03
2013-09-18 21:00:00,0.03
2013-09-18 21:15:00,0.03
2013-09-18 21:30:00,0.03
2013-09-18 21:45:00,0.03
2013-09-18 22:00:00,0.03
2013-09-18 22:15:00,0.02
2013-09-18 22:30:00,0.02
2013-09-18 22:45:00,0.02
2013-09-18 23:00:00,0.03
2013-09-18 23:15:00,0.02
2013-09-18 23:30:00,0.02
2013-09-18 23:45:00,0.02
2013-09-19 00:00:00,0.02
2013-09-19 00:15:00,0.02
2013-09-19 00:30:00,0.02
2013-09-19 00:45:00,0.02
2013-09-19 01:00:00,0.02
2013-09-19 01:15:00,0.02
2013-09-19 01:30:00,0.02
2013-09-19 01:45:00,0.01
2013-09-19 02:00:00,0.01
2013-09-19 02:15:00,0.02
2013-09-19 02:30:00,0.01
2013-09-19 02:45:00,0.01
2013-09-19 03:00:00,0.02
2013-09-19 03:15:00,0.01
2013-09-19 03:30:00,0.02
2013-09-19 03:45:00,0.02
2013-09-19 04:00:00,0.02
2013-09-19 04:15:00,0.02
2013-09-19 04:30:00,0.02
2013-09-19 04:45:00,0.02
2013-09-19 05:00:00,0.02
2013-09-19 05:15:00,0.02
2013-09-19 05:30:00,0.03
2013-09-19 05:45:00,0.02
2013-09-19 06:00:00,0
2013-09-19 06:15:00,0.02
2013-09-19 06:30:00,0.03
2013-09-19 06:45:00,0.03
2013-09-19 07:00:00,0.03
2013-09-19 07:15:00,0.04
2013-09-19 07:30:00,0.04
2013-09-19 07:45:00,0.03
2013-09-19 08:00:00,0.03
2013-09-19 08:15:00,0.03
2013-09-19 08:30:00,0.04
2013-09-19 08:45:00,0.04
2013-09-19 09:00:00,0.04
2013-09-19 09:15:00,0.04
2013-09-19 09:30:00,0.04
2013-09-19 09:45:00,0.04
2013-09-19 10:00:00,0.05
2013-09-19 10:15:00,0.04
2013-09-19 10:30:00,0.05
2013-09-19 10:45:00,0.05
2013-09-19 11:00:00,0.05
2013-09-19 11:15:00,0.05
2013-09-19 11:30:00,0.05
2013-09-19 11:45:00,0.05
2013-09-19 12:00:00,0.05
2013-09-19 12:15:00,0.04
2013-09-19 12:30:00,0.06
2013-09-19 12:45:00,0.05
2013-09-19 13:00:00,0.05
2013-09-19 13:15:00,0.05
2013-09-19 13:30:00,0.05
2013-09-19 13:45:00,0.05
2013-09-19 14:00:00,0.06
2013-09-19 14:15:00,0.06
2013-09-19 14:30:00,0.06
2013-09-19 14:45:00,0.05
2013-09-19 15:00:00,0.05
2013-09-19 15:15:00,0.05
2013-09-19 15:30:00,0.05
2013-09-19 15:45:00,0.05
2013-09-19 16:00:00,0.05
2013-09-19 16:15:00,0.05
2013-09-19 16:30:00,0.05
2013-09-19 16:45:00,0.05
2013-09-19 17:00:00,0.05
2013-09-19 17:15:00,0.05
2013-09-19 17:30:00,0.04
2013-09-19 17:45:00,0.05
2013-09-19 18:00:00,0.04
2013-09-19 18:15:00,0.05
2013-09-19 18:30:00,0.04
2013-09-19 18:45:00,0.05
2013-09-19 19:00:00,0.04
2013-09-19 19:15:00,0.04
2013-09-19 19:30:00,0.04
2013-09-19 19:45:00,0.04
2013-09-19 20:00:00,0.04
2013-09-19 20:15:00,0.03
2013-09-19 20:30:00,0.03
2013-09-19 20:45:00,0.03
2013-09-19 21:00:00,0.03
2013-09-19 21:15:00,0.03
2013-09-19 21:30:00,0.03
2013-09-19 21:45:00,0.03
2013-09-19 22:00:00,0.02
2013-09-19 22:15:00,0.02
2013-09-19 22:30:00,0
2013-09-19 22:45:00,0.02
2013-09-19 23:00:00,0.02
2013-09-19 23:15:00,0.02
2013-09-19 23:30:00,0.02
2013-09-19 23:45:00,0.02
2013-09-20 00:00:00,0.02
2013-09-20 00:15:00,0.01
2013-09-20 00:30:00,0.01
2013-09-20 00:45:00,0.01
2013-09-20 01:00:00,0.01
2013-09-20 01:15:00,0.01
2013-09-20 01:30:00,0.01
2013-09-20 01:45:00,0.01
2013-09-20 02:00:00,0.01
2013-09-20 02:15:00,0.01
2013-09-20 02:30:00,0.01
2013-09-20 02:45:00,0.02
2013-09-20 03:00:00,0.02
2013-09-20 03:15:00,0.02
2013-09-20 03:30:00,0.01
2013-09-20 03:45:00,0.01
2013-09-20 04:00:00,0.01
2013-09-20 04:15:00,0.02
2013-09-20 04:30:00,0.02
2013-09-20 04:45:00,0.02
2013-09-20 05:00:00,0.02
2013-09-20 05:15:00,0.02
2013-09-20 05:30:00,0.02
2013-09-20 05:45:00,0.02
2013-09-20 06:00:00,0.03
2013-09-20 06:15:00,0.03
2013-09-20 06:30:00,0.03
2013-09-20 06:45:00,0.02
2013-09-20 07:00:00,0.03
2013-09-20 07:15:00,0.03
2013-09-20 07:30:00,0.03
2013-09-20 07:45:00,0.04
2013-09-20 08:00:00,0.04
2013-09-20 08:15:00,0.04
2013-09-20 08:30:00,0.04
2013-09-20 08:45:00,0.04
2013-09-20 09:00:00,0.04
2013-09-20 09:15:00,0.04
2013-09-20 09:30:00,0.04
2013-09-20 09:45:00,0.04
2013-09-20 10:00:00,0.04
2013-09-20 10:15:00,0.04
2013-09-20 10:30:00,0.05
2013-09-20 10:45:00,0.05
2013-09-20 11:00:00,0.05
2013-09-20 11:15:00,0.05
2013-09-20 11:30:00,0.05
2013-09-20 11:45:00,0.05
2013-09-20 12:00:00,0.05
2013-09-20 12:15:00,0.05
2013-09-20 12:30:00,0.05
2013-09-20 12:45:00,0.05
2013-09-20 13:00:00,0.06
2013-09-20 13:15:00,0.06
2013-09-20 13:30:00,0.05
2013-09-20 13:45:00,0.05
2013-09-20 14:00:00,0.05
2013-09-20 14:15:00,0.05
2013-09-20 14:30:00,0.05
2013-09-20 14:45:00,0.05
2013-09-20 15:00:00,0.05
2013-09-20 15:15:00,0.05
2013-09-20 15:30:00,0.05
2013-09-20 15:45:00,0.05
2013-09-20 16:00:00,0.05
2013-09-20 16:15:00,0.05
2013-09-20 16:30:00,0.05
2013-09-20 16:45:00,0.05
2013-09-20 17:00:00,0.05
2013-09-20 17:15:00,0.05
2013-09-20 17:30:00,0.04
2013-09-20 17:45:00,0.04
2013-09-20 18:00:00,0.04
2013-09-20 18:15:00,0.04
2013-09-20 18:30:00,0.04
2013-09-20 18:45:00,0.04
2013-09-20 19:00:00,0.04
2013-09-20 19:15:00,0.04
2013-09-20 19:30:00,0.03
2013-09-20 19:45:00,0.04
2013-09-20 20:00:00,0.03
2013-09-20 20:15:00,0.03
2013-09-20 20:30:00,0.03
2013-09-20 20:45:00,0.03
2013-09-20 21:00:00,0.03
2013-09-20 21:15:00,0.03
2013-09-20 21:30:00,0.03
2013-09-20 21:45:00,0.02
2013-09-20 22:00:00,0.03
2013-09-20 22:15:00,0.02
2013-09-20 22:30:00,0.02
2013-09-20 22:45:00,0.02
2013-09-20 23:00:00,0.02
2013-09-20 23:15:00,0.02
2013-09-20 23:30:00,0.02
2013-09-20 23:45:00,0.02
2013-09-21 00:00:00,0.02
2013-09-21 00:15:00,0.02
2013-09-21 00:30:00,0.02
2013-09-21 00:45:00,0.01
2013-09-21 01:00:00,0.01
2013-09-21 01:15:00,0.02
2013-09-21 01:30:00,0.01
2013-09-21 01:45:00,0.02
2013-09-21 02:00:00,0.01
2013-09-21 02:15:00,0.01
2013-09-21 02:30:00,0.01
2013-09-21 02:45:00,0.02
2013-09-21 03:00:00,0.01
2013-09-21 03:15:00,0.02
2013-09-21 03:30:00,0.02
2013-09-21 03:45:00,0.02
2013-09-21 04:00:00,0.02
2013-09-21 04:15:00,0.02
2013-09-21 04:30:00,0.02
2013-09-21 04:45:00,0.02
2013-09-21 05:00:00,0.03
2013-09-21 05:15:00,0.02
2013-09-21 05:30:00,0.02
2013-09-21 05:45:00,0.02
2013-09-21 06:00:00,0.02
2013-09-21 06:15:00,0.02
2013-09-21 06:30:00,0.03
2013-09-21 06:45:00,0.03
2013-09-21 07:00:00,0.03
2013-09-21 07:15:00,0.03
2013-09-21 07:30:00,0.03
2013-09-21 07:45:00,0.03
2013-09-21 08:00:00,0.04
2013-09-21 08:15:00,0.04
2013-09-21 08:30:00,0.04
2013-09-21 08:45:00,0.04
2013-09-21 09:00:00,0.04
2013-09-21 09:15:00,0.04
2013-09-21 09:30:00,0.05
2013-09-21 09:45:00,0.05
2013-09-21 10:00:00,0.05
2013-09-21 10:15:00,0.05
2013-09-21 10:30:00,0.04
2013-09-21 10:45:00,0.05
2013-09-21 11:00:00,0.05
2013-09-21 11:15:00,0.05
2013-09-21 11:30:00,0.05
2013-09-21 11:45:00,0.05
2013-09-21 12:00:00,0.05
2013-09-21 12:15:00,0.05
2013-09-21 12:30:00,0.05
2013-09-21 12:45:00,0.06
2013-09-21 13:00:00,0.05
2013-09-21 13:15:00,0.05
2013-09-21 13:30:00,0.05
2013-09-21 13:45:00,0.05
2013-09-21 14:00:00,0.05
2013-09-21 14:15:00,0.06
2013-09-21 14:30:00,0.01
2013-09-21 14:45:00,0.06
2013-09-21 15:00:00,0.06
2013-09-21 15:15:00,0.05
2013-09-21 15:30:00,0.05
2013-09-21 15:45:00,0.04
2013-09-21 16:00:00,0.05
2013-09-21 16:15:00,0.05
2013-09-21 16:30:00,0.05
2013-09-21 16:45:00,0.05
2013-09-21 17:00:00,0.06
2013-09-21 17:15:00,0.05
2013-09-21 17:30:00,0.05
2013-09-21 17:45:00,0.05
2013-09-21 18:00:00,0.04
2013-09-21 18:15:00,0.04
2013-09-21 18:30:00,0.04
2013-09-21 18:45:00,0.04
2013-09-21 19:00:00,0.04
2013-09-21 19:15:00,0.04
2013-09-21 19:30:00,0.04
2013-09-21 19:45:00,0.03
2013-09-21 20:00:00,0.03
2013-09-21 20:15:00,0.07
2013-09-21 20:30:00,0.03
2013-09-21 20:45:00,0.03
2013-09-21 21:00:00,0.03
2013-09-21 21:15:00,0.03
2013-09-21 21:30:00,0.03
2013-09-21 21:45:00,0.06
2013-09-21 22:00:00,0.05
2013-09-21 22:15:00,0.05
2013-09-21 22:30:00,0.02
2013-09-21 22:45:00,0.02
2013-09-21 23:00:00,0.02
2013-09-21 23:15:00,0.02
2013-09-21 23:30:00,0.02
2013-09-21 23:45:00,0.02
2013-09-22 00:00:00,0.03
2013-09-22 00:15:00,0.02
2013-09-22 00:30:00,0.02
2013-09-22 00:45:00,0.02
2013-09-22 01:00:00,0.01
2013-09-22 01:15:00,0.01
2013-09-22 01:30:00,0.01
2013-09-22 01:45:00,0.01
2013-09-22 02:00:00,0.01
2013-09-22 02:15:00,0.01
2013-09-22 02:30:00,0.02
2013-09-22 02:45:00,0.02
2013-09-22 03:00:00,0.02
2013-09-22 03:15:00,0.01
2013-09-22 03:30:00,0.02
2013-09-22 03:45:00,0.02
2013-09-22 04:00:00,0.01
2013-09-22 04:15:00,0.02
2013-09-22 04:30:00,0.02
2013-09-22 04:45:00,0.02
2013-09-22 05:00:00,0.02
2013-09-22 05:15:00,0.02
2013-09-22 05:30:00,0.02
2013-09-22 05:45:00,0.02
2013-09-22 06:00:00,0.02
2013-09-22 06:15:00,0.02
2013-09-22 06:30:00,0.03
2013-09-22 06:45:00,0.03
2013-09-22 07:00:00,0.03
2013-09-22 07:15:00,0.03
2013-09-22 07:30:00,0.03
2013-09-22 07:45:00,0.03
2013-09-22 08:00:00,0.04
2013-09-22 08:15:00,0.04
2013-09-22 08:30:00,0.04
2013-09-22 08:45:00,0.03
2013-09-22 09:00:00,0.03
2013-09-22 09:15:00,0.03
2013-09-22 09:30:00,0
2013-09-22 09:45:00,0.03
2013-09-22 10:00:00,0.04
2013-09-22 10:15:00,0.05
2013-09-22 10:30:00,0.05
2013-09-22 10:45:00,0.06
2013-09-22 11:00:00,0.05
2013-09-22 11:15:00,0.05
2013-09-22 11:30:00,0.05
2013-09-22 11:45:00,0.05
2013-09-22 12:00:00,0.05
2013-09-22 12:15:00,0.05
2013-09-22 12:30:00,0.06
2013-09-22 12:45:00,0.05
2013-09-22 13:00:00,0.05
2013-09-22 13:15:00,0.06
2013-09-22 13:30:00,0.05
2013-09-22 13:45:00,0.06
2013-09-22 14:00:00,0.05
2013-09-22 14:15:00,0.05
2013-09-22 14:30:00,0.06
2013-09-22 14:45:00,0.06
2013-09-22 15:00:00,0.06
2013-09-22 15:15:00,0.05
2013-09-22 15:30:00,0.05
2013-09-22 15:45:00,0.05
2013-09-22 16:00:00,0.05
2013-09-22 16:15:00,0.05
2013-09-22 16:30:00,0.05
2013-09-22 16:45:00,0.05
2013-09-22 17:00:00,0.05
2013-09-22 17:15:00,0.05
2013-09-22 17:30:00,0.04
2013-09-22 17:45:00,0.05
2013-09-22 18:00:00,0.04
2013-09-22 18:15:00,0.04
2013-09-22 18:30:00,0.04
2013-09-22 18:45:00,0.04
2013-09-22 19:00:00,0.04
2013-09-22 19:15:00,0.04
2013-09-22 19:30:00,0.04
2013-09-22 19:45:00,0.03
2013-09-22 20:00:00,0.04
2013-09-22 20:15:00,0.03
2013-09-22 20:30:00,0.03
2013-09-22 20:45:00,0.03
2013-09-22 21:00:00,0.03
2013-09-22 21:15:00,0.03
2013-09-22 21:30:00,0.03
2013-09-22 21:45:00,0.02
2013-09-22 22:00:00,0.03
2013-09-22 22:15:00,0.02
2013-09-22 22:30:00,0.02
2013-09-22 22:45:00,0.02
2013-09-22 23:00:00,0.02
2013-09-22 23:15:00,0.02
2013-09-22 23:30:00,0.01
2013-09-22 23:45:00,0.01
2013-09-23 00:00:00,0.02
2013-09-23 00:15:00,0.02
2013-09-23 00:30:00,0.01
2013-09-23 00:45:00,0.02
2013-09-23 01:00:00,0.01
2013-09-23 01:15:00,0.01
2013-09-23 01:30:00,0.01
2013-09-23 01:45:00,0.02
2013-09-23 02:00:00,0.01
2013-09-23 02:15:00,0.02
2013-09-23 02:30:00,0.01
2013-09-23 02:45:00,0.01
2013-09-23 03:00:00,0.02
2013-09-23 03:15:00,0.01
2013-09-23 03:30:00,0.02
2013-09-23 03:45:00,0.02
2013-09-23 04:00:00,0.01
2013-09-23 04:15:00,0.01
2013-09-23 04:30:00,0.02
2013-09-23 04:45:00,0.02
2013-09-23 05:00:00,0.02
2013-09-23 05:15:00,0.02
2013-09-23 05:30:00,0.02
2013-09-23 05:45:00,0.02
2013-09-23 06:00:00,0.02
2013-09-23 06:15:00,0.03
2013-09-23 06:30:00,0.02
2013-09-23 06:45:00,0.03
2013-09-23 07:00:00,0.02
2013-09-23 07:15:00,0.03
2013-09-23 07:30:00,0.03
2013-09-23 07:45:00,0.03
2013-09-23 08:00:00,0.03
2013-09-23 08:15:00,0.04
2013-09-23 08:30:00,0.04
2013-09-23 08:45:00,0.05
2013-09-23 09:00:00,0.04
2013-09-23 09:15:00,0.05
2013-09-23 09:30:00,0.05
2013-09-23 09:45:00,0.05
2013-09-23 10:00:00,0.05
2013-09-23 10:15:00,0.05
2013-09-23 10:30:00,0.06
2013-09-23 10:45:00,0.05
2013-09-23 11:00:00,0.05
2013-09-23 11:15:00,0.05
2013-09-23 11:30:00,0.06
2013-09-23 11:45:00,0.05
2013-09-23 12:00:00,0.06
2013-09-23 12:15:00,0.06
2013-09-23 12:30:00,0.05
2013-09-23 12:45:00,0.06
2013-09-23 13:00:00,0.06
2013-09-23 13:15:00,0.06
2013-09-23 13:30:00,0.06
2013-09-23 13:45:00,0.06
2013-09-23 14:00:00,0.06
2013-09-23 14:15:00,0.06
2013-09-23 14:30:00,0.06
2013-09-23 14:45:00,0.06
2013-09-23 15:00:00,0.06
2013-09-23 15:15:00,0.06
2013-09-23 15:30:00,0.06
2013-09-23 15:45:00,0.06
2013-09-23 16:00:00,0.06
2013-09-23 16:15:00,0.06
2013-09-23 16:30:00,0.06
2013-09-23 16:45:00,0.06
2013-09-23 17:00:00,0.06
2013-09-23 17:15:00,0.05
2013-09-23 17:30:00,0.05
2013-09-23 17:45:00,0.05
2013-09-23 18:00:00,0.05
2013-09-23 18:15:00,0.04
2013-09-23 18:30:00,0.05
2013-09-23 18:45:00,0.04
2013-09-23 19:00:00,0.04
2013-09-23 19:15:00,0.04
2013-09-23 19:30:00,0.03
2013-09-23 19:45:00,0.04
2013-09-23 20:00:00,0.03
2013-09-23 20:15:00,0.04
2013-09-23 20:30:00,0.04
2013-09-23 20:45:00,0.04
2013-09-23 21:00:00,0.03
2013-09-23 21:15:00,0.03
2013-09-23 21:30:00,0.03
2013-09-23 21:45:00,0.03
2013-09-23 22:00:00,0.03
2013-09-23 22:15:00,0.03
2013-09-23 22:30:00,0
2013-09-23 22:45:00,0.02
2013-09-23 23:00:00,0.02
2013-09-23 23:15:00,0.02
2013-09-23 23:30:00,0.02
2013-09-23 23:45:00,0.02
2013-09-24 00:00:00,0.02
2013-09-24 00:15:00,0.02
2013-09-24 00:30:00,0.02
2013-09-24 00:45:00,0.02
2013-09-24 01:00:00,0.02
2013-09-24 01:15:00,0.02
2013-09-24 01:30:00,0.02
2013-09-24 01:45:00,0.02
2013-09-24 02:00:00,0.02
2013-09-24 02:15:00,0.02
2013-09-24 02:30:00,0.01
2013-09-24 02:45:00,0.02
2013-09-24 03:00:00,0.02
2013-09-24 03:15:00,0.02
2013-09-24 03:30:00,0.01
2013-09-24 03:45:00,0.02
2013-09-24 04:00:00,0.02
2013-09-24 04:15:00,0.02
2013-09-24 04:30:00,0.02
2013-09-24 04:45:00,0.02
2013-09-24 05:00:00,0.02
2013-09-24 05:15:00,0.02
2013-09-24 05:30:00,0.03
2013-09-24 05:45:00,0.03
2013-09-24 06:00:00,0.03
2013-09-24 06:15:00,0.03
2013-09-24 06:30:00,0.03
2013-09-24 06:45:00,0.03
2013-09-24 07:00:00,0.03
2013-09-24 07:15:00,0.03
2013-09-24 07:30:00,0.04
2013-09-24 07:45:00,0.04
2013-09-24 08:00:00,0.04
2013-09-24 08:15:00,0.03
2013-09-24 08:30:00,0.04
2013-09-24 08:45:00,0.04
2013-09-24 09:00:00,0.04
2013-09-24 09:15:00,0.04
2013-09-24 09:30:00,0.04
2013-09-24 09:45:00,0.04
2013-09-24 10:00:00,0.05
2013-09-24 10:15:00,0.05
2013-09-24 10:30:00,0.04
2013-09-24 10:45:00,0.03
2013-09-24 11:00:00,0.05
2013-09-24 11:15:00,0.05
2013-09-24 11:30:00,0.05
2013-09-24 11:45:00,0.05
2013-09-24 12:00:00,0.05
2013-09-24 12:15:00,0.05
2013-09-24 12:30:00,0.05
2013-09-24 12:45:00,0.05
2013-09-24 13:00:00,0.06
2013-09-24 13:15:00,0.05
2013-09-24 13:30:00,0.1
2013-09-24 13:45:00,0.06
2013-09-24 14:00:00,0.06
2013-09-24 14:15:00,0.06
2013-09-24 14:30:00,0.06
2013-09-24 14:45:00,0.06
2013-09-24 15:00:00,0.05
2013-09-24 15:15:00,0.05
2013-09-24 15:30:00,0.05
2013-09-24 15:45:00,0.05
2013-09-24 16:00:00,0.05
2013-09-24 16:15:00,0.05
2013-09-24 16:30:00,0.05
2013-09-24 16:45:00,0.05
2013-09-24 17:00:00,0.05
2013-09-24 17:15:00,0.04
2013-09-24 17:30:00,0.04
2013-09-24 17:45:00,0.05
2013-09-24 18:00:00,0.05
2013-09-24 18:15:00,0.04
2013-09-24 18:30:00,0.04
2013-09-24 18:45:00,0.04
2013-09-24 19:00:00,0.04
2013-09-24 19:15:00,0.03
2013-09-24 19:30:00,0.03
2013-09-24 19:45:00,0.03
2013-09-24 20:00:00,0.03
2013-09-24 20:15:00,0.03
2013-09-24 20:30:00,0.03
2013-09-24 20:45:00,0.03
2013-09-24 21:00:00,0.03
2013-09-24 21:15:00,0.02
2013-09-24 21:30:00,0.03
2013-09-24 21:45:00,0.02
2013-09-24 22:00:00,0.03
2013-09-24 22:15:00,0.02
2013-09-24 22:30:00,0.03
2013-09-24 22:45:00,0.02
2013-09-24 23:00:00,0.02
2013-09-24 23:15:00,0.02
2013-09-24 23:30:00,0.02
2013-09-24 23:45:00,0.01
2013-09-25 00:00:00,0.02
2013-09-25 00:15:00,0.02
2013-09-25 00:30:00,0.02
2013-09-25 00:45:00,0.02
2013-09-25 01:00:00,0.02
2013-09-25 01:15:00,0.01
2013-09-25 01:30:00,0.01
2013-09-25 01:45:00,0.02
2013-09-25 02:00:00,0.02
2013-09-25 02:15:00,0.01
2013-09-25 02:30:00,0.01
2013-09-25 02:45:00,0.01
2013-09-25 03:00:00,0.01
2013-09-25 03:15:00,0.01
2013-09-25 03:30:00,0.02
2013-09-25 03:45:00,0.02
2013-09-25 04:00:00,0.01
2013-09-25 04:15:00,0.02
2013-09-25 04:30:00,0.02
2013-09-25 04:45:00,0.02
2013-09-25 05:00:00,0.02
2013-09-25 05:15:00,0.02
2013-09-25 05:30:00,0.02
2013-09-25 05:45:00,0.03
2013-09-25 06:00:00,0.02
2013-09-25 06:15:00,0.02
2013-09-25 06:30:00,0.03
2013-09-25 06:45:00,0.03
2013-09-25 07:00:00,0.03
2013-09-25 07:15:00,0.03
2013-09-25 07:30:00,0.03
2013-09-25 07:45:00,0.04
2013-09-25 08:00:00,0.03
2013-09-25 08:15:00,0.03
2013-09-25 08:30:00,0.05
2013-09-25 08:45:00,0.04
2013-09-25 09:00:00,0.04
2013-09-25 09:15:00,0.04
2013-09-25 09:30:00,0.05
2013-09-25 09:45:00,0.05
2013-09-25 10:00:00,0.05
2013-09-25 10:15:00,0.05
2013-09-25 10:30:00,0.05
2013-09-25 10:45:00,0.05
2013-09-25 11:00:00,0.05
2013-09-25 11:15:00,0.06
2013-09-25 11:30:00,0.05
2013-09-25 11:45:00,0.05
2013-09-25 12:00:00,0.06
2013-09-25 12:15:00,0.06
2013-09-25 12:30:00,0.06
2013-09-25 12:45:00,0.06
2013-09-25 13:00:00,0.06
2013-09-25 13:15:00,0.06
2013-09-25 13:30:00,0.06
2013-09-25 13:45:00,0.06
2013-09-25 14:00:00,0.06
2013-09-25 14:15:00,0.07
2013-09-25 14:30:00,0.06
2013-09-25 14:45:00,0.06
2013-09-25 15:00:00,0.06
2013-09-25 15:15:00,0.06
2013-09-25 15:30:00,0.06
2013-09-25 15:45:00,0.06
2013-09-25 16:00:00,0.05
2013-09-25 16:15:00,0.05
2013-09-25 16:30:00,0.06
2013-09-25 16:45:00,0.05
2013-09-25 17:00:00,0.06
2013-09-25 17:15:00,0.06
2013-09-25 17:30:00,0.05
2013-09-25 17:45:00,0.05
2013-09-25 18:00:00,0.05
2013-09-25 18:15:00,0.05
2013-09-25 18:30:00,0.05
2013-09-25 18:45:00,0.04
2013-09-25 19:00:00,0.04
2013-09-25 19:15:00,0.04
2013-09-25 19:30:00,0.05
2013-09-25 19:45:00,0.03
2013-09-25 20:00:00,0.04
2013-09-25 20:15:00,0.04
2013-09-25 20:30:00,0.04
2013-09-25 20:45:00,0.04
2013-09-25 21:00:00,0.04
2013-09-25 21:15:00,0.03
2013-09-25 21:30:00,0.01
2013-09-25 21:45:00,0.03
2013-09-25 22:00:00,0.02
2013-09-25 22:15:00,0.02
2013-09-25 22:30:00,0.03
2013-09-25 22:45:00,0.02
2013-09-25 23:00:00,0.02
2013-09-25 23:15:00,0.02
2013-09-25 23:30:00,0.02
2013-09-25 23:45:00,0.02
2013-09-26 00:00:00,0.02
2013-09-26 00:15:00,0.02
2013-09-26 00:30:00,0.02
2013-09-26 00:45:00,0.02
2013-09-26 01:00:00,0.02
2013-09-26 01:15:00,0.02
2013-09-26 01:30:00,0.02
2013-09-26 01:45:00,0.02
2013-09-26 02:00:00,0.01
2013-09-26 02:15:00,0.02
2013-09-26 02:30:00,0.01
2013-09-26 02:45:00,0.02
2013-09-26 03:00:00,0.01
2013-09-26 03:15:00,0.02
2013-09-26 03:30:00,0.01
2013-09-26 03:45:00,0.02
2013-09-26 04:00:00,0.02
2013-09-26 04:15:00,0.02
2013-09-26 04:30:00,0.03
2013-09-26 04:45:00,0.02
2013-09-26 05:00:00,0.02
2013-09-26 05:15:00,0.03
2013-09-26 05:30:00,0.02
2013-09-26 05:45:00,0.02
2013-09-26 06:00:00,0.02
2013-09-26 06:15:00,0.03
2013-09-26 06:30:00,0.03
2013-09-26 06:45:00,0.03
2013-09-26 07:00:00,0.04
2013-09-26 07:15:00,0.04
2013-09-26 07:30:00,0.03
2013-09-26 07:45:00,0.04
2013-09-26 08:00:00,0.03
2013-09-26 08:15:00,0.04
2013-09-26 08:30:00,0.04
2013-09-26 08:45:00,0.04
2013-09-26 09:00:00,0.04
2013-09-26 09:15:00,0.04
2013-09-26 09:30:00,0.04
2013-09-26 09:45:00,0.04
2013-09-26 10:00:00,0.04
2013-09-26 10:15:00,0.05
2013-09-26 10:30:00,0.04
2013-09-26 10:45:00,0.04
2013-09-26 11:00:00,0.05
2013-09-26 11:15:00,0.09
2013-09-26 11:30:00,0.05
2013-09-26 11:45:00,0.05
2013-09-26 12:00:00,0.05
2013-09-26 12:15:00,0.05
2013-09-26 12:30:00,0.05
2013-09-26 12:45:00,0.05
2013-09-26 13:00:00,0.05
2013-09-26 13:15:00,0.05
2013-09-26 13:30:00,0.05
2013-09-26 13:45:00,0.05
2013-09-26 14:00:00,0.06
2013-09-26 14:15:00,0.05
2013-09-26 14:30:00,0.06
2013-09-26 14:45:00,0.05
2013-09-26 15:00:00,0.05
2013-09-26 15:15:00,0.05
2013-09-26 15:30:00,0.1
2013-09-26 15:45:00,0.11
2013-09-26 16:00:00,0.1
2013-09-26 16:15:00,0.1
2013-09-26 16:30:00,0.11
2013-09-26 16:45:00,0.05
2013-09-26 17:00:00,0.05
2013-09-26 17:15:00,0.05
2013-09-26 17:30:00,0.05
2013-09-26 17:45:00,0.05
2013-09-26 18:00:00,0.04
2013-09-26 18:15:00,0.04
2013-09-26 18:30:00,0.04
2013-09-26 18:45:00,0.04
2013-09-26 19:00:00,0.04
2013-09-26 19:15:00,0.04
2013-09-26 19:30:00,0.04
2013-09-26 19:45:00,0.04
2013-09-26 20:00:00,0.03
2013-09-26 20:15:00,0.03
2013-09-26 20:30:00,0.03
2013-09-26 20:45:00,0.03
2013-09-26 21:00:00,0.03
2013-09-26 21:15:00,0.03
2013-09-26 21:30:00,0.02
2013-09-26 21:45:00,0.03
2013-09-26 22:00:00,0.02
2013-09-26 22:15:00,0.02
2013-09-26 22:30:00,0.02
2013-09-26 22:45:00,0.02
2013-09-26 23:00:00,0.02
2013-09-26 23:15:00,0.02
2013-09-26 23:30:00,0.02
2013-09-26 23:45:00,0.02
2013-09-27 00:00:00,0.02
2013-09-27 00:15:00,0.01
2013-09-27 00:30:00,0.01
2013-09-27 00:45:00,0.02
2013-09-27 01:00:00,0.01
2013-09-27 01:15:00,0.02
2013-09-27 01:30:00,0.01
2013-09-27 01:45:00,0.01
2013-09-27 02:00:00,0.01
2013-09-27 02:15:00,0.02
2013-09-27 02:30:00,0.01
2013-09-27 02:45:00,0.02
2013-09-27 03:00:00,0.01
2013-09-27 03:15:00,0.02
2013-09-27 03:30:00,0.02
2013-09-27 03:45:00,0.01
2013-09-27 04:00:00,0.03
2013-09-27 04:15:00,0.02
2013-09-27 04:30:00,0.02
2013-09-27 04:45:00,0.02
2013-09-27 05:00:00,0.02
2013-09-27 05:15:00,0.02
2013-09-27 05:30:00,0.02
2013-09-27 05:45:00,0.02
2013-09-27 06:00:00,0.02
2013-09-27 06:15:00,0.02
2013-09-27 06:30:00,0.03
2013-09-27 06:45:00,0.03
2013-09-27 07:00:00,0.03
2013-09-27 07:15:00,0.03
2013-09-27 07:30:00,0.03
2013-09-27 07:45:00,0.03
2013-09-27 08:00:00,0.03
2013-09-27 08:15:00,0.04
2013-09-27 08:30:00,0.04
2013-09-27 08:45:00,0.04
2013-09-27 09:00:00,0.04
2013-09-27 09:15:00,0.04
2013-09-27 09:30:00,0.04
2013-09-27 09:45:00,0.04
2013-09-27 10:00:00,0.04
2013-09-27 10:15:00,0.05
2013-09-27 10:30:00,0.05
2013-09-27 10:45:00,0.05
2013-09-27 11:00:00,0.05
2013-09-27 11:15:00,0.05
2013-09-27 11:30:00,0.05
2013-09-27 11:45:00,0.05
2013-09-27 12:00:00,0.05
2013-09-27 12:15:00,0.05
2013-09-27 12:30:00,0.05
2013-09-27 12:45:00,0.05
2013-09-27 13:00:00,0.05
2013-09-27 13:15:00,0.05
2013-09-27 13:30:00,0.05
2013-09-27 13:45:00,0.05
2013-09-27 14:00:00,0.05
2013-09-27 14:15:00,0.06
2013-09-27 14:30:00,0.05
2013-09-27 14:45:00,0.06
2013-09-27 15:00:00,0.05
2013-09-27 15:15:00,0.05
2013-09-27 15:30:00,0.05
2013-09-27 15:45:00,0.05
2013-09-27 16:00:00,0.05
2013-09-27 16:15:00,0.05
2013-09-27 16:30:00,0.05
2013-09-27 16:45:00,0.05
2013-09-27 17:00:00,0.05
2013-09-27 17:15:00,0.04
2013-09-27 17:30:00,0.05
2013-09-27 17:45:00,0.04
2013-09-27 18:00:00,0.05
2013-09-27 18:15:00,0.04
2013-09-27 18:30:00,0.04
2013-09-27 18:45:00,0.04
2013-09-27 19:00:00,0.04
2013-09-27 19:15:00,0.04
2013-09-27 19:30:00,0.03
2013-09-27 19:45:00,0.04
2013-09-27 20:00:00,0.04
2013-09-27 20:15:00,0.03
2013-09-27 20:30:00,0.03
2013-09-27 20:45:00,0
2013-09-27 21:00:00,0.03
2013-09-27 21:15:00,0.03
2013-09-27 21:30:00,0.03
2013-09-27 21:45:00,0.03
2013-09-27 22:00:00,0.02
2013-09-27 22:15:00,0.02
2013-09-27 22:30:00,0.02
2013-09-27 22:45:00,0.02
2013-09-27 23:00:00,0.02
2013-09-27 23:15:00,0.02
2013-09-27 23:30:00,0.02
2013-09-27 23:45:00,0.02
2013-09-28 00:00:00,0.02
2013-09-28 00:15:00,0.01
2013-09-28 00:30:00,0.01
2013-09-28 00:45:00,0.01
2013-09-28 01:00:00,0.01
2013-09-28 01:15:00,0.02
2013-09-28 01:30:00,0.01
2013-09-28 01:45:00,0.01
2013-09-28 02:00:00,0.01
2013-09-28 02:15:00,0.01
2013-09-28 02:30:00,0.01
2013-09-28 02:45:00,0.02
2013-09-28 03:00:00,0.01
2013-09-28 03:15:00,0.02
2013-09-28 03:30:00,0.02
2013-09-28 03:45:00,0.02
2013-09-28 04:00:00,0.02
2013-09-28 04:15:00,0.02
2013-09-28 04:30:00,0.02
2013-09-28 04:45:00,0.02
2013-09-28 05:00:00,0.02
2013-09-28 05:15:00,0.02
2013-09-28 05:30:00,0.02
2013-09-28 05:45:00,0.03
2013-09-28 06:00:00,0.02
2013-09-28 06:15:00,0.03
2013-09-28 06:30:00,0.03
2013-09-28 06:45:00,0.04
2013-09-28 07:00:00,0.03
2013-09-28 07:15:00,0.03
2013-09-28 07:30:00,0.03
2013-09-28 07:45:00,0.03
2013-09-28 08:00:00,0.03
2013-09-28 08:15:00,0.04
2013-09-28 08:30:00,0.03
2013-09-28 08:45:00,0.04
2013-09-28 09:00:00,0.04
2013-09-28 09:15:00,0.04
2013-09-28 09:30:00,0.04
2013-09-28 09:45:00,0.04
2013-09-28 10:00:00,0.04
2013-09-28 10:15:00,0.05
2013-09-28 10:30:00,0.05
2013-09-28 10:45:00,0.04
2013-09-28 11:00:00,0.05
2013-09-28 11:15:00,0.05
2013-09-28 11:30:00,0.05
2013-09-28 11:45:00,0.05
2013-09-28 12:00:00,0.01
2013-09-28 12:15:00,0.05
2013-09-28 12:30:00,0.05
2013-09-28 12:45:00,0.05
2013-09-28 13:00:00,0.05
2013-09-28 13:15:00,0.05
2013-09-28 13:30:00,0.06
2013-09-28 13:45:00,0.06
2013-09-28 14:00:00,0.06
2013-09-28 14:15:00,0.05
2013-09-28 14:30:00,0.05
2013-09-28 14:45:00,0.06
2013-09-28 15:00:00,0.06
2013-09-28 15:15:00,0.05
2013-09-28 15:30:00,0.05
2013-09-28 15:45:00,0.06
2013-09-28 16:00:00,0.05
2013-09-28 16:15:00,0.05
2013-09-28 16:30:00,0.05
2013-09-28 16:45:00,0.05
2013-09-28 17:00:00,0.05
2013-09-28 17:15:00,0.05
2013-09-28 17:30:00,0.05
2013-09-28 17:45:00,0.04
2013-09-28 18:00:00,0.05
2013-09-28 18:15:00,0.04
2013-09-28 18:30:00,0.04
2013-09-28 18:45:00,0.04
2013-09-28 19:00:00,0.04
2013-09-28 19:15:00,0.03
2013-09-28 19:30:00,0.04
2013-09-28 19:45:00,0.04
2013-09-28 20:00:00,0.03
2013-09-28 20:15:00,0.03
2013-09-28 20:30:00,0.03
2013-09-28 20:45:00,0.02
2013-09-28 21:00:00,0.03
2013-09-28 21:15:00,0.02
2013-09-28 21:30:00,0.03
2013-09-28 21:45:00,0.02
2013-09-28 22:00:00,0.03
2013-09-28 22:15:00,0.03
2013-09-28 22:30:00,0.02
2013-09-28 22:45:00,0.02
2013-09-28 23:00:00,0.02
2013-09-28 23:15:00,0.02
2013-09-28 23:30:00,0.02
2013-09-28 23:45:00,0.01
2013-09-29 00:00:00,0.02
2013-09-29 00:15:00,0.01
2013-09-29 00:30:00,0.01
2013-09-29 00:45:00,0.02
2013-09-29 01:00:00,0.02
2013-09-29 01:15:00,0.02
2013-09-29 01:30:00,0.02
2013-09-29 01:45:00,0.02
2013-09-29 02:00:00,0.01
2013-09-29 02:15:00,0.01
2013-09-29 02:30:00,0.02
2013-09-29 02:45:00,0.02
2013-09-29 03:00:00,0.01
2013-09-29 03:15:00,0.01
2013-09-29 03:30:00,0.01
2013-09-29 03:45:00,0.02
2013-09-29 04:00:00,0.02
2013-09-29 04:15:00,0.02
2013-09-29 04:30:00,0.02
2013-09-29 04:45:00,0.02
2013-09-29 05:00:00,0.02
2013-09-29 05:15:00,0.02
2013-09-29 05:30:00,0.02
2013-09-29 05:45:00,0.02
2013-09-29 06:00:00,0.03
2013-09-29 06:15:00,0.02
2013-09-29 06:30:00,0.02
2013-09-29 06:45:00,0.02
2013-09-29 07:00:00,0.03
2013-09-29 07:15:00,0.03
2013-09-29 07:30:00,0.03
2013-09-29 07:45:00,0.03
2013-09-29 08:00:00,0.04
2013-09-29 08:15:00,0.05
2013-09-29 08:30:00,0.04
2013-09-29 08:45:00,0.04
2013-09-29 09:00:00,0.04
2013-09-29 09:15:00,0.04
2013-09-29 09:30:00,0.04
2013-09-29 09:45:00,0.04
2013-09-29 10:00:00,0.05
2013-09-29 10:15:00,0.05
2013-09-29 10:30:00,0.05
2013-09-29 10:45:00,0.04
2013-09-29 11:00:00,0.05
2013-09-29 11:15:00,0.05
2013-09-29 11:30:00,0.05
2013-09-29 11:45:00,0.05
2013-09-29 12:00:00,0.05
2013-09-29 12:15:00,0.05
2013-09-29 12:30:00,0.06
2013-09-29 12:45:00,0.05
2013-09-29 13:00:00,0.05
2013-09-29 13:15:00,0.05
2013-09-29 13:30:00,0.05
2013-09-29 13:45:00,0.06
2013-09-29 14:00:00,0.05
2013-09-29 14:15:00,0.06
2013-09-29 14:30:00,0.05
2013-09-29 14:45:00,0.05
2013-09-29 15:00:00,0.06
2013-09-29 15:15:00,0.05
2013-09-29 15:30:00,0.05
2013-09-29 15:45:00,0.06
2013-09-29 16:00:00,0.05
2013-09-29 16:15:00,0.05
2013-09-29 16:30:00,0.05
2013-09-29 16:45:00,0.05
2013-09-29 17:00:00,0.05
2013-09-29 17:15:00,0.05
2013-09-29 17:30:00,0.05
2013-09-29 17:45:00,0.04
2013-09-29 18:00:00,0.04
2013-09-29 18:15:00,0.05
2013-09-29 18:30:00,0.04
2013-09-29 18:45:00,0.04
2013-09-29 19:00:00,0.04
2013-09-29 19:15:00,0.04
2013-09-29 19:30:00,0.04
2013-09-29 19:45:00,0.04
2013-09-29 20:00:00,0.04
2013-09-29 20:15:00,0.03
2013-09-29 20:30:00,0.03
2013-09-29 20:45:00,0.03
2013-09-29 21:00:00,0.03
2013-09-29 21:15:00,0.03
2013-09-29 21:30:00,0.02
2013-09-29 21:45:00,0.03
2013-09-29 22:00:00,0.02
2013-09-29 22:15:00,0.02
2013-09-29 22:30:00,0.02
2013-09-29 22:45:00,0.02
2013-09-29 23:00:00,0.02
2013-09-29 23:15:00,0.02
2013-09-29 23:30:00,0.02
2013-09-29 23:45:00,0.02
2013-09-30 00:00:00,0.02
2013-09-30 00:15:00,0.01
2013-09-30 00:30:00,0.02
2013-09-30 00:45:00,0.01
2013-09-30 01:00:00,0.01
2013-09-30 01:15:00,0.01
2013-09-30 01:30:00,0.01
2013-09-30 01:45:00,0.02
2013-09-30 02:00:00,0.01
2013-09-30 02:15:00,0.01
2013-09-30 02:30:00,0.01
2013-09-30 02:45:00,0.02
2013-09-30 03:00:00,0.01
2013-09-30 03:15:00,0.01
2013-09-30 03:30:00,0.01
2013-09-30 03:45:00,0.01
2013-09-30 04:00:00,0.02
2013-09-30 04:15:00,0.02
2013-09-30 04:30:00,0.02
2013-09-30 04:45:00,0.02
2013-09-30 05:00:00,0.02
2013-09-30 05:15:00,0.02
2013-09-30 05:30:00,0.02
2013-09-30 05:45:00,0.03
2013-09-30 06:00:00,0.02
2013-09-30 06:15:00,0.03
2013-09-30 06:30:00,0.02
2013-09-30 06:45:00,0.02
2013-09-30 07:00:00,0.03
2013-09-30 07:15:00,0.03
2013-09-30 07:30:00,0.03
2013-09-30 07:45:00,0.03
2013-09-30 08:00:00,0.03
2013-09-30 08:15:00,0.04
2013-09-30 08:30:00,0.03
2013-09-30 08:45:00,0.05
2013-09-30 09:00:00,0.04
2013-09-30 09:15:00,0.05
2013-09-30 09:30:00,0.04
2013-09-30 09:45:00,0.05
2013-09-30 10:00:00,0.05
2013-09-30 10:15:00,0.05
2013-09-30 10:30:00,0.05
2013-09-30 10:45:00,0.05
2013-09-30 11:00:00,0.06
2013-09-30 11:15:00,0.06
2013-09-30 11:30:00,0.06
2013-09-30 11:45:00,0.06
2013-09-30 12:00:00,0.06
2013-09-30 12:15:00,0.06
2013-09-30 12:30:00,0.06
2013-09-30 12:45:00,0.06
2013-09-30 13:00:00,0.06
2013-09-30 13:15:00,0.07
2013-09-30 13:30:00,0.06
2013-09-30 13:45:00,0.06
2013-09-30 14:00:00,0.06
2013-09-30 14:15:00,0.06
2013-09-30 14:30:00,0.06
2013-09-30 14:45:00,0.06
2013-09-30 15:00:00,0.07
2013-09-30 15:15:00,0.06
2013-09-30 15:30:00,0.06
2013-09-30 15:45:00,0.01
2013-09-30 16:00:00,0.06
2013-09-30 16:15:00,0.06
2013-09-30 16:30:00,0.05
2013-09-30 16:45:00,0.05
2013-09-30 17:00:00,0.05
2013-09-30 17:15:00,0.05
2013-09-30 17:30:00,0.05
2013-09-30 17:45:00,0.05
2013-09-30 18:00:00,0.05
2013-09-30 18:15:00,0.05
2013-09-30 18:30:00,0.05
2013-09-30 18:45:00,0.05
2013-09-30 19:00:00,0.05
2013-09-30 19:15:00,0.04
2013-09-30 19:30:00,0.04
2013-09-30 19:45:00,0.04
2013-09-30 20:00:00,0.04
2013-09-30 20:15:00,0.04
2013-09-30 20:30:00,0.03
2013-09-30 20:45:00,0.04
2013-09-30 21:00:00,0.03
2013-09-30 21:15:00,0.04
2013-09-30 21:30:00,0.03
2013-09-30 21:45:00,0.03
2013-09-30 22:00:00,0.03
2013-09-30 22:15:00,0.03
2013-09-30 22:30:00,0.03
2013-09-30 22:45:00,0.03
2013-09-30 23:00:00,0.02
2013-09-30 23:15:00,0.03
2013-09-30 23:30:00,0.02
2013-09-30 23:45:00,0.02
2013-10-01 00:00:00,0.02
2013-10-01 00:15:00,0.02
2013-10-01 00:30:00,0.02
2013-10-01 00:45:00,0.02
2013-10-01 01:00:00,0.01
2013-10-01 01:15:00,0.02
2013-10-01 01:30:00,0.02
2013-10-01 01:45:00,0.02
2013-10-01 02:00:00,0.01
2013-10-01 02:15:00,0.02
2013-10-01 02:30:00,0.01
2013-10-01 02:45:00,0.02
2013-10-01 03:00:00,0.01
2013-10-01 03:15:00,0.02
2013-10-01 03:30:00,0.02
2013-10-01 03:45:00,0.02
2013-10-01 04:00:00,0.01
2013-10-01 04:15:00,0.02
2013-10-01 04:30:00,0.02
2013-10-01 04:45:00,0.02
2013-10-01 05:00:00,0.03
2013-10-01 05:15:00,0.02
2013-10-01 05:30:00,0.03
2013-10-01 05:45:00,0.02
2013-10-01 06:00:00,0.03
2013-10-01 06:15:00,0.03
2013-10-01 06:30:00,0.03
2013-10-01 06:45:00,0.03
2013-10-01 07:00:00,0.03
2013-10-01 07:15:00,0.03
2013-10-01 07:30:00,0.04
2013-10-01 07:45:00,0.03
2013-10-01 08:00:00,0.04
2013-10-01 08:15:00,0.04
2013-10-01 08:30:00,0
2013-10-01 08:45:00,0.03
2013-10-01 09:00:00,0.04
2013-10-01 09:15:00,0.04
2013-10-01 09:30:00,0.04
2013-10-01 09:45:00,0.05
2013-10-01 10:00:00,0.04
2013-10-01 10:15:00,0.04
2013-10-01 10:30:00,0.05
2013-10-01 10:45:00,0.05
2013-10-01 11:00:00,0.05
2013-10-01 11:15:00,0.05
2013-10-01 11:30:00,0.05
2013-10-01 11:45:00,0.05
2013-10-01 12:00:00,0.05
2013-10-01 12:15:00,0.05
2013-10-01 12:30:00,0.05
2013-10-01 12:45:00,0.05
2013-10-01 13:00:00,0.05
2013-10-01 13:15:00,0.05
2013-10-01 13:30:00,0.05
2013-10-01 13:45:00,0.06
2013-10-01 14:00:00,0.05
2013-10-01 14:15:00,0.05
2013-10-01 14:30:00,0.05
2013-10-01 14:45:00,0.05
2013-10-01 15:00:00,0.05
2013-10-01 15:15:00,0.07
2013-10-01 15:30:00,0.05
2013-10-01 15:45:00,0.05
2013-10-01 16:00:00,0.05
2013-10-01 16:15:00,0.05
2013-10-01 16:30:00,0.05
2013-10-01 16:45:00,0.05
2013-10-01 17:00:00,0.01
2013-10-01 17:15:00,0.05
2013-10-01 17:30:00,0.04
2013-10-01 17:45:00,0.04
2013-10-01 18:00:00,0.05
2013-10-01 18:15:00,0.04
2013-10-01 18:30:00,0.04
2013-10-01 18:45:00,0.04
2013-10-01 19:00:00,0.04
2013-10-01 19:15:00,0.04
2013-10-01 19:30:00,0.03
2013-10-01 19:45:00,0.04
2013-10-01 20:00:00,0.03
2013-10-01 20:15:00,0.03
2013-10-01 20:30:00,0.03
2013-10-01 20:45:00,0.03
2013-10-01 21:00:00,0.03
2013-10-01 21:15:00,0.03
2013-10-01 21:30:00,0.03
2013-10-01 21:45:00,0.02
2013-10-01 22:00:00,0.02
2013-10-01 22:15:00,0.02
2013-10-01 22:30:00,0.02
2013-10-01 22:45:00,0.02
2013-10-01 23:00:00,0.02
2013-10-01 23:15:00,0.02
2013-10-01 23:30:00,0.02
2013-10-01 23:45:00,0.02
2013-10-02 00:00:00,0.02
2013-10-02 00:15:00,0.01
2013-10-02 00:30:00,0.01
2013-10-02 00:45:00,0.02
2013-10-02 01:00:00,0.02
2013-10-02 01:15:00,0.02
2013-10-02 01:30:00,0.02
2013-10-02 01:45:00,0.01
2013-10-02 02:00:00,0.01
2013-10-02 02:15:00,0.01
2013-10-02 02:30:00,0.02
2013-10-02 02:45:00,0.01
2013-10-02 03:00:00,0.01
2013-10-02 03:15:00,0.02
2013-10-02 03:30:00,0.02
2013-10-02 03:45:00,0.01
2013-10-02 04:00:00,0.01
2013-10-02 04:15:00,0.02
2013-10-02 04:30:00,0.02
2013-10-02 04:45:00,0.02
2013-10-02 05:00:00,0.02
2013-10-02 05:15:00,0.02
2013-10-02 05:30:00,0.02
2013-10-02 05:45:00,0.03
2013-10-02 06:00:00,0.03
2013-10-02 06:15:00,0.02
2013-10-02 06:30:00,0.03
2013-10-02 06:45:00,0.03
2013-10-02 07:00:00,0.03
2013-10-02 07:15:00,0.03
2013-10-02 07:30:00,0.03
2013-10-02 07:45:00,0.03
2013-10-02 08:00:00,0.04
2013-10-02 08:15:00,0.03
2013-10-02 08:30:00,0.04
2013-10-02 08:45:00,0.05
2013-10-02 09:00:00,0.05
2013-10-02 09:15:00,0.05
2013-10-02 09:30:00,0.05
2013-10-02 09:45:00,0.05
2013-10-02 10:00:00,0.05
2013-10-02 10:15:00,0.05
2013-10-02 10:30:00,0.05
2013-10-02 10:45:00,0.06
2013-10-02 11:00:00,0.06
2013-10-02 11:15:00,0.05
2013-10-02 11:30:00,0.06
2013-10-02 11:45:00,0.06
2013-10-02 12:00:00,0.06
2013-10-02 12:15:00,0.06
2013-10-02 12:30:00,0.06
2013-10-02 12:45:00,0.06
2013-10-02 13:00:00,0.06
2013-10-02 13:15:00,0.06
2013-10-02 13:30:00,0.08
2013-10-02 13:45:00,0.07
2013-10-02 14:00:00,0.07
2013-10-02 14:15:00,0.06
2013-10-02 14:30:00,0.06
2013-10-02 14:45:00,0.06
2013-10-02 15:00:00,0.06
2013-10-02 15:15:00,0.06
2013-10-02 15:30:00,0.06
2013-10-02 15:45:00,0.06
2013-10-02 16:00:00,0.05
2013-10-02 16:15:00,0.05
2013-10-02 16:30:00,0.06
2013-10-02 16:45:00,0.05
2013-10-02 17:00:00,0.06
2013-10-02 17:15:00,0.06
2013-10-02 17:30:00,0.05
2013-10-02 17:45:00,0.06
2013-10-02 18:00:00,0.05
2013-10-02 18:15:00,0.05
2013-10-02 18:30:00,0.05
2013-10-02 18:45:00,0.04
2013-10-02 19:00:00,0.04
2013-10-02 19:15:00,0.05
2013-10-02 19:30:00,0.04
2013-10-02 19:45:00,0.04
2013-10-02 20:00:00,0.04
2013-10-02 20:15:00,0.03
2013-10-02 20:30:00,0.04
2013-10-02 20:45:00,0.04
2013-10-02 21:00:00,0.03
2013-10-02 21:15:00,0.03
2013-10-02 21:30:00,0.03
2013-10-02 21:45:00,0.03
2013-10-02 22:00:00,0.03
2013-10-02 22:15:00,0.03
2013-10-02 22:30:00,0.03
2013-10-02 22:45:00,0.02
2013-10-02 23:00:00,0.02
2013-10-02 23:15:00,0.02
2013-10-02 23:30:00,0.03
2013-10-02 23:45:00,0.02
2013-10-03 00:00:00,0.02
2013-10-03 00:15:00,0.02
2013-10-03 00:30:00,0.02
2013-10-03 00:45:00,0.02
2013-10-03 01:00:00,0.02
2013-10-03 01:15:00,0.02
2013-10-03 01:30:00,0.02
2013-10-03 01:45:00,0.01
2013-10-03 02:00:00,0.02
2013-10-03 02:15:00,0.01
2013-10-03 02:30:00,0.01
2013-10-03 02:45:00,0.01
2013-10-03 03:00:00,0.02
2013-10-03 03:15:00,0.02
2013-10-03 03:30:00,0.02
2013-10-03 03:45:00,0.02
2013-10-03 04:00:00,0.02
2013-10-03 04:15:00,0.02
2013-10-03 04:30:00,0.02
2013-10-03 04:45:00,0.02
2013-10-03 05:00:00,0.02
2013-10-03 05:15:00,0.03
2013-10-03 05:30:00,0.02
2013-10-03 05:45:00,0.03
2013-10-03 06:00:00,0.03
2013-10-03 06:15:00,0.03
2013-10-03 06:30:00,0.03
2013-10-03 06:45:00,0.03
2013-10-03 07:00:00,0.03
2013-10-03 07:15:00,0.04
2013-10-03 07:30:00,0.04
2013-10-03 07:45:00,0.04
2013-10-03 08:00:00,0.03
2013-10-03 08:15:00,0.03
2013-10-03 08:30:00,0.04
2013-10-03 08:45:00,0.04
2013-10-03 09:00:00,0.04
2013-10-03 09:15:00,0.04
2013-10-03 09:30:00,0.04
2013-10-03 09:45:00,0.04
2013-10-03 10:00:00,0.04
2013-10-03 10:15:00,0.05
2013-10-03 10:30:00,0.04
2013-10-03 10:45:00,0.05
2013-10-03 11:00:00,0.05
2013-10-03 11:15:00,0.05
2013-10-03 11:30:00,0.05
2013-10-03 11:45:00,0.05
2013-10-03 12:00:00,0.05
2013-10-03 12:15:00,0.05
2013-10-03 12:30:00,0.06
2013-10-03 12:45:00,0.05
2013-10-03 13:00:00,0.05
2013-10-03 13:15:00,0.05
2013-10-03 13:30:00,0.05
2013-10-03 13:45:00,0.06
2013-10-03 14:00:00,0.05
2013-10-03 14:15:00,0.05
2013-10-03 14:30:00,0.06
2013-10-03 14:45:00,0.05
2013-10-03 15:00:00,0.05
2013-10-03 15:15:00,0.06
2013-10-03 15:30:00,0.05
2013-10-03 15:45:00,0.05
2013-10-03 16:00:00,0.05
2013-10-03 16:15:00,0.05
2013-10-03 16:30:00,0.05
2013-10-03 16:45:00,0.05
2013-10-03 17:00:00,0.05
2013-10-03 17:15:00,0.05
2013-10-03 17:30:00,0.05
2013-10-03 17:45:00,0.05
2013-10-03 18:00:00,0.04
2013-10-03 18:15:00,0.04
2013-10-03 18:30:00,0.01
2013-10-03 18:45:00,0.04
2013-10-03 19:00:00,0.04
2013-10-03 19:15:00,0.04
2013-10-03 19:30:00,0.04
2013-10-03 19:45:00,0.03
2013-10-03 20:00:00,0.03
2013-10-03 20:15:00,0.03
2013-10-03 20:30:00,0.03
2013-10-03 20:45:00,0.03
2013-10-03 21:00:00,0.03
2013-10-03 21:15:00,0.03
2013-10-03 21:30:00,0.03
2013-10-03 21:45:00,0.03
2013-10-03 22:00:00,0.02
2013-10-03 22:15:00,0.02
2013-10-03 22:30:00,0.02
2013-10-03 22:45:00,0.02
2013-10-03 23:00:00,0.02
2013-10-03 23:15:00,0.02
2013-10-03 23:30:00,0.02
2013-10-03 23:45:00,0.02
2013-10-04 00:00:00,0.01
2013-10-04 00:15:00,0.02
2013-10-04 00:30:00,0.02
2013-10-04 00:45:00,0.02
2013-10-04 01:00:00,0.01
2013-10-04 01:15:00,0.02
2013-10-04 01:30:00,0.02
2013-10-04 01:45:00,0.01
2013-10-04 02:00:00,0.01
2013-10-04 02:15:00,0.02
2013-10-04 02:30:00,0.01
2013-10-04 02:45:00,0.02
2013-10-04 03:00:00,0.01
2013-10-04 03:15:00,0.01
2013-10-04 03:30:00,0.01
2013-10-04 03:45:00,0.01
2013-10-04 04:00:00,0.01
2013-10-04 04:15:00,0.01
2013-10-04 04:30:00,0.02
2013-10-04 04:45:00,0.02
2013-10-04 05:00:00,0.02
2013-10-04 05:15:00,0.03
2013-10-04 05:30:00,0.02
2013-10-04 05:45:00,0.02
2013-10-04 06:00:00,0.03
2013-10-04 06:15:00,0.03
2013-10-04 06:30:00,0.03
2013-10-04 06:45:00,0.03
2013-10-04 07:00:00,0.03
2013-10-04 07:15:00,0.03
2013-10-04 07:30:00,0.03
2013-10-04 07:45:00,0.03
2013-10-04 08:00:00,0.04
2013-10-04 08:15:00,0.04
2013-10-04 08:30:00,0.04
2013-10-04 08:45:00,0.04
2013-10-04 09:00:00,0.04
2013-10-04 09:15:00,0.04
2013-10-04 09:30:00,0.04
2013-10-04 09:45:00,0.01
2013-10-04 10:00:00,0.04
2013-10-04 10:15:00,0.05
2013-10-04 10:30:00,0.04
2013-10-04 10:45:00,0.05
2013-10-04 11:00:00,0.05
2013-10-04 11:15:00,0.05
2013-10-04 11:30:00,0.05
2013-10-04 11:45:00,0.05
2013-10-04 12:00:00,0.06
2013-10-04 12:15:00,0.06
2013-10-04 12:30:00,0.05
2013-10-04 12:45:00,0.05
2013-10-04 13:00:00,0.06
2013-10-04 13:15:00,0.05
2013-10-04 13:30:00,0.05
2013-10-04 13:45:00,0.06
2013-10-04 14:00:00,0.05
2013-10-04 14:15:00,0.06
2013-10-04 14:30:00,0.06
2013-10-04 14:45:00,0.05
2013-10-04 15:00:00,0.06
2013-10-04 15:15:00,0.05
2013-10-04 15:30:00,0.05
2013-10-04 15:45:00,0.05
2013-10-04 16:00:00,0.06
2013-10-04 16:15:00,0.05
2013-10-04 16:30:00,0.05
2013-10-04 16:45:00,0.05
2013-10-04 17:00:00,0.05
2013-10-04 17:15:00,0.05
2013-10-04 17:30:00,0.05
2013-10-04 17:45:00,0.05
2013-10-04 18:00:00,0.05
2013-10-04 18:15:00,0.04
2013-10-04 18:30:00,0.04
2013-10-04 18:45:00,0.04
2013-10-04 19:00:00,0.04
2013-10-04 19:15:00,0.04
2013-10-04 19:30:00,0.04
2013-10-04 19:45:00,0.04
2013-10-04 20:00:00,0.03
2013-10-04 20:15:00,0.04
2013-10-04 20:30:00,0.03
2013-10-04 20:45:00,0.03
2013-10-04 21:00:00,0.03
2013-10-04 21:15:00,0.02
2013-10-04 21:30:00,0.03
2013-10-04 21:45:00,0.02
2013-10-04 22:00:00,0.02
2013-10-04 22:15:00,0.03
2013-10-04 22:30:00,0.03
2013-10-04 22:45:00,0.02
2013-10-04 23:00:00,0.02
2013-10-04 23:15:00,0.02
2013-10-04 23:30:00,0.01
2013-10-04 23:45:00,0.02
2013-10-05 00:00:00,0.01
2013-10-05 00:15:00,0.01
2013-10-05 00:30:00,0.01
2013-10-05 00:45:00,0.02
2013-10-05 01:00:00,0.01
2013-10-05 01:15:00,0.02
2013-10-05 01:30:00,0.01
2013-10-05 01:45:00,0.01
2013-10-05 02:00:00,0.01
2013-10-05 02:15:00,0.01
2013-10-05 02:30:00,0.01
2013-10-05 02:45:00,0.02
2013-10-05 03:00:00,0.02
2013-10-05 03:15:00,0.02
2013-10-05 03:30:00,0.01
2013-10-05 03:45:00,0.01
2013-10-05 04:00:00,0.01
2013-10-05 04:15:00,0.02
2013-10-05 04:30:00,0.02
2013-10-05 04:45:00,0.02
2013-10-05 05:00:00,0.02
2013-10-05 05:15:00,0.02
2013-10-05 05:30:00,0.02
2013-10-05 05:45:00,0.03
2013-10-05 06:00:00,0.02
2013-10-05 06:15:00,0.03
2013-10-05 06:30:00,0.02
2013-10-05 06:45:00,0.03
2013-10-05 07:00:00,0.03
2013-10-05 07:15:00,0.03
2013-10-05 07:30:00,0.03
2013-10-05 07:45:00,0.03
2013-10-05 08:00:00,0.03
2013-10-05 08:15:00,0.04
2013-10-05 08:30:00,0.03
2013-10-05 08:45:00,0.04
2013-10-05 09:00:00,0.04
2013-10-05 09:15:00,0.04
2013-10-05 09:30:00,0.01
2013-10-05 09:45:00,0.05
2013-10-05 10:00:00,0.04
2013-10-05 10:15:00,0.05
2013-10-05 10:30:00,0.05
2013-10-05 10:45:00,0.05
2013-10-05 11:00:00,0.05
2013-10-05 11:15:00,0.05
2013-10-05 11:30:00,0.06
2013-10-05 11:45:00,0.06
2013-10-05 12:00:00,0.05
2013-10-05 12:15:00,0.05
2013-10-05 12:30:00,0.05
2013-10-05 12:45:00,0.05
2013-10-05 13:00:00,0.05
2013-10-05 13:15:00,0.05
2013-10-05 13:30:00,0.05
2013-10-05 13:45:00,0.05
2013-10-05 14:00:00,0.06
2013-10-05 14:15:00,0.06
2013-10-05 14:30:00,0.06
2013-10-05 14:45:00,0.05
2013-10-05 15:00:00,0.05
2013-10-05 15:15:00,0.05
2013-10-05 15:30:00,0.05
2013-10-05 15:45:00,0.05
2013-10-05 16:00:00,0.05
2013-10-05 16:15:00,0.05
2013-10-05 16:30:00,0.05
2013-10-05 16:45:00,0.01
2013-10-05 17:00:00,0.05
2013-10-05 17:15:00,0.04
2013-10-05 17:30:00,0.05
2013-10-05 17:45:00,0.04
2013-10-05 18:00:00,0.05
2013-10-05 18:15:00,0.04
2013-10-05 18:30:00,0.04
2013-10-05 18:45:00,0.04
2013-10-05 19:00:00,0.07
2013-10-05 19:15:00,0.04
2013-10-05 19:30:00,0.04
2013-10-05 19:45:00,0.03
2013-10-05 20:00:00,0.03
2013-10-05 20:15:00,0.03
2013-10-05 20:30:00,0.03
2013-10-05 20:45:00,0.03
2013-10-05 21:00:00,0.03
2013-10-05 21:15:00,0.03
2013-10-05 21:30:00,0.03
2013-10-05 21:45:00,0.02
2013-10-05 22:00:00,0.02
2013-10-05 22:15:00,0.03
2013-10-05 22:30:00,0.02
2013-10-05 22:45:00,0.02
2013-10-05 23:00:00,0.02
2013-10-05 23:15:00,0.02
2013-10-05 23:30:00,0.02
2013-10-05 23:45:00,0.01
2013-10-06 00:00:00,0.02
2013-10-06 00:15:00,0.02
2013-10-06 00:30:00,0.01
2013-10-06 00:45:00,0
2013-10-06 01:00:00,0.02
2013-10-06 01:15:00,0.01
2013-10-06 01:30:00,0.02
2013-10-06 01:45:00,0.01
2013-10-06 02:00:00,0.02
2013-10-06 02:15:00,0.02
2013-10-06 02:30:00,0.01
2013-10-06 02:45:00,0.01
2013-10-06 03:00:00,0.01
2013-10-06 03:15:00,0.01
2013-10-06 03:30:00,0.01
2013-10-06 03:45:00,0.02
2013-10-06 04:00:00,0.02
2013-10-06 04:15:00,0.02
2013-10-06 04:30:00,0.01
2013-10-06 04:45:00,0.02
2013-10-06 05:00:00,0.02
2013-10-06 05:15:00,0.02
2013-10-06 05:30:00,0.02
2013-10-06 05:45:00,0.02
2013-10-06 06:00:00,0.05
2013-10-06 06:15:00,0.03
2013-10-06 06:30:00,0.02
2013-10-06 06:45:00,0.03
2013-10-06 07:00:00,0.03
2013-10-06 07:15:00,0.03
2013-10-06 07:30:00,0.03
2013-10-06 07:45:00,0.03
2013-10-06 08:00:00,0.04
2013-10-06 08:15:00,0.04
2013-10-06 08:30:00,0.04
2013-10-06 08:45:00,0.04
2013-10-06 09:00:00,0.04
2013-10-06 09:15:00,0.04
2013-10-06 09:30:00,0.05
2013-10-06 09:45:00,0.04
2013-10-06 10:00:00,0.05
2013-10-06 10:15:00,0.04
2013-10-06 10:30:00,0.04
2013-10-06 10:45:00,0.05
2013-10-06 11:00:00,0.05
2013-10-06 11:15:00,0.05
2013-10-06 11:30:00,0.05
2013-10-06 11:45:00,0.05
2013-10-06 12:00:00,0.05
2013-10-06 12:15:00,0.06
2013-10-06 12:30:00,0.06
2013-10-06 12:45:00,0.05
2013-10-06 13:00:00,0.05
2013-10-06 13:15:00,0.06
2013-10-06 13:30:00,0.05
2013-10-06 13:45:00,0.05
2013-10-06 14:00:00,0.05
2013-10-06 14:15:00,0.06
2013-10-06 14:30:00,0.06
2013-10-06 14:45:00,0.05
2013-10-06 15:00:00,0.05
2013-10-06 15:15:00,0.05
2013-10-06 15:30:00,0.05
2013-10-06 15:45:00,0.05
2013-10-06 16:00:00,0.05
2013-10-06 16:15:00,0.05
2013-10-06 16:30:00,0.05
2013-10-06 16:45:00,0.05
2013-10-06 17:00:00,0.05
2013-10-06 17:15:00,0.05
2013-10-06 17:30:00,0.04
2013-10-06 17:45:00,0.04
2013-10-06 18:00:00,0.04
2013-10-06 18:15:00,0.04
2013-10-06 18:30:00,0.04
2013-10-06 18:45:00,0.04
2013-10-06 19:00:00,0.04
2013-10-06 19:15:00,0.04
2013-10-06 19:30:00,0.04
2013-10-06 19:45:00,0.04
2013-10-06 20:00:00,0.03
2013-10-06 20:15:00,0.04
2013-10-06 20:30:00,0.03
2013-10-06 20:45:00,0.03
2013-10-06 21:00:00,0.02
2013-10-06 21:15:00,0.02
2013-10-06 21:30:00,0.03
2013-10-06 21:45:00,0.03
2013-10-06 22:00:00,0.03
2013-10-06 22:15:00,0.02
2013-10-06 22:30:00,0.02
2013-10-06 22:45:00,0.02
2013-10-06 23:00:00,0.02
2013-10-06 23:15:00,0.02
2013-10-06 23:30:00,0.02
2013-10-06 23:45:00,0.02
2013-10-07 00:00:00,0.01
2013-10-07 00:15:00,0.01
2013-10-07 00:30:00,0.01
2013-10-07 00:45:00,0.02
2013-10-07 01:00:00,0.02
2013-10-07 01:15:00,0.02
2013-10-07 01:30:00,0.01
2013-10-07 01:45:00,0.01
2013-10-07 02:00:00,0.01
2013-10-07 02:15:00,0.01
2013-10-07 02:30:00,0.02
2013-10-07 02:45:00,0.01
2013-10-07 03:00:00,0.01
2013-10-07 03:15:00,0.01
2013-10-07 03:30:00,0.02
2013-10-07 03:45:00,0.02
2013-10-07 04:00:00,0.02
2013-10-07 04:15:00,0
2013-10-07 04:30:00,0.02
2013-10-07 04:45:00,0.02
2013-10-07 05:00:00,0.02
2013-10-07 05:15:00,0.02
2013-10-07 05:30:00,0.03
2013-10-07 05:45:00,0.02
2013-10-07 06:00:00,0.02
2013-10-07 06:15:00,0.02
2013-10-07 06:30:00,0.02
2013-10-07 06:45:00,0.03
2013-10-07 07:00:00,0.03
2013-10-07 07:15:00,0.03
2013-10-07 07:30:00,0.03
2013-10-07 07:45:00,0.03
2013-10-07 08:00:00,0.04
2013-10-07 08:15:00,0.03
2013-10-07 08:30:00,0.04
2013-10-07 08:45:00,0.04
2013-10-07 09:00:00,0.04
2013-10-07 09:15:00,0.05
2013-10-07 09:30:00,0.05
2013-10-07 09:45:00,0.05
2013-10-07 10:00:00,0.05
2013-10-07 10:15:00,0.06
2013-10-07 10:30:00,0.05
2013-10-07 10:45:00,0.06
2013-10-07 11:00:00,0.05
2013-10-07 11:15:00,0.06
2013-10-07 11:30:00,0.06
2013-10-07 11:45:00,0.05
2013-10-07 12:00:00,0.06
2013-10-07 12:15:00,0.06
2013-10-07 12:30:00,0.07
2013-10-07 12:45:00,0.06
2013-10-07 13:00:00,0.06
2013-10-07 13:15:00,0.06
2013-10-07 13:30:00,0.06
2013-10-07 13:45:00,0.06
2013-10-07 14:00:00,0.05
2013-10-07 14:15:00,0.06
2013-10-07 14:30:00,0.06
2013-10-07 14:45:00,0.06
2013-10-07 15:00:00,0.06
2013-10-07 15:15:00,0.06
2013-10-07 15:30:00,0.06
2013-10-07 15:45:00,0.06
2013-10-07 16:00:00,0.07
2013-10-07 16:15:00,0.06
2013-10-07 16:30:00,0.05
2013-10-07 16:45:00,0.05
2013-10-07 17:00:00,0.05
2013-10-07 17:15:00,0.06
2013-10-07 17:30:00,0.06
2013-10-07 17:45:00,0.05
2013-10-07 18:00:00,0.05
2013-10-07 18:15:00,0.05
2013-10-07 18:30:00,0.05
2013-10-07 18:45:00,0.05
2013-10-07 19:00:00,0.05
2013-10-07 19:15:00,0.04
2013-10-07 19:30:00,0.04
2013-10-07 19:45:00,0.04
2013-10-07 20:00:00,0.04
2013-10-07 20:15:00,0.04
2013-10-07 20:30:00,0.04
2013-10-07 20:45:00,0.04
2013-10-07 21:00:00,0.03
2013-10-07 21:15:00,0.03
2013-10-07 21:30:00,0.03
2013-10-07 21:45:00,0.03
2013-10-07 22:00:00,0.03
2013-10-07 22:15:00,0.03
2013-10-07 22:30:00,0.03
2013-10-07 22:45:00,0.03
2013-10-07 23:00:00,0.03
2013-10-07 23:15:00,0
2013-10-07 23:30:00,0.02
2013-10-07 23:45:00,0.02
2013-10-08 00:00:00,0.02
2013-10-08 00:15:00,0.02
2013-10-08 00:30:00,0.01
2013-10-08 00:45:00,0.02
2013-10-08 01:00:00,0.01
2013-10-08 01:15:00,0.01
2013-10-08 01:30:00,0.02
2013-10-08 01:45:00,0.02
2013-10-08 02:00:00,0.01
2013-10-08 02:15:00,0.01
2013-10-08 02:30:00,0.02
2013-10-08 02:45:00,0.02
2013-10-08 03:00:00,0.01
2013-10-08 03:15:00,0.02
2013-10-08 03:30:00,0.02
2013-10-08 03:45:00,0.02
2013-10-08 04:00:00,0.02
2013-10-08 04:15:00,0.02
2013-10-08 04:30:00,0.02
2013-10-08 04:45:00,0.02
2013-10-08 05:00:00,0.03
2013-10-08 05:15:00,0.03
2013-10-08 05:30:00,0.03
2013-10-08 05:45:00,0.03
2013-10-08 06:00:00,0.03
2013-10-08 06:15:00,0.03
2013-10-08 06:30:00,0.03
2013-10-08 06:45:00,0.03
2013-10-08 07:00:00,0.04
2013-10-08 07:15:00,0.03
2013-10-08 07:30:00,0.04
2013-10-08 07:45:00,0.04
2013-10-08 08:00:00,0.04
2013-10-08 08:15:00,0.04
2013-10-08 08:30:00,0.04
2013-10-08 08:45:00,0.04
2013-10-08 09:00:00,0.04
2013-10-08 09:15:00,0.04
2013-10-08 09:30:00,0.04
2013-10-08 09:45:00,0.04
2013-10-08 10:00:00,0.04
2013-10-08 10:15:00,0.05
2013-10-08 10:30:00,0.05
2013-10-08 10:45:00,0.04
2013-10-08 11:00:00,0.05
2013-10-08 11:15:00,0.05
2013-10-08 11:30:00,0.05
2013-10-08 11:45:00,0.05
2013-10-08 12:00:00,0.05
2013-10-08 12:15:00,0.05
2013-10-08 12:30:00,0.05
2013-10-08 12:45:00,0.05
2013-10-08 13:00:00,0.06
2013-10-08 13:15:00,0.05
2013-10-08 13:30:00,0.1
2013-10-08 13:45:00,0.06
2013-10-08 14:00:00,0.06
2013-10-08 14:15:00,0.06
2013-10-08 14:30:00,0.05
2013-10-08 14:45:00,0.05
2013-10-08 15:00:00,0.05
2013-10-08 15:15:00,0.06
2013-10-08 15:30:00,0.06
2013-10-08 15:45:00,0.05
2013-10-08 16:00:00,0.05
2013-10-08 16:15:00,0.05
2013-10-08 16:30:00,0.05
2013-10-08 16:45:00,0.05
2013-10-08 17:00:00,0.05
2013-10-08 17:15:00,0.05
2013-10-08 17:30:00,0.05
2013-10-08 17:45:00,0.04
2013-10-08 18:00:00,0.05
2013-10-08 18:15:00,0.04
2013-10-08 18:30:00,0.04
2013-10-08 18:45:00,0.04
2013-10-08 19:00:00,0.04
2013-10-08 19:15:00,0.04
2013-10-08 19:30:00,0.03
2013-10-08 19:45:00,0.03
2013-10-08 20:00:00,0.03
2013-10-08 20:15:00,0.04
2013-10-08 20:30:00,0.03
2013-10-08 20:45:00,0.03
2013-10-08 21:00:00,0.03
2013-10-08 21:15:00,0.03
2013-10-08 21:30:00,0.03
2013-10-08 21:45:00,0.03
2013-10-08 22:00:00,0.03
2013-10-08 22:15:00,0.02
2013-10-08 22:30:00,0.02
2013-10-08 22:45:00,0.02
2013-10-08 23:00:00,0.02
2013-10-08 23:15:00,0.02
2013-10-08 23:30:00,0.02
2013-10-08 23:45:00,0.02
2013-10-09 00:00:00,0.02
2013-10-09 00:15:00,0.02
2013-10-09 00:30:00,0.02
2013-10-09 00:45:00,0.01
2013-10-09 01:00:00,0.01
2013-10-09 01:15:00,0.01
2013-10-09 01:30:00,0.01
2013-10-09 01:45:00,0.01
2013-10-09 02:00:00,0.01
2013-10-09 02:15:00,0.01
2013-10-09 02:30:00,0.02
2013-10-09 02:45:00,0.02
2013-10-09 03:00:00,0.02
2013-10-09 03:15:00,0.02
2013-10-09 03:30:00,0.02
2013-10-09 03:45:00,0.02
2013-10-09 04:00:00,0.02
2013-10-09 04:15:00,0.02
2013-10-09 04:30:00,0.01
2013-10-09 04:45:00,0.02
2013-10-09 05:00:00,0.02
2013-10-09 05:15:00,0.02
2013-10-09 05:30:00,0.02
2013-10-09 05:45:00,0.03
2013-10-09 06:00:00,0.02
2013-10-09 06:15:00,0.03
2013-10-09 06:30:00,0.02
2013-10-09 06:45:00,0.03
2013-10-09 07:00:00,0.03
2013-10-09 07:15:00,0.03
2013-10-09 07:30:00,0.03
2013-10-09 07:45:00,0.03
2013-10-09 08:00:00,0.03
2013-10-09 08:15:00,0.04
2013-10-09 08:30:00,0.04
2013-10-09 08:45:00,0.04
2013-10-09 09:00:00,0.05
2013-10-09 09:15:00,0.05
2013-10-09 09:30:00,0.05
2013-10-09 09:45:00,0.05
2013-10-09 10:00:00,0.05
2013-10-09 10:15:00,0.05
2013-10-09 10:30:00,0.05
2013-10-09 10:45:00,0.05
2013-10-09 11:00:00,0.05
2013-10-09 11:15:00,0.06
2013-10-09 11:30:00,0.05
2013-10-09 11:45:00,0.06
2013-10-09 12:00:00,0.06
2013-10-09 12:15:00,0.06
2013-10-09 12:30:00,0.06
2013-10-09 12:45:00,0.06
2013-10-09 13:00:00,0.06
2013-10-09 13:15:00,0.06
2013-10-09 13:30:00,0.07
2013-10-09 13:45:00,0.06
2013-10-09 14:00:00,0.06
2013-10-09 14:15:00,0.06
2013-10-09 14:30:00,0.07
2013-10-09 14:45:00,0.06
2013-10-09 15:00:00,0.07
2013-10-09 15:15:00,0.06
2013-10-09 15:30:00,0.06
2013-10-09 15:45:00,0.06
2013-10-09 16:00:00,0.06
2013-10-09 16:15:00,0.06
2013-10-09 16:30:00,0.06
2013-10-09 16:45:00,0.06
2013-10-09 17:00:00,0.06
2013-10-09 17:15:00,0.06
2013-10-09 17:30:00,0.05
2013-10-09 17:45:00,0.05
2013-10-09 18:00:00,0.05
2013-10-09 18:15:00,0.05
2013-10-09 18:30:00,0.04
2013-10-09 18:45:00,0.04
2013-10-09 19:00:00,0.04
2013-10-09 19:15:00,0.04
2013-10-09 19:30:00,0.04
2013-10-09 19:45:00,0.04
2013-10-09 20:00:00,0.04
2013-10-09 20:15:00,0.04
2013-10-09 20:30:00,0.04
2013-10-09 20:45:00,0.03
2013-10-09 21:00:00,0.04
2013-10-09 21:15:00,0.04
2013-10-09 21:30:00,0.03
2013-10-09 21:45:00,0.03
2013-10-09 22:00:00,0.03
2013-10-09 22:15:00,0.02
2013-10-09 22:30:00,0.03
2013-10-09 22:45:00,0.02
2013-10-09 23:00:00,0.03
2013-10-09 23:15:00,0.03
2013-10-09 23:30:00,0.02
2013-10-09 23:45:00,0.03
2013-10-10 00:00:00,0.01
2013-10-10 00:15:00,0.02
2013-10-10 00:30:00,0.02
2013-10-10 00:45:00,0.01
2013-10-10 01:00:00,0.02
2013-10-10 01:15:00,0.02
2013-10-10 01:30:00,0.01
2013-10-10 01:45:00,0.01
2013-10-10 02:00:00,0.02
2013-10-10 02:15:00,0.02
2013-10-10 02:30:00,0.02
2013-10-10 02:45:00,0.02
2013-10-10 03:00:00,0.02
2013-10-10 03:15:00,0.02
2013-10-10 03:30:00,0.02
2013-10-10 03:45:00,0.02
2013-10-10 04:00:00,0.02
2013-10-10 04:15:00,0.02
2013-10-10 04:30:00,0.02
2013-10-10 04:45:00,0.02
2013-10-10 05:00:00,0.02
2013-10-10 05:15:00,0.02
2013-10-10 05:30:00,0.02
2013-10-10 05:45:00,0.03
2013-10-10 06:00:00,0.03
2013-10-10 06:15:00,0.03
2013-10-10 06:30:00,0.03
2013-10-10 06:45:00,0.03
2013-10-10 07:00:00,0.03
2013-10-10 07:15:00,0.04
2013-10-10 07:30:00,0
2013-10-10 07:45:00,0.04
2013-10-10 08:00:00,0.03
2013-10-10 08:15:00,0.03
2013-10-10 08:30:00,0.04
2013-10-10 08:45:00,0.04
2013-10-10 09:00:00,0.04
2013-10-10 09:15:00,0.04
2013-10-10 09:30:00,0.04
2013-10-10 09:45:00,0.04
2013-10-10 10:00:00,0.05
2013-10-10 10:15:00,0.05
2013-10-10 10:30:00,0.01
2013-10-10 10:45:00,0.05
2013-10-10 11:00:00,0.05
2013-10-10 11:15:00,0.05
2013-10-10 11:30:00,0.05
2013-10-10 11:45:00,0.05
2013-10-10 12:00:00,0.05
2013-10-10 12:15:00,0.07
2013-10-10 12:30:00,0.05
2013-10-10 12:45:00,0.05
2013-10-10 13:00:00,0.06
2013-10-10 13:15:00,0.06
2013-10-10 13:30:00,0.05
2013-10-10 13:45:00,0.05
2013-10-10 14:00:00,0.05
2013-10-10 14:15:00,0.05
2013-10-10 14:30:00,0.06
2013-10-10 14:45:00,0.05
2013-10-10 15:00:00,0.05
2013-10-10 15:15:00,0.05
2013-10-10 15:30:00,0.05
2013-10-10 15:45:00,0.05
2013-10-10 16:00:00,0.05
2013-10-10 16:15:00,0.05
2013-10-10 16:30:00,0.05
2013-10-10 16:45:00,0.05
2013-10-10 17:00:00,0.05
2013-10-10 17:15:00,0.05
2013-10-10 17:30:00,0.05
2013-10-10 17:45:00,0.05
2013-10-10 18:00:00,0.08
2013-10-10 18:15:00,0.04
2013-10-10 18:30:00,0.01
2013-10-10 18:45:00,0.04
2013-10-10 19:00:00,0.04
2013-10-10 19:15:00,0.04
2013-10-10 19:30:00,0.03
2013-10-10 19:45:00,0.03
2013-10-10 20:00:00,0.04
2013-10-10 20:15:00,0.03
2013-10-10 20:30:00,0.03
2013-10-10 20:45:00,0.03
2013-10-10 21:00:00,0.03
2013-10-10 21:15:00,0.02
2013-10-10 21:30:00,0.03
2013-10-10 21:45:00,0.03
2013-10-10 22:00:00,0.02
2013-10-10 22:15:00,0.02
2013-10-10 22:30:00,0.02
2013-10-10 22:45:00,0.03
2013-10-10 23:00:00,0.02
2013-10-10 23:15:00,0.02
2013-10-10 23:30:00,0.02
2013-10-10 23:45:00,0.02
2013-10-11 00:00:00,0.02
2013-10-11 00:15:00,0.02
2013-10-11 00:30:00,0.01
2013-10-11 00:45:00,0.02
2013-10-11 01:00:00,0.02
2013-10-11 01:15:00,0.02
2013-10-11 01:30:00,0.02
2013-10-11 01:45:00,0.02
2013-10-11 02:00:00,0.01
2013-10-11 02:15:00,0.02
2013-10-11 02:30:00,0.01
2013-10-11 02:45:00,0.01
2013-10-11 03:00:00,0.01
2013-10-11 03:15:00,0.01
2013-10-11 03:30:00,0.02
2013-10-11 03:45:00,0.02
2013-10-11 04:00:00,0.02
2013-10-11 04:15:00,0.02
2013-10-11 04:30:00,0.02
2013-10-11 04:45:00,0.02
2013-10-11 05:00:00,0.02
2013-10-11 05:15:00,0.02
2013-10-11 05:30:00,0.02
2013-10-11 05:45:00,0.03
2013-10-11 06:00:00,0.03
2013-10-11 06:15:00,0.02
2013-10-11 06:30:00,0.02
2013-10-11 06:45:00,0.03
2013-10-11 07:00:00,0.03
2013-10-11 07:15:00,0.03
2013-10-11 07:30:00,0.03
2013-10-11 07:45:00,0.03
2013-10-11 08:00:00,0.03
2013-10-11 08:15:00,0.05
2013-10-11 08:30:00,0.04
2013-10-11 08:45:00,0.04
2013-10-11 09:00:00,0.04
2013-10-11 09:15:00,0.04
2013-10-11 09:30:00,0.04
2013-10-11 09:45:00,0.05
2013-10-11 10:00:00,0.05
2013-10-11 10:15:00,0.05
2013-10-11 10:30:00,0.04
2013-10-11 10:45:00,0.05
2013-10-11 11:00:00,0.05
2013-10-11 11:15:00,0.05
2013-10-11 11:30:00,0.05
2013-10-11 11:45:00,0.05
2013-10-11 12:00:00,0.05
2013-10-11 12:15:00,0.05
2013-10-11 12:30:00,0.05
2013-10-11 12:45:00,0.06
2013-10-11 13:00:00,0.06
2013-10-11 13:15:00,0.07
2013-10-11 13:30:00,0.05
2013-10-11 13:45:00,0.06
2013-10-11 14:00:00,0.06
2013-10-11 14:15:00,0.06
2013-10-11 14:30:00,0.05
2013-10-11 14:45:00,0.05
2013-10-11 15:00:00,0.05
2013-10-11 15:15:00,0.05
2013-10-11 15:30:00,0.06
2013-10-11 15:45:00,0.05
2013-10-11 16:00:00,0.06
2013-10-11 16:15:00,0.05
2013-10-11 16:30:00,0.05
2013-10-11 16:45:00,0.05
2013-10-11 17:00:00,0.05
2013-10-11 17:15:00,0.05
2013-10-11 17:30:00,0.05
2013-10-11 17:45:00,0.05
2013-10-11 18:00:00,0.05
2013-10-11 18:15:00,0.04
2013-10-11 18:30:00,0.05
2013-10-11 18:45:00,0.04
2013-10-11 19:00:00,0.04
2013-10-11 19:15:00,0.04
2013-10-11 19:30:00,0.03
2013-10-11 19:45:00,0.03
2013-10-11 20:00:00,0.04
2013-10-11 20:15:00,0.04
2013-10-11 20:30:00,0.03
2013-10-11 20:45:00,0.03
2013-10-11 21:00:00,0.03
2013-10-11 21:15:00,0.03
2013-10-11 21:30:00,0.03
2013-10-11 21:45:00,0.02
2013-10-11 22:00:00,0.02
2013-10-11 22:15:00,0.03
2013-10-11 22:30:00,0.03
2013-10-11 22:45:00,0.02
2013-10-11 23:00:00,0.02
2013-10-11 23:15:00,0.02
2013-10-11 23:30:00,0.02
2013-10-11 23:45:00,0.01
2013-10-12 00:00:00,0.02
2013-10-12 00:15:00,0.01
2013-10-12 00:30:00,0.02
2013-10-12 00:45:00,0.01
2013-10-12 01:00:00,0.01
2013-10-12 01:15:00,0.02
2013-10-12 01:30:00,0.02
2013-10-12 01:45:00,0.01
2013-10-12 02:00:00,0.01
2013-10-12 02:15:00,0.01
2013-10-12 02:30:00,0.02
2013-10-12 02:45:00,0.01
2013-10-12 03:00:00,0.02
2013-10-12 03:15:00,0.01
2013-10-12 03:30:00,0.01
2013-10-12 03:45:00,0.02
2013-10-12 04:00:00,0.02
2013-10-12 04:15:00,0.02
2013-10-12 04:30:00,0.02
2013-10-12 04:45:00,0.02
2013-10-12 05:00:00,0.02
2013-10-12 05:15:00,0.02
2013-10-12 05:30:00,0.02
2013-10-12 05:45:00,0.02
2013-10-12 06:00:00,0.03
2013-10-12 06:15:00,0.03
2013-10-12 06:30:00,0.03
2013-10-12 06:45:00,0.03
2013-10-12 07:00:00,0.03
2013-10-12 07:15:00,0.03
2013-10-12 07:30:00,0.03
2013-10-12 07:45:00,0.03
2013-10-12 08:00:00,0.03
2013-10-12 08:15:00,0.04
2013-10-12 08:30:00,0.04
2013-10-12 08:45:00,0.04
2013-10-12 09:00:00,0.04
2013-10-12 09:15:00,0.04
2013-10-12 09:30:00,0.04
2013-10-12 09:45:00,0.04
2013-10-12 10:00:00,0.04
2013-10-12 10:15:00,0.05
2013-10-12 10:30:00,0.05
2013-10-12 10:45:00,0.04
2013-10-12 11:00:00,0.05
2013-10-12 11:15:00,0.06
2013-10-12 11:30:00,0.05
2013-10-12 11:45:00,0.05
2013-10-12 12:00:00,0.05
2013-10-12 12:15:00,0.06
2013-10-12 12:30:00,0.05
2013-10-12 12:45:00,0.05
2013-10-12 13:00:00,0.06
2013-10-12 13:15:00,0.05
2013-10-12 13:30:00,0.05
2013-10-12 13:45:00,0.05
2013-10-12 14:00:00,0.06
2013-10-12 14:15:00,0.06
2013-10-12 14:30:00,0.06
2013-10-12 14:45:00,0.04
2013-10-12 15:00:00,0.06
2013-10-12 15:15:00,0.05
2013-10-12 15:30:00,0.06
2013-10-12 15:45:00,0.05
2013-10-12 16:00:00,0.06
2013-10-12 16:15:00,0.06
2013-10-12 16:30:00,0.05
2013-10-12 16:45:00,0.05
2013-10-12 17:00:00,0.05
2013-10-12 17:15:00,0.05
2013-10-12 17:30:00,0.04
2013-10-12 17:45:00,0.04
2013-10-12 18:00:00,0.05
2013-10-12 18:15:00,0.04
2013-10-12 18:30:00,0.04
2013-10-12 18:45:00,0.04
2013-10-12 19:00:00,0.04
2013-10-12 19:15:00,0.04
2013-10-12 19:30:00,0.03
2013-10-12 19:45:00,0.03
2013-10-12 20:00:00,0.03
2013-10-12 20:15:00,0.03
2013-10-12 20:30:00,0.04
2013-10-12 20:45:00,0.03
2013-10-12 21:00:00,0.03
2013-10-12 21:15:00,0.03
2013-10-12 21:30:00,0.03
2013-10-12 21:45:00,0.02
2013-10-12 22:00:00,0.02
2013-10-12 22:15:00,0.02
2013-10-12 22:30:00,0.03
2013-10-12 22:45:00,0.03
2013-10-12 23:00:00,0.02
2013-10-12 23:15:00,0.02
2013-10-12 23:30:00,0.02
2013-10-12 23:45:00,0.02
2013-10-13 00:00:00,0.02
2013-10-13 00:15:00,0.02
2013-10-13 00:30:00,0.02
2013-10-13 00:45:00,0.02
2013-10-13 01:00:00,0.02
2013-10-13 01:15:00,0.01
2013-10-13 01:30:00,0.01
2013-10-13 01:45:00,0.04
2013-10-13 02:00:00,0.01
2013-10-13 02:15:00,0.02
2013-10-13 02:30:00,0.02
2013-10-13 02:45:00,0.02
2013-10-13 03:00:00,0.02
2013-10-13 03:15:00,0.02
2013-10-13 03:30:00,0.01
2013-10-13 03:45:00,0.01
2013-10-13 04:00:00,0.02
2013-10-13 04:15:00,0.02
2013-10-13 04:30:00,0.02
2013-10-13 04:45:00,0.02
2013-10-13 05:00:00,0.02
2013-10-13 05:15:00,0.02
2013-10-13 05:30:00,0.02
2013-10-13 05:45:00,0.02
2013-10-13 06:00:00,0.02
2013-10-13 06:15:00,0.03
2013-10-13 06:30:00,0.03
2013-10-13 06:45:00,0.03
2013-10-13 07:00:00,0.03
2013-10-13 07:15:00,0.03
2013-10-13 07:30:00,0.03
2013-10-13 07:45:00,0.03
2013-10-13 08:00:00,0.04
2013-10-13 08:15:00,0.04
2013-10-13 08:30:00,0.04
2013-10-13 08:45:00,0.04
2013-10-13 09:00:00,0.04
2013-10-13 09:15:00,0.04
2013-10-13 09:30:00,0.04
2013-10-13 09:45:00,0.05
2013-10-13 10:00:00,0.04
2013-10-13 10:15:00,0.05
2013-10-13 10:30:00,0.05
2013-10-13 10:45:00,0.05
2013-10-13 11:00:00,0.05
2013-10-13 11:15:00,0.05
2013-10-13 11:30:00,0.05
2013-10-13 11:45:00,0.05
2013-10-13 12:00:00,0.05
2013-10-13 12:15:00,0.05
2013-10-13 12:30:00,0.05
2013-10-13 12:45:00,0.06
2013-10-13 13:00:00,0.06
2013-10-13 13:15:00,0.05
2013-10-13 13:30:00,0.06
2013-10-13 13:45:00,0.05
2013-10-13 14:00:00,0.05
2013-10-13 14:15:00,0.05
2013-10-13 14:30:00,0.05
2013-10-13 14:45:00,0.06
2013-10-13 15:00:00,0.06
2013-10-13 15:15:00,0.06
2013-10-13 15:30:00,0.05
2013-10-13 15:45:00,0.05
2013-10-13 16:00:00,0.05
2013-10-13 16:15:00,0.05
2013-10-13 16:30:00,0.05
2013-10-13 16:45:00,0.05
2013-10-13 17:00:00,0.05
2013-10-13 17:15:00,0.04
2013-10-13 17:30:00,0.05
2013-10-13 17:45:00,0.05
2013-10-13 18:00:00,0.04
2013-10-13 18:15:00,0.04
2013-10-13 18:30:00,0.04
2013-10-13 18:45:00,0.04
2013-10-13 19:00:00,0.04
2013-10-13 19:15:00,0.04
2013-10-13 19:30:00,0.04
2013-10-13 19:45:00,0.03
2013-10-13 20:00:00,0.04
2013-10-13 20:15:00,0.04
2013-10-13 20:30:00,0.04
2013-10-13 20:45:00,0.03
2013-10-13 21:00:00,0.03
2013-10-13 21:15:00,0.02
2013-10-13 21:30:00,0.03
2013-10-13 21:45:00,0.02
2013-10-13 22:00:00,0.02
2013-10-13 22:15:00,0.02
2013-10-13 22:30:00,0.02
2013-10-13 22:45:00,0.02
2013-10-13 23:00:00,0.02
2013-10-13 23:15:00,0.02
2013-10-13 23:30:00,0.02
2013-10-13 23:45:00,0.01
2013-10-14 00:00:00,0.01
2013-10-14 00:15:00,0.02
2013-10-14 00:30:00,0.02
2013-10-14 00:45:00,0.02
2013-10-14 01:00:00,0.01
2013-10-14 01:15:00,0.01
2013-10-14 01:30:00,0.01
2013-10-14 01:45:00,0.01
2013-10-14 02:00:00,0
2013-10-14 02:15:00,0.02
2013-10-14 02:30:00,0.01
2013-10-14 02:45:00,0.02
2013-10-14 03:00:00,0.03
2013-10-14 03:15:00,0.02
2013-10-14 03:30:00,0.02
2013-10-14 03:45:00,0.02
2013-10-14 04:00:00,0.01
2013-10-14 04:15:00,0.01
2013-10-14 04:30:00,0.02
2013-10-14 04:45:00,0.02
2013-10-14 05:00:00,0.02
2013-10-14 05:15:00,0.03
2013-10-14 05:30:00,0.03
2013-10-14 05:45:00,0.02
2013-10-14 06:00:00,0.02
2013-10-14 06:15:00,0.02
2013-10-14 06:30:00,0.03
2013-10-14 06:45:00,0.03
2013-10-14 07:00:00,0.03
2013-10-14 07:15:00,0.03
2013-10-14 07:30:00,0.03
2013-10-14 07:45:00,0.03
2013-10-14 08:00:00,0.04
2013-10-14 08:15:00,0.04
2013-10-14 08:30:00,0.04
2013-10-14 08:45:00,0.05
2013-10-14 09:00:00,0.05
2013-10-14 09:15:00,0.05
2013-10-14 09:30:00,0.05
2013-10-14 09:45:00,0.04
2013-10-14 10:00:00,0.05
2013-10-14 10:15:00,0.05
2013-10-14 10:30:00,0.05
2013-10-14 10:45:00,0.05
2013-10-14 11:00:00,0.06
2013-10-14 11:15:00,0.06
2013-10-14 11:30:00,0.06
2013-10-14 11:45:00,0.06
2013-10-14 12:00:00,0.06
2013-10-14 12:15:00,0.06
2013-10-14 12:30:00,0.06
2013-10-14 12:45:00,0.06
2013-10-14 13:00:00,0.06
2013-10-14 13:15:00,0.06
2013-10-14 13:30:00,0.07
2013-10-14 13:45:00,0.06
2013-10-14 14:00:00,0.06
2013-10-14 14:15:00,0.06
2013-10-14 14:30:00,0.06
2013-10-14 14:45:00,0.06
2013-10-14 15:00:00,0.06
2013-10-14 15:15:00,0.06
2013-10-14 15:30:00,0.07
2013-10-14 15:45:00,0.05
2013-10-14 16:00:00,0.06
2013-10-14 16:15:00,0.01
2013-10-14 16:30:00,0.06
2013-10-14 16:45:00,0.05
2013-10-14 17:00:00,0.06
2013-10-14 17:15:00,0.05
2013-10-14 17:30:00,0.05
2013-10-14 17:45:00,0.05
2013-10-14 18:00:00,0.05
2013-10-14 18:15:00,0.05
2013-10-14 18:30:00,0.05
2013-10-14 18:45:00,0.05
2013-10-14 19:00:00,0.05
2013-10-14 19:15:00,0.04
2013-10-14 19:30:00,0.04
2013-10-14 19:45:00,0.04
2013-10-14 20:00:00,0.04
2013-10-14 20:15:00,0.03
2013-10-14 20:30:00,0.04
2013-10-14 20:45:00,0.04
2013-10-14 21:00:00,0.03
2013-10-14 21:15:00,0.03
2013-10-14 21:30:00,0.03
2013-10-14 21:45:00,0.03
2013-10-14 22:00:00,0.03
2013-10-14 22:15:00,0.03
2013-10-14 22:30:00,0.03
2013-10-14 22:45:00,0.03
2013-10-14 23:00:00,0.02
2013-10-14 23:15:00,0.02
2013-10-14 23:30:00,0.02
2013-10-14 23:45:00,0.02
2013-10-15 00:00:00,0.02
2013-10-15 00:15:00,0.02
2013-10-15 00:30:00,0.01
2013-10-15 00:45:00,0.02
2013-10-15 01:00:00,0.02
2013-10-15 01:15:00,0.01
2013-10-15 01:30:00,0.02
2013-10-15 01:45:00,0.01
2013-10-15 02:00:00,0.01
2013-10-15 02:15:00,0.02
2013-10-15 02:30:00,0.02
2013-10-15 02:45:00,0.01
2013-10-15 03:00:00,0.02
2013-10-15 03:15:00,0.02
2013-10-15 03:30:00,0.02
2013-10-15 03:45:00,0.02
2013-10-15 04:00:00,0.04
2013-10-15 04:15:00,0.02
2013-10-15 04:30:00,0.02
2013-10-15 04:45:00,0.02
2013-10-15 05:00:00,0.03
2013-10-15 05:15:00,0.03
2013-10-15 05:30:00,0.02
2013-10-15 05:45:00,0.03
2013-10-15 06:00:00,0.02
2013-10-15 06:15:00,0.02
2013-10-15 06:30:00,0.03
2013-10-15 06:45:00,0.06
2013-10-15 07:00:00,0.04
2013-10-15 07:15:00,0.03
2013-10-15 07:30:00,0.04
2013-10-15 07:45:00,0.04
2013-10-15 08:00:00,0.04
2013-10-15 08:15:00,0.04
2013-10-15 08:30:00,0.03
2013-10-15 08:45:00,0.04
2013-10-15 09:00:00,0.04
2013-10-15 09:15:00,0.04
2013-10-15 09:30:00,0.04
2013-10-15 09:45:00,0.05
2013-10-15 10:00:00,0.05
2013-10-15 10:15:00,0.04
2013-10-15 10:30:00,0.05
2013-10-15 10:45:00,0.05
2013-10-15 11:00:00,0.05
2013-10-15 11:15:00,0.06
2013-10-15 11:30:00,0.05
2013-10-15 11:45:00,0.05
2013-10-15 12:00:00,0.06
2013-10-15 12:15:00,0.05
2013-10-15 12:30:00,0.06
2013-10-15 12:45:00,0.05
2013-10-15 13:00:00,0.05
2013-10-15 13:15:00,0.05
2013-10-15 13:30:00,0.06
2013-10-15 13:45:00,0.05
2013-10-15 14:00:00,0.06
2013-10-15 14:15:00,0.06
2013-10-15 14:30:00,0.06
2013-10-15 14:45:00,0.05
2013-10-15 15:00:00,0.05
2013-10-15 15:15:00,0.05
2013-10-15 15:30:00,0.05
2013-10-15 15:45:00,0.06
2013-10-15 16:00:00,0.05
2013-10-15 16:15:00,0.05
2013-10-15 16:30:00,0.05
2013-10-15 16:45:00,0.05
2013-10-15 17:00:00,0.05
2013-10-15 17:15:00,0.05
2013-10-15 17:30:00,0.04
2013-10-15 17:45:00,0.05
2013-10-15 18:00:00,0.05
2013-10-15 18:15:00,0.04
2013-10-15 18:30:00,0.05
2013-10-15 18:45:00,0.04
2013-10-15 19:00:00,0.04
2013-10-15 19:15:00,0.04
2013-10-15 19:30:00,0.04
2013-10-15 19:45:00,0.04
2013-10-15 20:00:00,0.03
2013-10-15 20:15:00,0.04
2013-10-15 20:30:00,0.04
2013-10-15 20:45:00,0.03
2013-10-15 21:00:00,0.03
2013-10-15 21:15:00,0.03
2013-10-15 21:30:00,0.03
2013-10-15 21:45:00,0.03
2013-10-15 22:00:00,0.02
2013-10-15 22:15:00,0
2013-10-15 22:30:00,0.02
2013-10-15 22:45:00,0.03
2013-10-15 23:00:00,0.02
2013-10-15 23:15:00,0.02
2013-10-15 23:30:00,0.02
2013-10-15 23:45:00,0.02
2013-10-16 00:00:00,0.02
2013-10-16 00:15:00,0.02
2013-10-16 00:30:00,0.02
2013-10-16 00:45:00,0.02
2013-10-16 01:00:00,0.02
2013-10-16 01:15:00,0.02
2013-10-16 01:30:00,0.01
2013-10-16 01:45:00,0.02
2013-10-16 02:00:00,0.02
2013-10-16 02:15:00,0.01
2013-10-16 02:30:00,0.02
2013-10-16 02:45:00,0.01
2013-10-16 03:00:00,0.01
2013-10-16 03:15:00,0.02
2013-10-16 03:30:00,0.02
2013-10-16 03:45:00,0.01
2013-10-16 04:00:00,0.02
2013-10-16 04:15:00,0.02
2013-10-16 04:30:00,0.02
2013-10-16 04:45:00,0.02
2013-10-16 05:00:00,0.02
2013-10-16 05:15:00,0
2013-10-16 05:30:00,0.03
2013-10-16 05:45:00,0.03
2013-10-16 06:00:00,0.02
2013-10-16 06:15:00,0.02
2013-10-16 06:30:00,0.03
2013-10-16 06:45:00,0.03
2013-10-16 07:00:00,0.03
2013-10-16 07:15:00,0.03
2013-10-16 07:30:00,0.03
2013-10-16 07:45:00,0.04
2013-10-16 08:00:00,0.03
2013-10-16 08:15:00,0.04
2013-10-16 08:30:00,0.04
2013-10-16 08:45:00,0.04
2013-10-16 09:00:00,0.05
2013-10-16 09:15:00,0.05
2013-10-16 09:30:00,0.05
2013-10-16 09:45:00,0.05
2013-10-16 10:00:00,0.05
2013-10-16 10:15:00,0.06
2013-10-16 10:30:00,0.05
2013-10-16 10:45:00,0.06
2013-10-16 11:00:00,0.11
2013-10-16 11:15:00,0.05
2013-10-16 11:30:00,0.06
2013-10-16 11:45:00,0.06
2013-10-16 12:00:00,0.06
2013-10-16 12:15:00,0.06
2013-10-16 12:30:00,0.06
2013-10-16 12:45:00,0.06
2013-10-16 13:00:00,0.07
2013-10-16 13:15:00,0.06
2013-10-16 13:30:00,0.06
2013-10-16 13:45:00,0.06
Graphs are normally rendered in the browser using this raw data. There are no APIs available to render graphs in the server.