Col
Grids
Grids are the core of Plotly's data API. A plot's traces reference underlying grid data. This endpoint allows API creation and manipulation of grids.
Reference
Authorization
Any user with or without a Plotly account may view public grid files. For private files, see authentication.
Grid Meta Information
The grid meta information extends the file meta information with the following fields:
write-only fields:
dataonly accessible from the create endpoint
read-write fields:
Actions
create
To create a grid, POST to this endpoint with any of the writable grid fields included
in the body of the request. The only required field is data.
The data field takes the following form:
{
"cols":
{
"first column": {"data": ["a", "b", "c"], "order": 0},
"second column": {"data": [1, 2, 3], "order": 1}
}
}
Note: each column of the cols field is a key-value pair with the key
corresponding to the column header name and the value corresponding to an
object specifying the column's order and data.
Example:
// POST https://api.plotly.com/v2/grids --> 201 Created
{
"data": {"cols": {"first": {"data": [1,2,3], "order": 0}}}
}
// POST https://api.plotly.com/v2/grids --> 201 Created
{
"data": "{\"cols\": {\"first\": {\"data\": [1,2,3], \"order\": 0}}}",
"parent": 932,
"filename": "new grid"
}
Note: the integer associated with the parent field corresponds to a
file with idlocal 932. This file
must have filetype fold for a sucessful POST.
When creating a grid, you can optionally specify source fields to indicate where a grid has come from:
-
source_fid: the fid of a grid that was copied (and presumably edited) to produce this one
-
source_url: the URL this grid was imported from
-
source_referer: if source_url is given, you can optionally add this field to give the URL of an index page where the source_url link appears. (This could give more information about the data, or present it in alternate formats.)
upload
A raw file may be uploaded by making a POST request to the upload endpoint.
This will create a new grid for a single 2D data source, or a folder
containing multiple grids when there are multiple data sources (e.g.
a spreadsheet with many tabs, or a zip archive). To determine which
type of file has been created, check the filetype key in the response,
which will either be grid or fold.
The following options may be passed as HTTP headers to control the upload.
-
X-File-Name: gives the filename of the file being uploaded. The extension is used as a first guess of the file type for parsing and will be used as the created filename if possible.
-
Plotly-World-Readable: controls the visibility of the created grid or folder. May be
trueorfalse. Defaults tofalse. -
Plotly-Parent: gives the parent folder id, like for create.
-
Plotly-Parent-Path: gives the path to the parent folder, like for create.
row
The row endpoint allows you to append existing grids with new information. This endpoint requires a POST and returns a 201 Created response on success.
Examples:
// POST https://api.plotly.com/v2/grids/henreitta:88/row --> 201 Created
// Add three rows to the existing grid with fid henrietta:88
{
"rows": [[1, 0.5], [2, 0.1], [3, 0.7]]
}
col
The col endpoint allows you to retrieve existing columns of a grid via a
GET request, completely replace existing columns of a grid via a
PUT request, or append existing grids with full columns of new data via
a POST request. Both the GET and PUT requests require the existing
columns to be specified via a uid query (see examples below) and return a
200 OK response on success. The data, name and order fields of a column
can be updated via a PUT request. The POST request does not take a column
query and returns a 201 Created response on success.
Example GET:
// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid --> 200 OK
// Retrieve a column with uid "some_uid"
// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid,some_other_uid --> 200 OK
// Retrieve multiple columns with uids "some_uid" and "some_other_uid"
// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=not_contained_in_grid --> 400 Bad Request
// Attempt to retrieve a column not contained in grid
Example PUT:
// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid --> 200 OK
// Replace a column with uid "some_uid"
{
"cols": "[{\"data\": [0, 1], \"name\": \"new name\"}]"
}
// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid,some_other_uid --> 200 OK
// Replace multiple columns with uids "some_uid" and "some_other_uid"
{
"cols": "[{\"data\": [0, 1], \"order\": 0}, {\"data\": [\"a\", \"b\"]}]"
}
// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=not_contained_in_grid --> 400 Bad Request
// Attempt to replace a column not contained in grid
{
"cols": "[{\"data\": [0, 1]}]"
}
// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=only_one_uid_specified --> 400 Bad Request
// Attempt to update a column with multiple columns of data
{
"cols": "[{\"data\": [0, 1]}, {\"data\": [\"a\", \"b\"]}]"
}
Note: The data to be updated via a PUT request will respect the order
of the columns specified by the uids of the query.
Example POST:
// POST https://api.plotly.com/v2/grids/henreitta:88/col --> 400 Bad Request
// Add two columns
{
"cols": [{"name": "col name 1", "data": [0, 1]}, {"name": "col name 2", "data": [9, 9]}]
}
// POST https://api.plotly.com/v2/grids/henreitta:88/col --> 201 Created
// Add two columns
{
"cols": "[{\"name\": \"col name 1\", \"data\": [0, 1]}, {\"name\": \"col name 2\", \"data\": [9, 9]}]"
}
retrieve
The grid meta information can be retrieved by making a GET request to the grids endpoint.
Example:
// GET https://api.plotly.com/v2/grids/henrietta:88
content
The contents of a grid can be downloaded via a GET request to the content resource. The Content-Type header will be appropriately set for the response body.
Example:
// GET https://api.plotly.com/v2/grids/henrietta:88/content
destroy
To delete an grid, make a DELETE request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 204 No Content.
Example:
// DELETE https://api.plotly.com/v2/grids/henrietta:88 --> 204 No Content
partial update
To update the writable meta information of an existing grid, you make a PATCH request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 200 OK.
Example:
// PATCH https://api.plotly.com/v2/grids/henrietta:88 --> 200 OK
{
"metadata": "{\"content\": \"copy copy copy copy copy\"}",
"filename": "my new and unique grid name",
"parent": 123
}
update
To completely replace the writable meta information of an existing grid, you make a PUT request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 200 OK.
Example:
// PUT https://api.plotly.com/v2/grids/henrietta:88 --> 200 OK
{
"parent": -1,
"world_readable": true,
"filename": "my new and unique grid name"
"metadata": "{\"content\": \"copy copy copy copy copy\"}",
}
drop reference
Grids may reference other files in Plotly called extras. Because extras may be referenced from many files, instead of deleting them to remove them, you may just dereference them via a POST request to this endpoint. This is a safer approach and is used to manage extras in the Plotly webapp. A successful response will have a status code of 200 OK.
Example:
// POST https://api.plotly.com/v2/grids/henrietta:88/drop_reference --> 200 OK
{
"fid": "henrietta:99"
}
trash
A POST request to this endpoint allows for the recoverable trashing of the grid specified in the detail. A successful response will have a status code of 200 OK.
Example:
// POST https://api.plotly.com/v2/grids/henrietta:88/trash ---> 200 OK
Note: This request is idempotent. Trashing a folder that is already trashed will also succeed and return 200 OK.
restore
This endpoint allows for a trashed grid to be restored via a POST request. Only the owner of the grid has permission to restore that grid. A successful restore response will have a status code of 200 OK.
Example:
// POST https://api.plotly.com/v2/grids/henrietta:88/restore ---> 200
Note: This request is idempotent. Restoring a grid that is not yet trashed will also succeed and return 200 OK.
permanent delete
A DELETE request to this endpoint allows for the permanent deletion of the grid specified in the endpoint detail. A successful response will have a status code of 204 No Content.
Example:
// DELETE https://api.plotly.com/v2/grids/plotlvr:9/permanent_delete ---> 204 No Content
lookup
Get a grid using its path and parent instead of using its
fid. If the parent is not specified,
it's assumed to be a user's home folder. The path given is assumed to
be relative to the parent.
By default, the user making the request is assumed to be the owner of the
file being found. However, this is controlled via the user query param.
query params
Only the path param is required.
- path (required) The '/'-delimited path specifying the grid location.
- parent (optional) The parent id, an integer, which the path is relative to.
- user (optional) The username of the owner of the file.
Examples:
// GET https://api.plotly.com/v2/grids/lookup?path=my_folder/my_file ---> 200 OK
// GET https://api.plotly.com/v2/grids/lookup?parent=200&path=my_file ---> 200 OK
// GET https://api.plotly.com/v2/grids/lookup?user=wonderwoman&path=her_folder/her_file ---> 200 OK
// GET https://api.plotly.com/v2/grids/lookup?user=wonderwoman&parent=22&path=her_file ---> 200 OK
GET /v2/grids/Meghna.nit:80/col?format=api
{
"cols": [
{
"data": [
"2010-06-29T00:00:00",
"2010-06-30T00:00:00",
"2010-01-07T00:00:00",
"2010-02-07T00:00:00",
"2010-06-07T00:00:00",
"2010-07-07T00:00:00",
"2010-08-07T00:00:00",
"2010-09-07T00:00:00",
"2010-12-07T00:00:00",
"2010-07-13T00:00:00",
"2010-07-14T00:00:00",
"2010-07-15T00:00:00",
"2010-07-16T00:00:00",
"2010-07-19T00:00:00",
"2010-07-20T00:00:00",
"2010-07-21T00:00:00",
"2010-07-22T00:00:00",
"2010-07-23T00:00:00",
"2010-07-26T00:00:00",
"2010-07-27T00:00:00",
"2010-07-28T00:00:00",
"2010-07-29T00:00:00",
"2010-07-30T00:00:00",
"2010-02-08T00:00:00",
"2010-03-08T00:00:00",
"2010-04-08T00:00:00",
"2010-05-08T00:00:00",
"2010-06-08T00:00:00",
"2010-09-08T00:00:00",
"2010-10-08T00:00:00",
"2010-11-08T00:00:00",
"2010-12-08T00:00:00",
"2010-08-13T00:00:00",
"2010-08-16T00:00:00",
"2010-08-17T00:00:00",
"2010-08-18T00:00:00",
"2010-08-19T00:00:00",
"2010-08-20T00:00:00",
"2010-08-23T00:00:00",
"2010-08-24T00:00:00",
"2010-08-25T00:00:00",
"2010-08-26T00:00:00",
"2010-08-27T00:00:00",
"2010-08-30T00:00:00",
"2010-08-31T00:00:00",
"2010-01-09T00:00:00",
"2010-02-09T00:00:00",
"2010-03-09T00:00:00",
"2010-07-09T00:00:00",
"2010-08-09T00:00:00",
"2010-09-09T00:00:00",
"2010-10-09T00:00:00",
"2010-09-13T00:00:00",
"2010-09-14T00:00:00",
"2010-09-15T00:00:00",
"2010-09-16T00:00:00",
"2010-09-17T00:00:00",
"2010-09-20T00:00:00",
"2010-09-21T00:00:00",
"2010-09-22T00:00:00",
"2010-09-23T00:00:00",
"2010-09-24T00:00:00",
"2010-09-27T00:00:00",
"2010-09-28T00:00:00",
"2010-09-29T00:00:00",
"2010-09-30T00:00:00",
"2010-01-10T00:00:00",
"2010-04-10T00:00:00",
"2010-05-10T00:00:00",
"2010-06-10T00:00:00",
"2010-07-10T00:00:00",
"2010-08-10T00:00:00",
"2010-11-10T00:00:00",
"2010-12-10T00:00:00",
"2010-10-13T00:00:00",
"2010-10-14T00:00:00",
"2010-10-15T00:00:00",
"2010-10-18T00:00:00",
"2010-10-19T00:00:00",
"2010-10-20T00:00:00",
"2010-10-21T00:00:00",
"2010-10-22T00:00:00",
"2010-10-25T00:00:00",
"2010-10-26T00:00:00",
"2010-10-27T00:00:00",
"2010-10-28T00:00:00",
"2010-10-29T00:00:00",
"2010-01-11T00:00:00",
"2010-02-11T00:00:00",
"2010-03-11T00:00:00",
"2010-04-11T00:00:00",
"2010-05-11T00:00:00",
"2010-08-11T00:00:00",
"2010-09-11T00:00:00",
"2010-10-11T00:00:00",
"2010-11-11T00:00:00",
"2010-12-11T00:00:00",
"2010-11-15T00:00:00",
"2010-11-16T00:00:00",
"2010-11-17T00:00:00",
"2010-11-18T00:00:00",
"2010-11-19T00:00:00",
"2010-11-22T00:00:00",
"2010-11-23T00:00:00",
"2010-11-24T00:00:00",
"2010-11-26T00:00:00",
"2010-11-29T00:00:00",
"2010-11-30T00:00:00",
"2010-01-12T00:00:00",
"2010-02-12T00:00:00",
"2010-03-12T00:00:00",
"2010-06-12T00:00:00",
"2010-07-12T00:00:00",
"2010-08-12T00:00:00",
"2010-09-12T00:00:00",
"2010-10-12T00:00:00",
"2010-12-13T00:00:00",
"2010-12-14T00:00:00",
"2010-12-15T00:00:00",
"2010-12-16T00:00:00",
"2010-12-17T00:00:00",
"2010-12-20T00:00:00",
"2010-12-21T00:00:00",
"2010-12-22T00:00:00",
"2010-12-23T00:00:00",
"2010-12-27T00:00:00",
"2010-12-28T00:00:00",
"2010-12-29T00:00:00",
"2010-12-30T00:00:00",
"2010-12-31T00:00:00",
"2011-03-01T00:00:00",
"2011-04-01T00:00:00",
"2011-05-01T00:00:00",
"2011-06-01T00:00:00",
"2011-07-01T00:00:00",
"2011-10-01T00:00:00",
"2011-11-01T00:00:00",
"2011-12-01T00:00:00",
"2011-01-13T00:00:00",
"2011-01-14T00:00:00",
"2011-01-18T00:00:00",
"2011-01-19T00:00:00",
"2011-01-20T00:00:00",
"2011-01-21T00:00:00",
"2011-01-24T00:00:00",
"2011-01-25T00:00:00",
"2011-01-26T00:00:00",
"2011-01-27T00:00:00",
"2011-01-28T00:00:00",
"2011-01-31T00:00:00",
"2011-01-02T00:00:00",
"2011-02-02T00:00:00",
"2011-03-02T00:00:00",
"2011-04-02T00:00:00",
"2011-07-02T00:00:00",
"2011-08-02T00:00:00",
"2011-09-02T00:00:00",
"2011-10-02T00:00:00",
"2011-11-02T00:00:00",
"2011-02-14T00:00:00",
"2011-02-15T00:00:00",
"2011-02-16T00:00:00",
"2011-02-17T00:00:00",
"2011-02-18T00:00:00",
"2011-02-22T00:00:00",
"2011-02-23T00:00:00",
"2011-02-24T00:00:00",
"2011-02-25T00:00:00",
"2011-02-28T00:00:00",
"2011-01-03T00:00:00",
"2011-02-03T00:00:00",
"2011-03-03T00:00:00",
"2011-04-03T00:00:00",
"2011-07-03T00:00:00",
"2011-08-03T00:00:00",
"2011-09-03T00:00:00",
"2011-10-03T00:00:00",
"2011-11-03T00:00:00",
"2011-03-14T00:00:00",
"2011-03-15T00:00:00",
"2011-03-16T00:00:00",
"2011-03-17T00:00:00",
"2011-03-18T00:00:00",
"2011-03-21T00:00:00",
"2011-03-22T00:00:00",
"2011-03-23T00:00:00",
"2011-03-24T00:00:00",
"2011-03-25T00:00:00",
"2011-03-28T00:00:00",
"2011-03-29T00:00:00",
"2011-03-30T00:00:00",
"2011-03-31T00:00:00",
"2011-01-04T00:00:00",
"2011-04-04T00:00:00",
"2011-05-04T00:00:00",
"2011-06-04T00:00:00",
"2011-07-04T00:00:00",
"2011-08-04T00:00:00",
"2011-11-04T00:00:00",
"2011-12-04T00:00:00",
"2011-04-13T00:00:00",
"2011-04-14T00:00:00",
"2011-04-15T00:00:00",
"2011-04-18T00:00:00",
"2011-04-19T00:00:00",
"2011-04-20T00:00:00",
"2011-04-21T00:00:00",
"2011-04-25T00:00:00",
"2011-04-26T00:00:00",
"2011-04-27T00:00:00",
"2011-04-28T00:00:00",
"2011-04-29T00:00:00",
"2011-02-05T00:00:00",
"2011-03-05T00:00:00",
"2011-04-05T00:00:00",
"2011-05-05T00:00:00",
"2011-06-05T00:00:00",
"2011-09-05T00:00:00",
"2011-10-05T00:00:00",
"2011-11-05T00:00:00",
"2011-12-05T00:00:00",
"2011-05-13T00:00:00",
"2011-05-16T00:00:00",
"2011-05-17T00:00:00",
"2011-05-18T00:00:00",
"2011-05-19T00:00:00",
"2011-05-20T00:00:00",
"2011-05-23T00:00:00",
"2011-05-24T00:00:00",
"2011-05-25T00:00:00",
"2011-05-26T00:00:00",
"2011-05-27T00:00:00",
"2011-05-31T00:00:00",
"2011-01-06T00:00:00",
"2011-02-06T00:00:00",
"2011-03-06T00:00:00",
"2011-06-06T00:00:00",
"2011-07-06T00:00:00",
"2011-08-06T00:00:00",
"2011-09-06T00:00:00",
"2011-10-06T00:00:00",
"2011-06-13T00:00:00",
"2011-06-14T00:00:00",
"2011-06-15T00:00:00",
"2011-06-16T00:00:00",
"2011-06-17T00:00:00",
"2011-06-20T00:00:00",
"2011-06-21T00:00:00",
"2011-06-22T00:00:00",
"2011-06-23T00:00:00",
"2011-06-24T00:00:00",
"2011-06-27T00:00:00",
"2011-06-28T00:00:00",
"2011-06-29T00:00:00",
"2011-06-30T00:00:00",
"2011-01-07T00:00:00",
"2011-05-07T00:00:00",
"2011-06-07T00:00:00",
"2011-07-07T00:00:00",
"2011-08-07T00:00:00",
"2011-11-07T00:00:00",
"2011-12-07T00:00:00",
"2011-07-13T00:00:00",
"2011-07-14T00:00:00",
"2011-07-15T00:00:00",
"2011-07-18T00:00:00",
"2011-07-19T00:00:00",
"2011-07-20T00:00:00",
"2011-07-21T00:00:00",
"2011-07-22T00:00:00",
"2011-07-25T00:00:00",
"2011-07-26T00:00:00",
"2011-07-27T00:00:00",
"2011-07-28T00:00:00",
"2011-07-29T00:00:00",
"2011-01-08T00:00:00",
"2011-02-08T00:00:00",
"2011-03-08T00:00:00",
"2011-04-08T00:00:00",
"2011-05-08T00:00:00",
"2011-08-08T00:00:00",
"2011-09-08T00:00:00",
"2011-10-08T00:00:00",
"2011-11-08T00:00:00",
"2011-12-08T00:00:00",
"2011-08-15T00:00:00",
"2011-08-16T00:00:00",
"2011-08-17T00:00:00",
"2011-08-18T00:00:00",
"2011-08-19T00:00:00",
"2011-08-22T00:00:00",
"2011-08-23T00:00:00",
"2011-08-24T00:00:00",
"2011-08-25T00:00:00",
"2011-08-26T00:00:00",
"2011-08-29T00:00:00",
"2011-08-30T00:00:00",
"2011-08-31T00:00:00",
"2011-01-09T00:00:00",
"2011-02-09T00:00:00",
"2011-06-09T00:00:00",
"2011-07-09T00:00:00",
"2011-08-09T00:00:00",
"2011-09-09T00:00:00",
"2011-12-09T00:00:00",
"2011-09-13T00:00:00",
"2011-09-14T00:00:00",
"2011-09-15T00:00:00",
"2011-09-16T00:00:00",
"2011-09-19T00:00:00",
"2011-09-20T00:00:00",
"2011-09-21T00:00:00",
"2011-09-22T00:00:00",
"2011-09-23T00:00:00",
"2011-09-26T00:00:00",
"2011-09-27T00:00:00",
"2011-09-28T00:00:00",
"2011-09-29T00:00:00",
"2011-09-30T00:00:00",
"2011-03-10T00:00:00",
"2011-04-10T00:00:00",
"2011-05-10T00:00:00",
"2011-06-10T00:00:00",
"2011-07-10T00:00:00",
"2011-10-10T00:00:00",
"2011-11-10T00:00:00",
"2011-12-10T00:00:00",
"2011-10-13T00:00:00",
"2011-10-14T00:00:00",
"2011-10-17T00:00:00",
"2011-10-18T00:00:00",
"2011-10-19T00:00:00",
"2011-10-20T00:00:00",
"2011-10-21T00:00:00",
"2011-10-24T00:00:00",
"2011-10-25T00:00:00",
"2011-10-26T00:00:00",
"2011-10-27T00:00:00",
"2011-10-28T00:00:00",
"2011-10-31T00:00:00",
"2011-01-11T00:00:00",
"2011-02-11T00:00:00",
"2011-03-11T00:00:00",
"2011-04-11T00:00:00",
"2011-07-11T00:00:00",
"2011-08-11T00:00:00",
"2011-09-11T00:00:00",
"2011-10-11T00:00:00",
"2011-11-11T00:00:00",
"2011-11-14T00:00:00",
"2011-11-15T00:00:00",
"2011-11-16T00:00:00",
"2011-11-17T00:00:00",
"2011-11-18T00:00:00",
"2011-11-21T00:00:00",
"2011-11-22T00:00:00",
"2011-11-23T00:00:00",
"2011-11-25T00:00:00",
"2011-11-28T00:00:00",
"2011-11-29T00:00:00",
"2011-11-30T00:00:00",
"2011-01-12T00:00:00",
"2011-02-12T00:00:00",
"2011-05-12T00:00:00",
"2011-06-12T00:00:00",
"2011-07-12T00:00:00",
"2011-08-12T00:00:00",
"2011-09-12T00:00:00",
"2011-12-12T00:00:00",
"2011-12-13T00:00:00",
"2011-12-14T00:00:00",
"2011-12-15T00:00:00",
"2011-12-16T00:00:00",
"2011-12-19T00:00:00",
"2011-12-20T00:00:00",
"2011-12-21T00:00:00",
"2011-12-22T00:00:00",
"2011-12-23T00:00:00",
"2011-12-27T00:00:00",
"2011-12-28T00:00:00",
"2011-12-29T00:00:00",
"2011-12-30T00:00:00",
"2012-03-01T00:00:00",
"2012-04-01T00:00:00",
"2012-05-01T00:00:00",
"2012-06-01T00:00:00",
"2012-09-01T00:00:00",
"2012-10-01T00:00:00",
"2012-11-01T00:00:00",
"2012-12-01T00:00:00",
"2012-01-13T00:00:00",
"2012-01-17T00:00:00",
"2012-01-18T00:00:00",
"2012-01-19T00:00:00",
"2012-01-20T00:00:00",
"2012-01-23T00:00:00",
"2012-01-24T00:00:00",
"2012-01-25T00:00:00",
"2012-01-26T00:00:00",
"2012-01-27T00:00:00",
"2012-01-30T00:00:00",
"2012-01-31T00:00:00",
"2012-01-02T00:00:00",
"2012-02-02T00:00:00",
"2012-03-02T00:00:00",
"2012-06-02T00:00:00",
"2012-07-02T00:00:00",
"2012-08-02T00:00:00",
"2012-09-02T00:00:00",
"2012-10-02T00:00:00",
"2012-02-13T00:00:00",
"2012-02-14T00:00:00",
"2012-02-15T00:00:00",
"2012-02-16T00:00:00",
"2012-02-17T00:00:00",
"2012-02-21T00:00:00",
"2012-02-22T00:00:00",
"2012-02-23T00:00:00",
"2012-02-24T00:00:00",
"2012-02-27T00:00:00",
"2012-02-28T00:00:00",
"2012-02-29T00:00:00",
"2012-01-03T00:00:00",
"2012-02-03T00:00:00",
"2012-05-03T00:00:00",
"2012-06-03T00:00:00",
"2012-07-03T00:00:00",
"2012-08-03T00:00:00",
"2012-09-03T00:00:00",
"2012-12-03T00:00:00",
"2012-03-13T00:00:00",
"2012-03-14T00:00:00",
"2012-03-15T00:00:00",
"2012-03-16T00:00:00",
"2012-03-19T00:00:00",
"2012-03-20T00:00:00",
"2012-03-21T00:00:00",
"2012-03-22T00:00:00",
"2012-03-23T00:00:00",
"2012-03-26T00:00:00",
"2012-03-27T00:00:00",
"2012-03-28T00:00:00",
"2012-03-29T00:00:00",
"2012-03-30T00:00:00",
"2012-02-04T00:00:00",
"2012-03-04T00:00:00",
"2012-04-04T00:00:00",
"2012-05-04T00:00:00",
"2012-09-04T00:00:00",
"2012-10-04T00:00:00",
"2012-11-04T00:00:00",
"2012-12-04T00:00:00",
"2012-04-13T00:00:00",
"2012-04-16T00:00:00",
"2012-04-17T00:00:00",
"2012-04-18T00:00:00",
"2012-04-19T00:00:00",
"2012-04-20T00:00:00",
"2012-04-23T00:00:00",
"2012-04-24T00:00:00",
"2012-04-25T00:00:00",
"2012-04-26T00:00:00",
"2012-04-27T00:00:00",
"2012-04-30T00:00:00",
"2012-01-05T00:00:00",
"2012-02-05T00:00:00",
"2012-03-05T00:00:00",
"2012-04-05T00:00:00",
"2012-07-05T00:00:00",
"2012-08-05T00:00:00",
"2012-09-05T00:00:00",
"2012-10-05T00:00:00",
"2012-11-05T00:00:00",
"2012-05-14T00:00:00",
"2012-05-15T00:00:00",
"2012-05-16T00:00:00",
"2012-05-17T00:00:00",
"2012-05-18T00:00:00",
"2012-05-21T00:00:00",
"2012-05-22T00:00:00",
"2012-05-23T00:00:00",
"2012-05-24T00:00:00",
"2012-05-25T00:00:00",
"2012-05-29T00:00:00",
"2012-05-30T00:00:00",
"2012-05-31T00:00:00",
"2012-01-06T00:00:00",
"2012-04-06T00:00:00",
"2012-05-06T00:00:00",
"2012-06-06T00:00:00",
"2012-07-06T00:00:00",
"2012-08-06T00:00:00",
"2012-11-06T00:00:00",
"2012-12-06T00:00:00",
"2012-06-13T00:00:00",
"2012-06-14T00:00:00",
"2012-06-15T00:00:00",
"2012-06-18T00:00:00",
"2012-06-19T00:00:00",
"2012-06-20T00:00:00",
"2012-06-21T00:00:00",
"2012-06-22T00:00:00",
"2012-06-25T00:00:00",
"2012-06-26T00:00:00",
"2012-06-27T00:00:00",
"2012-06-28T00:00:00",
"2012-06-29T00:00:00",
"2012-02-07T00:00:00",
"2012-03-07T00:00:00",
"2012-05-07T00:00:00",
"2012-06-07T00:00:00",
"2012-09-07T00:00:00",
"2012-10-07T00:00:00",
"2012-11-07T00:00:00",
"2012-12-07T00:00:00",
"2012-07-13T00:00:00",
"2012-07-16T00:00:00",
"2012-07-17T00:00:00",
"2012-07-18T00:00:00",
"2012-07-19T00:00:00",
"2012-07-20T00:00:00",
"2012-07-23T00:00:00",
"2012-07-24T00:00:00",
"2012-07-25T00:00:00",
"2012-07-26T00:00:00",
"2012-07-27T00:00:00",
"2012-07-30T00:00:00",
"2012-07-31T00:00:00",
"2012-01-08T00:00:00",
"2012-02-08T00:00:00",
"2012-03-08T00:00:00",
"2012-06-08T00:00:00",
"2012-07-08T00:00:00",
"2012-08-08T00:00:00",
"2012-09-08T00:00:00",
"2012-10-08T00:00:00",
"2012-08-13T00:00:00",
"2012-08-14T00:00:00",
"2012-08-15T00:00:00",
"2012-08-16T00:00:00",
"2012-08-17T00:00:00",
"2012-08-20T00:00:00",
"2012-08-21T00:00:00",
"2012-08-22T00:00:00",
"2012-08-23T00:00:00",
"2012-08-24T00:00:00",
"2012-08-27T00:00:00",
"2012-08-28T00:00:00",
"2012-08-29T00:00:00",
"2012-08-30T00:00:00",
"2012-08-31T00:00:00",
"2012-04-09T00:00:00",
"2012-05-09T00:00:00",
"2012-06-09T00:00:00",
"2012-07-09T00:00:00",
"2012-10-09T00:00:00",
"2012-11-09T00:00:00",
"2012-12-09T00:00:00",
"2012-09-13T00:00:00",
"2012-09-14T00:00:00",
"2012-09-17T00:00:00",
"2012-09-18T00:00:00",
"2012-09-19T00:00:00",
"2012-09-20T00:00:00",
"2012-09-21T00:00:00",
"2012-09-24T00:00:00",
"2012-09-25T00:00:00",
"2012-09-26T00:00:00",
"2012-09-27T00:00:00",
"2012-09-28T00:00:00",
"2012-01-10T00:00:00",
"2012-02-10T00:00:00",
"2012-03-10T00:00:00",
"2012-04-10T00:00:00",
"2012-05-10T00:00:00",
"2012-08-10T00:00:00",
"2012-09-10T00:00:00",
"2012-10-10T00:00:00",
"2012-11-10T00:00:00",
"2012-12-10T00:00:00",
"2012-10-15T00:00:00",
"2012-10-16T00:00:00",
"2012-10-17T00:00:00",
"2012-10-18T00:00:00",
"2012-10-19T00:00:00",
"2012-10-22T00:00:00",
"2012-10-23T00:00:00",
"2012-10-24T00:00:00",
"2012-10-25T00:00:00",
"2012-10-26T00:00:00",
"2012-10-31T00:00:00",
"2012-01-11T00:00:00",
"2012-02-11T00:00:00",
"2012-05-11T00:00:00",
"2012-06-11T00:00:00",
"2012-07-11T00:00:00",
"2012-08-11T00:00:00",
"2012-09-11T00:00:00",
"2012-12-11T00:00:00",
"2012-11-13T00:00:00",
"2012-11-14T00:00:00",
"2012-11-15T00:00:00",
"2012-11-16T00:00:00",
"2012-11-19T00:00:00",
"2012-11-20T00:00:00",
"2012-11-21T00:00:00",
"2012-11-23T00:00:00",
"2012-11-26T00:00:00",
"2012-11-27T00:00:00",
"2012-11-28T00:00:00",
"2012-11-29T00:00:00",
"2012-11-30T00:00:00",
"2012-03-12T00:00:00",
"2012-04-12T00:00:00",
"2012-05-12T00:00:00",
"2012-06-12T00:00:00",
"2012-07-12T00:00:00",
"2012-10-12T00:00:00",
"2012-11-12T00:00:00",
"2012-12-12T00:00:00",
"2012-12-13T00:00:00",
"2012-12-14T00:00:00",
"2012-12-17T00:00:00",
"2012-12-18T00:00:00",
"2012-12-19T00:00:00",
"2012-12-20T00:00:00",
"2012-12-21T00:00:00",
"2012-12-24T00:00:00",
"2012-12-26T00:00:00",
"2012-12-27T00:00:00",
"2012-12-28T00:00:00",
"2012-12-31T00:00:00",
"2013-02-01T00:00:00",
"2013-03-01T00:00:00",
"2013-04-01T00:00:00",
"2013-07-01T00:00:00",
"2013-08-01T00:00:00",
"2013-09-01T00:00:00",
"2013-10-01T00:00:00",
"2013-11-01T00:00:00",
"2013-01-14T00:00:00",
"2013-01-15T00:00:00",
"2013-01-16T00:00:00",
"2013-01-17T00:00:00",
"2013-01-18T00:00:00",
"2013-01-22T00:00:00",
"2013-01-23T00:00:00",
"2013-01-24T00:00:00",
"2013-01-25T00:00:00",
"2013-01-28T00:00:00",
"2013-01-29T00:00:00",
"2013-01-30T00:00:00",
"2013-01-31T00:00:00",
"2013-01-02T00:00:00",
"2013-04-02T00:00:00",
"2013-05-02T00:00:00",
"2013-06-02T00:00:00",
"2013-07-02T00:00:00",
"2013-08-02T00:00:00",
"2013-11-02T00:00:00",
"2013-12-02T00:00:00",
"2013-02-13T00:00:00",
"2013-02-14T00:00:00",
"2013-02-15T00:00:00",
"2013-02-19T00:00:00",
"2013-02-20T00:00:00",
"2013-02-21T00:00:00",
"2013-02-22T00:00:00",
"2013-02-25T00:00:00",
"2013-02-26T00:00:00",
"2013-02-27T00:00:00",
"2013-02-28T00:00:00",
"2013-01-03T00:00:00",
"2013-04-03T00:00:00",
"2013-05-03T00:00:00",
"2013-06-03T00:00:00",
"2013-07-03T00:00:00",
"2013-08-03T00:00:00",
"2013-11-03T00:00:00",
"2013-12-03T00:00:00",
"2013-03-13T00:00:00",
"2013-03-14T00:00:00",
"2013-03-15T00:00:00",
"2013-03-18T00:00:00",
"2013-03-19T00:00:00",
"2013-03-20T00:00:00",
"2013-03-21T00:00:00",
"2013-03-22T00:00:00",
"2013-03-25T00:00:00",
"2013-03-26T00:00:00",
"2013-03-27T00:00:00",
"2013-03-28T00:00:00",
"2013-01-04T00:00:00",
"2013-02-04T00:00:00",
"2013-03-04T00:00:00",
"2013-04-04T00:00:00",
"2013-05-04T00:00:00",
"2013-08-04T00:00:00",
"2013-09-04T00:00:00",
"2013-10-04T00:00:00",
"2013-11-04T00:00:00",
"2013-12-04T00:00:00",
"2013-04-15T00:00:00",
"2013-04-16T00:00:00",
"2013-04-17T00:00:00",
"2013-04-18T00:00:00",
"2013-04-19T00:00:00",
"2013-04-22T00:00:00",
"2013-04-23T00:00:00",
"2013-04-24T00:00:00",
"2013-04-25T00:00:00",
"2013-04-26T00:00:00",
"2013-04-29T00:00:00",
"2013-04-30T00:00:00",
"2013-01-05T00:00:00",
"2013-02-05T00:00:00",
"2013-03-05T00:00:00",
"2013-06-05T00:00:00",
"2013-07-05T00:00:00",
"2013-08-05T00:00:00",
"2013-09-05T00:00:00",
"2013-10-05T00:00:00",
"2013-05-13T00:00:00",
"2013-05-14T00:00:00",
"2013-05-15T00:00:00",
"2013-05-16T00:00:00",
"2013-05-17T00:00:00",
"2013-05-20T00:00:00",
"2013-05-21T00:00:00",
"2013-05-22T00:00:00",
"2013-05-23T00:00:00",
"2013-05-24T00:00:00",
"2013-05-28T00:00:00",
"2013-05-29T00:00:00",
"2013-05-30T00:00:00",
"2013-05-31T00:00:00",
"2013-03-06T00:00:00",
"2013-04-06T00:00:00",
"2013-05-06T00:00:00",
"2013-06-06T00:00:00",
"2013-07-06T00:00:00",
"2013-10-06T00:00:00",
"2013-11-06T00:00:00",
"2013-12-06T00:00:00",
"2013-06-13T00:00:00",
"2013-06-14T00:00:00",
"2013-06-17T00:00:00",
"2013-06-18T00:00:00",
"2013-06-19T00:00:00",
"2013-06-20T00:00:00",
"2013-06-21T00:00:00",
"2013-06-24T00:00:00",
"2013-06-25T00:00:00",
"2013-06-26T00:00:00",
"2013-06-27T00:00:00",
"2013-06-28T00:00:00",
"2013-01-07T00:00:00",
"2013-02-07T00:00:00",
"2013-03-07T00:00:00",
"2013-05-07T00:00:00",
"2013-08-07T00:00:00",
"2013-09-07T00:00:00",
"2013-10-07T00:00:00",
"2013-11-07T00:00:00",
"2013-12-07T00:00:00",
"2013-07-15T00:00:00",
"2013-07-16T00:00:00",
"2013-07-17T00:00:00",
"2013-07-18T00:00:00",
"2013-07-19T00:00:00",
"2013-07-22T00:00:00",
"2013-07-23T00:00:00",
"2013-07-24T00:00:00",
"2013-07-25T00:00:00",
"2013-07-26T00:00:00",
"2013-07-29T00:00:00",
"2013-07-30T00:00:00",
"2013-07-31T00:00:00",
"2013-01-08T00:00:00",
"2013-02-08T00:00:00",
"2013-05-08T00:00:00",
"2013-06-08T00:00:00",
"2013-07-08T00:00:00",
"2013-08-08T00:00:00",
"2013-09-08T00:00:00",
"2013-12-08T00:00:00",
"2013-08-13T00:00:00",
"2013-08-14T00:00:00",
"2013-08-15T00:00:00",
"2013-08-16T00:00:00",
"2013-08-19T00:00:00",
"2013-08-20T00:00:00",
"2013-08-21T00:00:00",
"2013-08-22T00:00:00",
"2013-08-23T00:00:00",
"2013-08-26T00:00:00",
"2013-08-27T00:00:00",
"2013-08-28T00:00:00",
"2013-08-29T00:00:00",
"2013-08-30T00:00:00",
"2013-03-09T00:00:00",
"2013-04-09T00:00:00",
"2013-05-09T00:00:00",
"2013-06-09T00:00:00",
"2013-09-09T00:00:00",
"2013-10-09T00:00:00",
"2013-11-09T00:00:00",
"2013-12-09T00:00:00",
"2013-09-13T00:00:00",
"2013-09-16T00:00:00",
"2013-09-17T00:00:00",
"2013-09-18T00:00:00",
"2013-09-19T00:00:00",
"2013-09-20T00:00:00",
"2013-09-23T00:00:00",
"2013-09-24T00:00:00",
"2013-09-25T00:00:00",
"2013-09-26T00:00:00",
"2013-09-27T00:00:00",
"2013-09-30T00:00:00",
"2013-01-10T00:00:00",
"2013-02-10T00:00:00",
"2013-03-10T00:00:00",
"2013-04-10T00:00:00",
"2013-07-10T00:00:00",
"2013-08-10T00:00:00",
"2013-09-10T00:00:00",
"2013-10-10T00:00:00",
"2013-11-10T00:00:00",
"2013-10-14T00:00:00",
"2013-10-15T00:00:00",
"2013-10-16T00:00:00",
"2013-10-17T00:00:00",
"2013-10-18T00:00:00",
"2013-10-21T00:00:00",
"2013-10-22T00:00:00",
"2013-10-23T00:00:00",
"2013-10-24T00:00:00",
"2013-10-25T00:00:00",
"2013-10-28T00:00:00",
"2013-10-29T00:00:00",
"2013-10-30T00:00:00",
"2013-10-31T00:00:00",
"2013-01-11T00:00:00",
"2013-04-11T00:00:00",
"2013-05-11T00:00:00",
"2013-06-11T00:00:00",
"2013-07-11T00:00:00",
"2013-08-11T00:00:00",
"2013-11-11T00:00:00",
"2013-12-11T00:00:00",
"2013-11-13T00:00:00",
"2013-11-14T00:00:00",
"2013-11-15T00:00:00",
"2013-11-18T00:00:00",
"2013-11-19T00:00:00",
"2013-11-20T00:00:00",
"2013-11-21T00:00:00",
"2013-11-22T00:00:00",
"2013-11-25T00:00:00",
"2013-11-26T00:00:00",
"2013-11-27T00:00:00",
"2013-11-29T00:00:00",
"2013-02-12T00:00:00",
"2013-03-12T00:00:00",
"2013-04-12T00:00:00",
"2013-05-12T00:00:00",
"2013-06-12T00:00:00",
"2013-09-12T00:00:00",
"2013-10-12T00:00:00",
"2013-11-12T00:00:00",
"2013-12-12T00:00:00",
"2013-12-13T00:00:00",
"2013-12-16T00:00:00",
"2013-12-17T00:00:00",
"2013-12-18T00:00:00",
"2013-12-19T00:00:00",
"2013-12-20T00:00:00",
"2013-12-23T00:00:00",
"2013-12-24T00:00:00",
"2013-12-26T00:00:00",
"2013-12-27T00:00:00",
"2013-12-30T00:00:00",
"2013-12-31T00:00:00",
"2014-02-01T00:00:00",
"2014-03-01T00:00:00",
"2014-06-01T00:00:00",
"2014-07-01T00:00:00",
"2014-08-01T00:00:00",
"2014-09-01T00:00:00",
"2014-10-01T00:00:00",
"2014-01-13T00:00:00",
"2014-01-14T00:00:00",
"2014-01-15T00:00:00",
"2014-01-16T00:00:00",
"2014-01-17T00:00:00",
"2014-01-21T00:00:00",
"2014-01-22T00:00:00",
"2014-01-23T00:00:00",
"2014-01-24T00:00:00",
"2014-01-27T00:00:00",
"2014-01-28T00:00:00",
"2014-01-29T00:00:00",
"2014-01-30T00:00:00",
"2014-01-31T00:00:00",
"2014-03-02T00:00:00",
"2014-04-02T00:00:00",
"2014-05-02T00:00:00",
"2014-06-02T00:00:00",
"2014-07-02T00:00:00",
"2014-10-02T00:00:00",
"2014-11-02T00:00:00",
"2014-12-02T00:00:00",
"2014-02-13T00:00:00",
"2014-02-14T00:00:00",
"2014-02-18T00:00:00",
"2014-02-19T00:00:00",
"2014-02-20T00:00:00",
"2014-02-21T00:00:00",
"2014-02-24T00:00:00",
"2014-02-25T00:00:00",
"2014-02-26T00:00:00",
"2014-02-27T00:00:00",
"2014-02-28T00:00:00",
"2014-03-03T00:00:00",
"2014-04-03T00:00:00",
"2014-05-03T00:00:00",
"2014-06-03T00:00:00",
"2014-07-03T00:00:00",
"2014-10-03T00:00:00",
"2014-11-03T00:00:00",
"2014-12-03T00:00:00",
"2014-03-13T00:00:00",
"2014-03-14T00:00:00",
"2014-03-17T00:00:00",
"2014-03-18T00:00:00",
"2014-03-19T00:00:00",
"2014-03-20T00:00:00",
"2014-03-21T00:00:00",
"2014-03-24T00:00:00",
"2014-03-25T00:00:00",
"2014-03-26T00:00:00",
"2014-03-27T00:00:00",
"2014-03-28T00:00:00",
"2014-03-31T00:00:00",
"2014-01-04T00:00:00",
"2014-02-04T00:00:00",
"2014-03-04T00:00:00",
"2014-04-04T00:00:00",
"2014-07-04T00:00:00",
"2014-08-04T00:00:00",
"2014-09-04T00:00:00",
"2014-10-04T00:00:00",
"2014-11-04T00:00:00",
"2014-04-14T00:00:00",
"2014-04-15T00:00:00",
"2014-04-16T00:00:00",
"2014-04-17T00:00:00",
"2014-04-21T00:00:00",
"2014-04-22T00:00:00",
"2014-04-23T00:00:00",
"2014-04-24T00:00:00",
"2014-04-25T00:00:00",
"2014-04-28T00:00:00",
"2014-04-29T00:00:00",
"2014-04-30T00:00:00",
"2014-01-05T00:00:00",
"2014-02-05T00:00:00",
"2014-05-05T00:00:00",
"2014-06-05T00:00:00",
"2014-07-05T00:00:00",
"2014-08-05T00:00:00",
"2014-09-05T00:00:00",
"2014-12-05T00:00:00",
"2014-05-13T00:00:00",
"2014-05-14T00:00:00",
"2014-05-15T00:00:00",
"2014-05-16T00:00:00",
"2014-05-19T00:00:00",
"2014-05-20T00:00:00",
"2014-05-21T00:00:00",
"2014-05-22T00:00:00",
"2014-05-23T00:00:00",
"2014-05-27T00:00:00",
"2014-05-28T00:00:00",
"2014-05-29T00:00:00",
"2014-05-30T00:00:00",
"2014-02-06T00:00:00",
"2014-03-06T00:00:00",
"2014-04-06T00:00:00",
"2014-05-06T00:00:00",
"2014-06-06T00:00:00",
"2014-09-06T00:00:00",
"2014-10-06T00:00:00",
"2014-11-06T00:00:00",
"2014-12-06T00:00:00",
"2014-06-13T00:00:00",
"2014-06-16T00:00:00",
"2014-06-17T00:00:00",
"2014-06-18T00:00:00",
"2014-06-19T00:00:00",
"2014-06-20T00:00:00",
"2014-06-23T00:00:00",
"2014-06-24T00:00:00",
"2014-06-25T00:00:00",
"2014-06-26T00:00:00",
"2014-06-27T00:00:00",
"2014-06-30T00:00:00",
"2014-01-07T00:00:00",
"2014-02-07T00:00:00",
"2014-03-07T00:00:00",
"2014-07-07T00:00:00",
"2014-08-07T00:00:00",
"2014-09-07T00:00:00",
"2014-10-07T00:00:00",
"2014-11-07T00:00:00",
"2014-07-14T00:00:00",
"2014-07-15T00:00:00",
"2014-07-16T00:00:00",
"2014-07-17T00:00:00",
"2014-07-18T00:00:00",
"2014-07-21T00:00:00",
"2014-07-22T00:00:00",
"2014-07-23T00:00:00",
"2014-07-24T00:00:00",
"2014-07-25T00:00:00",
"2014-07-28T00:00:00",
"2014-07-29T00:00:00",
"2014-07-30T00:00:00",
"2014-07-31T00:00:00",
"2014-01-08T00:00:00",
"2014-04-08T00:00:00",
"2014-05-08T00:00:00",
"2014-06-08T00:00:00",
"2014-07-08T00:00:00",
"2014-08-08T00:00:00",
"2014-11-08T00:00:00",
"2014-12-08T00:00:00",
"2014-08-13T00:00:00",
"2014-08-14T00:00:00",
"2014-08-15T00:00:00",
"2014-08-18T00:00:00",
"2014-08-19T00:00:00",
"2014-08-20T00:00:00",
"2014-08-21T00:00:00",
"2014-08-22T00:00:00",
"2014-08-25T00:00:00",
"2014-08-26T00:00:00",
"2014-08-27T00:00:00",
"2014-08-28T00:00:00",
"2014-08-29T00:00:00",
"2014-02-09T00:00:00",
"2014-03-09T00:00:00",
"2014-04-09T00:00:00",
"2014-05-09T00:00:00",
"2014-08-09T00:00:00",
"2014-09-09T00:00:00",
"2014-10-09T00:00:00",
"2014-11-09T00:00:00",
"2014-12-09T00:00:00",
"2014-09-15T00:00:00",
"2014-09-16T00:00:00",
"2014-09-17T00:00:00",
"2014-09-18T00:00:00",
"2014-09-19T00:00:00",
"2014-09-22T00:00:00",
"2014-09-23T00:00:00",
"2014-09-24T00:00:00",
"2014-09-25T00:00:00",
"2014-09-26T00:00:00",
"2014-09-29T00:00:00",
"2014-09-30T00:00:00",
"2014-01-10T00:00:00",
"2014-02-10T00:00:00",
"2014-03-10T00:00:00",
"2014-06-10T00:00:00",
"2014-07-10T00:00:00",
"2014-08-10T00:00:00",
"2014-09-10T00:00:00",
"2014-10-10T00:00:00",
"2014-10-13T00:00:00",
"2014-10-14T00:00:00",
"2014-10-15T00:00:00",
"2014-10-16T00:00:00",
"2014-10-17T00:00:00",
"2014-10-20T00:00:00",
"2014-10-21T00:00:00",
"2014-10-22T00:00:00",
"2014-10-23T00:00:00",
"2014-10-24T00:00:00",
"2014-10-27T00:00:00",
"2014-10-28T00:00:00",
"2014-10-29T00:00:00",
"2014-10-30T00:00:00",
"2014-10-31T00:00:00",
"2014-03-11T00:00:00",
"2014-04-11T00:00:00",
"2014-05-11T00:00:00",
"2014-06-11T00:00:00",
"2014-07-11T00:00:00",
"2014-10-11T00:00:00",
"2014-11-11T00:00:00",
"2014-12-11T00:00:00",
"2014-11-13T00:00:00",
"2014-11-14T00:00:00",
"2014-11-17T00:00:00",
"2014-11-18T00:00:00",
"2014-11-19T00:00:00",
"2014-11-20T00:00:00",
"2014-11-21T00:00:00",
"2014-11-24T00:00:00",
"2014-11-25T00:00:00",
"2014-11-26T00:00:00",
"2014-11-28T00:00:00",
"2014-01-12T00:00:00",
"2014-02-12T00:00:00",
"2014-03-12T00:00:00",
"2014-04-12T00:00:00",
"2014-05-12T00:00:00",
"2014-08-12T00:00:00",
"2014-09-12T00:00:00",
"2014-10-12T00:00:00",
"2014-11-12T00:00:00",
"2014-12-12T00:00:00",
"2014-12-15T00:00:00",
"2014-12-16T00:00:00",
"2014-12-17T00:00:00",
"2014-12-18T00:00:00",
"2014-12-19T00:00:00",
"2014-12-22T00:00:00",
"2014-12-23T00:00:00",
"2014-12-24T00:00:00",
"2014-12-26T00:00:00",
"2014-12-29T00:00:00",
"2014-12-30T00:00:00",
"2014-12-31T00:00:00",
"2015-02-01T00:00:00",
"2015-05-01T00:00:00",
"2015-06-01T00:00:00",
"2015-07-01T00:00:00",
"2015-08-01T00:00:00",
"2015-09-01T00:00:00",
"2015-12-01T00:00:00",
"2015-01-13T00:00:00",
"2015-01-14T00:00:00",
"2015-01-15T00:00:00",
"2015-01-16T00:00:00",
"2015-01-20T00:00:00",
"2015-01-21T00:00:00",
"2015-01-22T00:00:00",
"2015-01-23T00:00:00",
"2015-01-26T00:00:00",
"2015-01-27T00:00:00",
"2015-01-28T00:00:00",
"2015-01-29T00:00:00",
"2015-01-30T00:00:00",
"2015-02-02T00:00:00",
"2015-03-02T00:00:00",
"2015-04-02T00:00:00",
"2015-05-02T00:00:00",
"2015-06-02T00:00:00",
"2015-09-02T00:00:00",
"2015-10-02T00:00:00",
"2015-11-02T00:00:00",
"2015-12-02T00:00:00",
"2015-02-13T00:00:00",
"2015-02-17T00:00:00",
"2015-02-18T00:00:00",
"2015-02-19T00:00:00",
"2015-02-20T00:00:00",
"2015-02-23T00:00:00",
"2015-02-24T00:00:00",
"2015-02-25T00:00:00",
"2015-02-26T00:00:00",
"2015-02-27T00:00:00",
"2015-02-03T00:00:00",
"2015-03-03T00:00:00",
"2015-04-03T00:00:00",
"2015-05-03T00:00:00",
"2015-06-03T00:00:00",
"2015-09-03T00:00:00",
"2015-10-03T00:00:00",
"2015-11-03T00:00:00",
"2015-12-03T00:00:00",
"2015-03-13T00:00:00",
"2015-03-16T00:00:00",
"2015-03-17T00:00:00",
"2015-03-18T00:00:00",
"2015-03-19T00:00:00",
"2015-03-20T00:00:00",
"2015-03-23T00:00:00",
"2015-03-24T00:00:00",
"2015-03-25T00:00:00",
"2015-03-26T00:00:00",
"2015-03-27T00:00:00",
"2015-03-30T00:00:00",
"2015-03-31T00:00:00",
"2015-01-04T00:00:00",
"2015-02-04T00:00:00",
"2015-06-04T00:00:00",
"2015-07-04T00:00:00",
"2015-08-04T00:00:00",
"2015-09-04T00:00:00",
"2015-10-04T00:00:00",
"2015-04-13T00:00:00",
"2015-04-14T00:00:00",
"2015-04-15T00:00:00",
"2015-04-16T00:00:00",
"2015-04-17T00:00:00",
"2015-04-20T00:00:00",
"2015-04-21T00:00:00",
"2015-04-22T00:00:00",
"2015-04-23T00:00:00",
"2015-04-24T00:00:00",
"2015-04-27T00:00:00",
"2015-04-28T00:00:00",
"2015-04-29T00:00:00",
"2015-04-30T00:00:00",
"2015-01-05T00:00:00",
"2015-04-05T00:00:00",
"2015-05-05T00:00:00",
"2015-06-05T00:00:00",
"2015-07-05T00:00:00",
"2015-08-05T00:00:00",
"2015-11-05T00:00:00",
"2015-12-05T00:00:00",
"2015-05-13T00:00:00",
"2015-05-14T00:00:00",
"2015-05-15T00:00:00",
"2015-05-18T00:00:00",
"2015-05-19T00:00:00",
"2015-05-20T00:00:00",
"2015-05-21T00:00:00",
"2015-05-22T00:00:00",
"2015-05-26T00:00:00",
"2015-05-27T00:00:00",
"2015-05-28T00:00:00",
"2015-05-29T00:00:00",
"2015-01-06T00:00:00",
"2015-02-06T00:00:00",
"2015-03-06T00:00:00",
"2015-04-06T00:00:00",
"2015-05-06T00:00:00",
"2015-08-06T00:00:00",
"2015-09-06T00:00:00",
"2015-10-06T00:00:00",
"2015-11-06T00:00:00",
"2015-12-06T00:00:00",
"2015-06-15T00:00:00",
"2015-06-16T00:00:00",
"2015-06-17T00:00:00",
"2015-06-18T00:00:00",
"2015-06-19T00:00:00",
"2015-06-22T00:00:00",
"2015-06-23T00:00:00",
"2015-06-24T00:00:00",
"2015-06-25T00:00:00",
"2015-06-26T00:00:00",
"2015-06-29T00:00:00",
"2015-06-30T00:00:00",
"2015-01-07T00:00:00",
"2015-02-07T00:00:00",
"2015-06-07T00:00:00",
"2015-07-07T00:00:00",
"2015-08-07T00:00:00",
"2015-09-07T00:00:00",
"2015-10-07T00:00:00",
"2015-07-13T00:00:00",
"2015-07-14T00:00:00",
"2015-07-15T00:00:00",
"2015-07-16T00:00:00",
"2015-07-17T00:00:00",
"2015-07-20T00:00:00",
"2015-07-21T00:00:00",
"2015-07-22T00:00:00",
"2015-07-23T00:00:00",
"2015-07-24T00:00:00",
"2015-07-27T00:00:00",
"2015-07-28T00:00:00",
"2015-07-29T00:00:00",
"2015-07-30T00:00:00",
"2015-07-31T00:00:00",
"2015-03-08T00:00:00",
"2015-04-08T00:00:00",
"2015-05-08T00:00:00",
"2015-06-08T00:00:00",
"2015-07-08T00:00:00",
"2015-10-08T00:00:00",
"2015-11-08T00:00:00",
"2015-12-08T00:00:00",
"2015-08-13T00:00:00",
"2015-08-14T00:00:00",
"2015-08-17T00:00:00",
"2015-08-18T00:00:00",
"2015-08-19T00:00:00",
"2015-08-20T00:00:00",
"2015-08-21T00:00:00",
"2015-08-24T00:00:00",
"2015-08-25T00:00:00",
"2015-08-26T00:00:00",
"2015-08-27T00:00:00",
"2015-08-28T00:00:00",
"2015-08-31T00:00:00",
"2015-01-09T00:00:00",
"2015-02-09T00:00:00",
"2015-03-09T00:00:00",
"2015-04-09T00:00:00",
"2015-08-09T00:00:00",
"2015-09-09T00:00:00",
"2015-10-09T00:00:00",
"2015-11-09T00:00:00",
"2015-09-14T00:00:00",
"2015-09-15T00:00:00",
"2015-09-16T00:00:00",
"2015-09-17T00:00:00",
"2015-09-18T00:00:00",
"2015-09-21T00:00:00",
"2015-09-22T00:00:00",
"2015-09-23T00:00:00",
"2015-09-24T00:00:00",
"2015-09-25T00:00:00",
"2015-09-28T00:00:00",
"2015-09-29T00:00:00",
"2015-09-30T00:00:00",
"2015-01-10T00:00:00",
"2015-02-10T00:00:00",
"2015-05-10T00:00:00",
"2015-06-10T00:00:00",
"2015-07-10T00:00:00",
"2015-08-10T00:00:00",
"2015-09-10T00:00:00",
"2015-12-10T00:00:00",
"2015-10-13T00:00:00",
"2015-10-14T00:00:00",
"2015-10-15T00:00:00",
"2015-10-16T00:00:00",
"2015-10-19T00:00:00",
"2015-10-20T00:00:00",
"2015-10-21T00:00:00",
"2015-10-22T00:00:00",
"2015-10-23T00:00:00",
"2015-10-26T00:00:00",
"2015-10-27T00:00:00",
"2015-10-28T00:00:00",
"2015-10-29T00:00:00",
"2015-10-30T00:00:00",
"2015-02-11T00:00:00",
"2015-03-11T00:00:00",
"2015-04-11T00:00:00",
"2015-05-11T00:00:00",
"2015-06-11T00:00:00",
"2015-09-11T00:00:00",
"2015-10-11T00:00:00",
"2015-11-11T00:00:00",
"2015-12-11T00:00:00",
"2015-11-13T00:00:00",
"2015-11-16T00:00:00",
"2015-11-17T00:00:00",
"2015-11-18T00:00:00",
"2015-11-19T00:00:00",
"2015-11-20T00:00:00",
"2015-11-23T00:00:00",
"2015-11-24T00:00:00",
"2015-11-25T00:00:00",
"2015-11-27T00:00:00",
"2015-11-30T00:00:00",
"2015-01-12T00:00:00",
"2015-02-12T00:00:00",
"2015-03-12T00:00:00",
"2015-04-12T00:00:00",
"2015-07-12T00:00:00",
"2015-08-12T00:00:00",
"2015-09-12T00:00:00",
"2015-10-12T00:00:00",
"2015-11-12T00:00:00",
"2015-12-14T00:00:00",
"2015-12-15T00:00:00",
"2015-12-16T00:00:00",
"2015-12-17T00:00:00",
"2015-12-18T00:00:00",
"2015-12-21T00:00:00",
"2015-12-22T00:00:00",
"2015-12-23T00:00:00",
"2015-12-24T00:00:00",
"2015-12-28T00:00:00",
"2015-12-29T00:00:00",
"2015-12-30T00:00:00",
"2015-12-31T00:00:00",
"2016-04-01T00:00:00",
"2016-05-01T00:00:00",
"2016-06-01T00:00:00",
"2016-07-01T00:00:00",
"2016-08-01T00:00:00",
"2016-11-01T00:00:00",
"2016-12-01T00:00:00",
"2016-01-13T00:00:00",
"2016-01-14T00:00:00",
"2016-01-15T00:00:00",
"2016-01-19T00:00:00",
"2016-01-20T00:00:00",
"2016-01-21T00:00:00",
"2016-01-22T00:00:00",
"2016-01-25T00:00:00",
"2016-01-26T00:00:00",
"2016-01-27T00:00:00",
"2016-01-28T00:00:00",
"2016-01-29T00:00:00",
"2016-01-02T00:00:00",
"2016-02-02T00:00:00",
"2016-03-02T00:00:00",
"2016-04-02T00:00:00",
"2016-05-02T00:00:00",
"2016-08-02T00:00:00",
"2016-09-02T00:00:00",
"2016-10-02T00:00:00",
"2016-11-02T00:00:00",
"2016-12-02T00:00:00",
"2016-02-16T00:00:00",
"2016-02-17T00:00:00",
"2016-02-18T00:00:00",
"2016-02-19T00:00:00",
"2016-02-22T00:00:00",
"2016-02-23T00:00:00",
"2016-02-24T00:00:00",
"2016-02-25T00:00:00",
"2016-02-26T00:00:00",
"2016-02-29T00:00:00",
"2016-01-03T00:00:00",
"2016-02-03T00:00:00",
"2016-03-03T00:00:00",
"2016-04-03T00:00:00",
"2016-07-03T00:00:00",
"2016-08-03T00:00:00",
"2016-09-03T00:00:00",
"2016-10-03T00:00:00",
"2016-11-03T00:00:00",
"2016-03-14T00:00:00",
"2016-03-15T00:00:00",
"2016-03-16T00:00:00",
"2016-03-17T00:00:00",
"2016-03-18T00:00:00",
"2016-03-21T00:00:00",
"2016-03-22T00:00:00",
"2016-03-23T00:00:00",
"2016-03-24T00:00:00",
"2016-03-28T00:00:00",
"2016-03-29T00:00:00",
"2016-03-30T00:00:00",
"2016-03-31T00:00:00",
"2016-01-04T00:00:00",
"2016-04-04T00:00:00",
"2016-05-04T00:00:00",
"2016-06-04T00:00:00",
"2016-07-04T00:00:00",
"2016-08-04T00:00:00",
"2016-11-04T00:00:00",
"2016-12-04T00:00:00",
"2016-04-13T00:00:00",
"2016-04-14T00:00:00",
"2016-04-15T00:00:00",
"2016-04-18T00:00:00",
"2016-04-19T00:00:00",
"2016-04-20T00:00:00",
"2016-04-21T00:00:00",
"2016-04-22T00:00:00",
"2016-04-25T00:00:00",
"2016-04-26T00:00:00",
"2016-04-27T00:00:00",
"2016-04-28T00:00:00",
"2016-04-29T00:00:00",
"2016-02-05T00:00:00",
"2016-03-05T00:00:00",
"2016-04-05T00:00:00",
"2016-05-05T00:00:00",
"2016-06-05T00:00:00",
"2016-09-05T00:00:00",
"2016-10-05T00:00:00",
"2016-11-05T00:00:00",
"2016-12-05T00:00:00",
"2016-05-13T00:00:00",
"2016-05-16T00:00:00",
"2016-05-17T00:00:00",
"2016-05-18T00:00:00",
"2016-05-19T00:00:00",
"2016-05-20T00:00:00",
"2016-05-23T00:00:00",
"2016-05-24T00:00:00",
"2016-05-25T00:00:00",
"2016-05-26T00:00:00",
"2016-05-27T00:00:00",
"2016-05-31T00:00:00",
"2016-01-06T00:00:00",
"2016-02-06T00:00:00",
"2016-03-06T00:00:00",
"2016-06-06T00:00:00",
"2016-07-06T00:00:00",
"2016-08-06T00:00:00",
"2016-09-06T00:00:00",
"2016-10-06T00:00:00",
"2016-06-13T00:00:00",
"2016-06-14T00:00:00",
"2016-06-15T00:00:00",
"2016-06-16T00:00:00",
"2016-06-17T00:00:00",
"2016-06-20T00:00:00",
"2016-06-21T00:00:00",
"2016-06-22T00:00:00",
"2016-06-23T00:00:00",
"2016-06-24T00:00:00",
"2016-06-27T00:00:00",
"2016-06-28T00:00:00",
"2016-06-29T00:00:00",
"2016-06-30T00:00:00",
"2016-01-07T00:00:00",
"2016-05-07T00:00:00",
"2016-06-07T00:00:00",
"2016-07-07T00:00:00",
"2016-08-07T00:00:00",
"2016-11-07T00:00:00",
"2016-12-07T00:00:00",
"2016-07-13T00:00:00",
"2016-07-14T00:00:00",
"2016-07-15T00:00:00",
"2016-07-18T00:00:00",
"2016-07-19T00:00:00",
"2016-07-20T00:00:00",
"2016-07-21T00:00:00",
"2016-07-22T00:00:00",
"2016-07-25T00:00:00",
"2016-07-26T00:00:00",
"2016-07-27T00:00:00",
"2016-07-28T00:00:00",
"2016-07-29T00:00:00",
"2016-01-08T00:00:00",
"2016-02-08T00:00:00",
"2016-03-08T00:00:00",
"2016-04-08T00:00:00",
"2016-05-08T00:00:00",
"2016-08-08T00:00:00",
"2016-09-08T00:00:00",
"2016-10-08T00:00:00",
"2016-11-08T00:00:00",
"2016-12-08T00:00:00",
"2016-08-15T00:00:00",
"2016-08-16T00:00:00",
"2016-08-17T00:00:00",
"2016-08-18T00:00:00",
"2016-08-19T00:00:00",
"2016-08-22T00:00:00",
"2016-08-23T00:00:00",
"2016-08-24T00:00:00",
"2016-08-25T00:00:00",
"2016-08-26T00:00:00",
"2016-08-29T00:00:00",
"2016-08-30T00:00:00",
"2016-08-31T00:00:00",
"2016-01-09T00:00:00",
"2016-02-09T00:00:00",
"2016-06-09T00:00:00",
"2016-07-09T00:00:00",
"2016-08-09T00:00:00",
"2016-09-09T00:00:00",
"2016-12-09T00:00:00",
"2016-09-13T00:00:00",
"2016-09-14T00:00:00",
"2016-09-15T00:00:00",
"2016-09-16T00:00:00",
"2016-09-19T00:00:00",
"2016-09-20T00:00:00",
"2016-09-21T00:00:00",
"2016-09-22T00:00:00",
"2016-09-23T00:00:00",
"2016-09-26T00:00:00",
"2016-09-27T00:00:00",
"2016-09-28T00:00:00",
"2016-09-29T00:00:00",
"2016-09-30T00:00:00",
"2016-03-10T00:00:00",
"2016-04-10T00:00:00",
"2016-05-10T00:00:00",
"2016-06-10T00:00:00",
"2016-07-10T00:00:00",
"2016-10-10T00:00:00",
"2016-11-10T00:00:00",
"2016-12-10T00:00:00",
"2016-10-13T00:00:00",
"2016-10-14T00:00:00",
"2016-10-17T00:00:00",
"2016-10-18T00:00:00",
"2016-10-19T00:00:00",
"2016-10-20T00:00:00",
"2016-10-21T00:00:00",
"2016-10-24T00:00:00",
"2016-10-25T00:00:00",
"2016-10-26T00:00:00",
"2016-10-27T00:00:00",
"2016-10-28T00:00:00",
"2016-10-31T00:00:00",
"2016-01-11T00:00:00",
"2016-02-11T00:00:00",
"2016-03-11T00:00:00",
"2016-04-11T00:00:00",
"2016-07-11T00:00:00",
"2016-08-11T00:00:00",
"2016-09-11T00:00:00",
"2016-10-11T00:00:00",
"2016-11-11T00:00:00",
"2016-11-14T00:00:00",
"2016-11-15T00:00:00",
"2016-11-16T00:00:00",
"2016-11-17T00:00:00",
"2016-11-18T00:00:00",
"2016-11-21T00:00:00",
"2016-11-22T00:00:00",
"2016-11-23T00:00:00",
"2016-11-25T00:00:00",
"2016-11-28T00:00:00",
"2016-11-29T00:00:00",
"2016-11-30T00:00:00",
"2016-01-12T00:00:00",
"2016-02-12T00:00:00",
"2016-05-12T00:00:00",
"2016-06-12T00:00:00",
"2016-07-12T00:00:00",
"2016-08-12T00:00:00",
"2016-09-12T00:00:00",
"2016-12-12T00:00:00",
"2016-12-13T00:00:00",
"2016-12-14T00:00:00",
"2016-12-15T00:00:00",
"2016-12-16T00:00:00",
"2016-12-19T00:00:00",
"2016-12-20T00:00:00",
"2016-12-21T00:00:00",
"2016-12-22T00:00:00",
"2016-12-23T00:00:00",
"2016-12-27T00:00:00",
"2016-12-28T00:00:00",
"2016-12-29T00:00:00",
"2016-12-30T00:00:00",
"2017-03-01T00:00:00",
"2017-04-01T00:00:00",
"2017-05-01T00:00:00",
"2017-06-01T00:00:00",
"2017-09-01T00:00:00",
"2017-10-01T00:00:00",
"2017-11-01T00:00:00",
"2017-12-01T00:00:00",
"2017-01-13T00:00:00",
"2017-01-17T00:00:00",
"2017-01-18T00:00:00",
"2017-01-19T00:00:00",
"2017-01-20T00:00:00",
"2017-01-23T00:00:00",
"2017-01-24T00:00:00",
"2017-01-25T00:00:00",
"2017-01-26T00:00:00",
"2017-01-27T00:00:00",
"2017-01-30T00:00:00",
"2017-01-31T00:00:00",
"2017-01-02T00:00:00",
"2017-02-02T00:00:00",
"2017-03-02T00:00:00",
"2017-06-02T00:00:00",
"2017-07-02T00:00:00",
"2017-08-02T00:00:00",
"2017-09-02T00:00:00",
"2017-10-02T00:00:00",
"2017-02-13T00:00:00",
"2017-02-14T00:00:00",
"2017-02-15T00:00:00",
"2017-02-16T00:00:00",
"2017-02-17T00:00:00",
"2017-02-21T00:00:00",
"2017-02-22T00:00:00",
"2017-02-23T00:00:00",
"2017-02-24T00:00:00",
"2017-02-27T00:00:00",
"2017-02-28T00:00:00",
"2017-01-03T00:00:00",
"2017-02-03T00:00:00",
"2017-03-03T00:00:00",
"2017-06-03T00:00:00",
"2017-07-03T00:00:00",
"2017-08-03T00:00:00",
"2017-09-03T00:00:00",
"2017-10-03T00:00:00",
"2017-03-13T00:00:00",
"2017-03-14T00:00:00",
"2017-03-15T00:00:00",
"2017-03-16T00:00:00",
"2017-03-17T00:00:00",
"2017-03-20T00:00:00",
"2017-03-21T00:00:00",
"2017-03-22T00:00:00",
"2017-03-23T00:00:00",
"2017-03-24T00:00:00",
"2017-03-27T00:00:00",
"2017-03-28T00:00:00",
"2017-03-29T00:00:00",
"2017-03-30T00:00:00",
"2017-03-31T00:00:00",
"2017-03-04T00:00:00",
"2017-04-04T00:00:00",
"2017-05-04T00:00:00",
"2017-06-04T00:00:00",
"2017-07-04T00:00:00",
"2017-10-04T00:00:00",
"2017-11-04T00:00:00",
"2017-12-04T00:00:00",
"2017-04-13T00:00:00",
"2017-04-17T00:00:00",
"2017-04-18T00:00:00",
"2017-04-19T00:00:00",
"2017-04-20T00:00:00",
"2017-04-21T00:00:00",
"2017-04-24T00:00:00",
"2017-04-25T00:00:00",
"2017-04-26T00:00:00",
"2017-04-27T00:00:00",
"2017-04-28T00:00:00",
"2017-01-05T00:00:00",
"2017-02-05T00:00:00",
"2017-03-05T00:00:00",
"2017-04-05T00:00:00",
"2017-05-05T00:00:00",
"2017-08-05T00:00:00",
"2017-09-05T00:00:00",
"2017-10-05T00:00:00",
"2017-11-05T00:00:00",
"2017-12-05T00:00:00",
"2017-05-15T00:00:00",
"2017-05-16T00:00:00",
"2017-05-17T00:00:00",
"2017-05-18T00:00:00",
"2017-05-19T00:00:00",
"2017-05-22T00:00:00",
"2017-05-23T00:00:00",
"2017-05-24T00:00:00",
"2017-05-25T00:00:00",
"2017-05-26T00:00:00",
"2017-05-30T00:00:00",
"2017-05-31T00:00:00",
"2017-01-06T00:00:00",
"2017-02-06T00:00:00",
"2017-05-06T00:00:00",
"2017-06-06T00:00:00",
"2017-07-06T00:00:00",
"2017-08-06T00:00:00",
"2017-09-06T00:00:00",
"2017-12-06T00:00:00",
"2017-06-13T00:00:00",
"2017-06-14T00:00:00",
"2017-06-15T00:00:00",
"2017-06-16T00:00:00",
"2017-06-19T00:00:00",
"2017-06-20T00:00:00",
"2017-06-21T00:00:00",
"2017-06-22T00:00:00",
"2017-06-23T00:00:00",
"2017-06-26T00:00:00",
"2017-06-27T00:00:00",
"2017-06-28T00:00:00",
"2017-06-29T00:00:00",
"2017-06-30T00:00:00",
"2017-03-07T00:00:00",
"2017-05-07T00:00:00",
"2017-06-07T00:00:00",
"2017-07-07T00:00:00",
"2017-10-07T00:00:00",
"2017-11-07T00:00:00",
"2017-12-07T00:00:00",
"2017-07-13T00:00:00",
"2017-07-14T00:00:00",
"2017-07-17T00:00:00",
"2017-07-18T00:00:00",
"2017-07-19T00:00:00",
"2017-07-20T00:00:00",
"2017-07-21T00:00:00",
"2017-07-24T00:00:00",
"2017-07-25T00:00:00",
"2017-07-26T00:00:00",
"2017-07-27T00:00:00",
"2017-07-28T00:00:00",
"2017-07-31T00:00:00",
"2017-01-08T00:00:00",
"2017-02-08T00:00:00",
"2017-03-08T00:00:00",
"2017-04-08T00:00:00",
"2017-07-08T00:00:00",
"2017-08-08T00:00:00",
"2017-09-08T00:00:00",
"2017-10-08T00:00:00",
"2017-11-08T00:00:00",
"2017-08-14T00:00:00",
"2017-08-15T00:00:00",
"2017-08-16T00:00:00",
"2017-08-17T00:00:00",
"2017-08-18T00:00:00",
"2017-08-21T00:00:00",
"2017-08-22T00:00:00",
"2017-08-23T00:00:00",
"2017-08-24T00:00:00",
"2017-08-25T00:00:00",
"2017-08-28T00:00:00",
"2017-08-29T00:00:00",
"2017-08-30T00:00:00",
"2017-08-31T00:00:00",
"2017-01-09T00:00:00",
"2017-05-09T00:00:00",
"2017-06-09T00:00:00",
"2017-07-09T00:00:00",
"2017-08-09T00:00:00",
"2017-11-09T00:00:00",
"2017-12-09T00:00:00",
"2017-09-13T00:00:00",
"2017-09-14T00:00:00",
"2017-09-15T00:00:00",
"2017-09-18T00:00:00",
"2017-09-19T00:00:00",
"2017-09-20T00:00:00",
"2017-09-21T00:00:00",
"2017-09-22T00:00:00",
"2017-09-25T00:00:00",
"2017-09-26T00:00:00",
"2017-09-27T00:00:00",
"2017-09-28T00:00:00",
"2017-09-29T00:00:00",
"2017-02-10T00:00:00",
"2017-03-10T00:00:00",
"2017-04-10T00:00:00",
"2017-05-10T00:00:00",
"2017-06-10T00:00:00",
"2017-09-10T00:00:00",
"2017-10-10T00:00:00",
"2017-11-10T00:00:00",
"2017-12-10T00:00:00",
"2017-10-13T00:00:00",
"2017-10-16T00:00:00",
"2017-10-17T00:00:00",
"2017-10-18T00:00:00",
"2017-10-19T00:00:00",
"2017-10-20T00:00:00",
"2017-10-23T00:00:00",
"2017-10-24T00:00:00",
"2017-10-25T00:00:00",
"2017-10-26T00:00:00",
"2017-10-27T00:00:00",
"2017-10-30T00:00:00",
"2017-10-31T00:00:00",
"2017-01-11T00:00:00",
"2017-02-11T00:00:00",
"2017-03-11T00:00:00",
"2017-06-11T00:00:00",
"2017-07-11T00:00:00",
"2017-08-11T00:00:00",
"2017-09-11T00:00:00",
"2017-10-11T00:00:00",
"2017-11-13T00:00:00",
"2017-11-14T00:00:00",
"2017-11-15T00:00:00",
"2017-11-16T00:00:00",
"2017-11-17T00:00:00",
"2017-11-20T00:00:00",
"2017-11-21T00:00:00",
"2017-11-22T00:00:00",
"2017-11-24T00:00:00",
"2017-11-27T00:00:00",
"2017-11-28T00:00:00",
"2017-11-29T00:00:00",
"2017-11-30T00:00:00",
"2017-01-12T00:00:00",
"2017-04-12T00:00:00",
"2017-05-12T00:00:00",
"2017-06-12T00:00:00",
"2017-07-12T00:00:00",
"2017-08-12T00:00:00",
"2017-11-12T00:00:00",
"2017-12-12T00:00:00",
"2017-12-13T00:00:00",
"2017-12-14T00:00:00",
"2017-12-15T00:00:00",
"2017-12-18T00:00:00",
"2017-12-19T00:00:00",
"2017-12-20T00:00:00",
"2017-12-21T00:00:00",
"2017-12-22T00:00:00",
"2017-12-26T00:00:00",
"2017-12-27T00:00:00",
"2017-12-28T00:00:00",
"2017-12-29T00:00:00",
"2018-02-01T00:00:00",
"2018-03-01T00:00:00",
"2018-04-01T00:00:00",
"2018-05-01T00:00:00",
"2018-08-01T00:00:00",
"2018-09-01T00:00:00",
"2018-10-01T00:00:00",
"2018-11-01T00:00:00",
"2018-12-01T00:00:00",
"2018-01-16T00:00:00",
"2018-01-17T00:00:00",
"2018-01-18T00:00:00",
"2018-01-19T00:00:00",
"2018-01-22T00:00:00",
"2018-01-23T00:00:00",
"2018-01-24T00:00:00",
"2018-01-25T00:00:00",
"2018-01-26T00:00:00",
"2018-01-29T00:00:00",
"2018-01-30T00:00:00",
"2018-01-31T00:00:00",
"2018-01-02T00:00:00",
"2018-02-02T00:00:00",
"2018-05-02T00:00:00",
"2018-06-02T00:00:00",
"2018-07-02T00:00:00",
"2018-08-02T00:00:00",
"2018-09-02T00:00:00",
"2018-12-02T00:00:00",
"2018-02-13T00:00:00",
"2018-02-14T00:00:00",
"2018-02-15T00:00:00",
"2018-02-16T00:00:00",
"2018-02-20T00:00:00",
"2018-02-21T00:00:00",
"2018-02-22T00:00:00",
"2018-02-23T00:00:00",
"2018-02-26T00:00:00",
"2018-02-27T00:00:00",
"2018-02-28T00:00:00",
"2018-01-03T00:00:00",
"2018-02-03T00:00:00",
"2018-05-03T00:00:00",
"2018-06-03T00:00:00",
"2018-07-03T00:00:00",
"2018-08-03T00:00:00",
"2018-09-03T00:00:00",
"2018-12-03T00:00:00",
"2018-03-13T00:00:00",
"2018-03-14T00:00:00",
"2018-03-15T00:00:00",
"2018-03-16T00:00:00",
"2018-03-19T00:00:00",
"2018-03-20T00:00:00",
"2018-03-21T00:00:00",
"2018-03-22T00:00:00",
"2018-03-23T00:00:00",
"2018-03-26T00:00:00",
"2018-03-27T00:00:00",
"2018-03-28T00:00:00",
"2018-03-29T00:00:00",
"2018-02-04T00:00:00",
"2018-03-04T00:00:00",
"2018-04-04T00:00:00",
"2018-05-04T00:00:00",
"2018-06-04T00:00:00",
"2018-09-04T00:00:00",
"2018-10-04T00:00:00",
"2018-11-04T00:00:00",
"2018-12-04T00:00:00",
"2018-04-13T00:00:00",
"2018-04-16T00:00:00",
"2018-04-17T00:00:00",
"2018-04-18T00:00:00",
"2018-04-19T00:00:00",
"2018-04-20T00:00:00",
"2018-04-23T00:00:00",
"2018-04-24T00:00:00",
"2018-04-25T00:00:00",
"2018-04-26T00:00:00",
"2018-04-27T00:00:00",
"2018-04-30T00:00:00",
"2018-01-05T00:00:00",
"2018-02-05T00:00:00",
"2018-03-05T00:00:00",
"2018-04-05T00:00:00",
"2018-07-05T00:00:00",
"2018-08-05T00:00:00",
"2018-09-05T00:00:00",
"2018-10-05T00:00:00",
"2018-11-05T00:00:00",
"2018-05-14T00:00:00",
"2018-05-15T00:00:00",
"2018-05-16T00:00:00",
"2018-05-17T00:00:00",
"2018-05-18T00:00:00",
"2018-05-21T00:00:00",
"2018-05-22T00:00:00",
"2018-05-23T00:00:00",
"2018-05-24T00:00:00",
"2018-05-25T00:00:00",
"2018-05-29T00:00:00",
"2018-05-30T00:00:00",
"2018-05-31T00:00:00",
"2018-01-06T00:00:00",
"2018-04-06T00:00:00",
"2018-05-06T00:00:00",
"2018-06-06T00:00:00",
"2018-07-06T00:00:00",
"2018-08-06T00:00:00",
"2018-11-06T00:00:00",
"2018-12-06T00:00:00",
"2018-06-13T00:00:00",
"2018-06-14T00:00:00",
"2018-06-15T00:00:00",
"2018-06-18T00:00:00",
"2018-06-19T00:00:00",
"2018-06-20T00:00:00",
"2018-06-21T00:00:00",
"2018-06-22T00:00:00",
"2018-06-25T00:00:00",
"2018-06-26T00:00:00",
"2018-06-27T00:00:00",
"2018-06-28T00:00:00",
"2018-06-29T00:00:00",
"2018-02-07T00:00:00",
"2018-03-07T00:00:00",
"2018-05-07T00:00:00",
"2018-06-07T00:00:00",
"2018-09-07T00:00:00",
"2018-10-07T00:00:00",
"2018-11-07T00:00:00",
"2018-12-07T00:00:00",
"2018-07-13T00:00:00",
"2018-07-16T00:00:00",
"2018-07-17T00:00:00",
"2018-07-18T00:00:00",
"2018-07-19T00:00:00",
"2018-07-20T00:00:00",
"2018-07-23T00:00:00",
"2018-07-24T00:00:00",
"2018-07-25T00:00:00",
"2018-07-26T00:00:00",
"2018-07-27T00:00:00",
"2018-07-30T00:00:00",
"2018-07-31T00:00:00",
"2018-01-08T00:00:00",
"2018-02-08T00:00:00",
"2018-03-08T00:00:00",
"2018-06-08T00:00:00",
"2018-07-08T00:00:00",
"2018-08-08T00:00:00",
"2018-09-08T00:00:00",
"2018-10-08T00:00:00",
"2018-08-13T00:00:00",
"2018-08-14T00:00:00",
"2018-08-15T00:00:00",
"2018-08-16T00:00:00",
"2018-08-17T00:00:00",
"2018-08-20T00:00:00",
"2018-08-21T00:00:00",
"2018-08-22T00:00:00",
"2018-08-23T00:00:00",
"2018-08-24T00:00:00",
"2018-08-27T00:00:00",
"2018-08-28T00:00:00",
"2018-08-29T00:00:00",
"2018-08-30T00:00:00",
"2018-08-31T00:00:00",
"2018-04-09T00:00:00",
"2018-05-09T00:00:00",
"2018-06-09T00:00:00",
"2018-07-09T00:00:00",
"2018-10-09T00:00:00",
"2018-11-09T00:00:00",
"2018-12-09T00:00:00",
"2018-09-13T00:00:00",
"2018-09-14T00:00:00",
"2018-09-17T00:00:00",
"2018-09-18T00:00:00",
"2018-09-19T00:00:00",
"2018-09-20T00:00:00",
"2018-09-21T00:00:00",
"2018-09-24T00:00:00",
"2018-09-25T00:00:00",
"2018-09-26T00:00:00",
"2018-09-27T00:00:00",
"2018-09-28T00:00:00",
"2018-01-10T00:00:00",
"2018-02-10T00:00:00",
"2018-03-10T00:00:00",
"2018-04-10T00:00:00",
"2018-05-10T00:00:00",
"2018-08-10T00:00:00",
"2018-09-10T00:00:00",
"2018-10-10T00:00:00",
"2018-11-10T00:00:00",
"2018-12-10T00:00:00",
"2018-10-15T00:00:00",
"2018-10-16T00:00:00",
"2018-10-17T00:00:00",
"2018-10-18T00:00:00",
"2018-10-19T00:00:00",
"2018-10-22T00:00:00",
"2018-10-23T00:00:00",
"2018-10-24T00:00:00",
"2018-10-25T00:00:00",
"2018-10-26T00:00:00",
"2018-10-29T00:00:00",
"2018-10-30T00:00:00",
"2018-10-31T00:00:00",
"2018-01-11T00:00:00",
"2018-02-11T00:00:00",
"2018-05-11T00:00:00",
"2018-06-11T00:00:00",
"2018-07-11T00:00:00",
"2018-08-11T00:00:00",
"2018-09-11T00:00:00",
"2018-12-11T00:00:00",
"2018-11-13T00:00:00",
"2018-11-14T00:00:00",
"2018-11-15T00:00:00",
"2018-11-16T00:00:00",
"2018-11-19T00:00:00",
"2018-11-20T00:00:00",
"2018-11-21T00:00:00",
"2018-11-23T00:00:00",
"2018-11-26T00:00:00",
"2018-11-27T00:00:00",
"2018-11-28T00:00:00",
"2018-11-29T00:00:00",
"2018-11-30T00:00:00",
"2018-03-12T00:00:00",
"2018-04-12T00:00:00",
"2018-06-12T00:00:00",
"2018-07-12T00:00:00",
"2018-10-12T00:00:00",
"2018-11-12T00:00:00",
"2018-12-12T00:00:00",
"2018-12-13T00:00:00",
"2018-12-14T00:00:00",
"2018-12-17T00:00:00",
"2018-12-18T00:00:00",
"2018-12-19T00:00:00",
"2018-12-20T00:00:00",
"2018-12-21T00:00:00",
"2018-12-24T00:00:00",
"2018-12-26T00:00:00",
"2018-12-27T00:00:00",
"2018-12-28T00:00:00",
"2018-12-31T00:00:00",
"2019-02-01T00:00:00",
"2019-03-01T00:00:00",
"2019-04-01T00:00:00",
"2019-07-01T00:00:00",
"2019-08-01T00:00:00",
"2019-09-01T00:00:00",
"2019-10-01T00:00:00",
"2019-11-01T00:00:00",
"2019-01-14T00:00:00",
"2019-01-15T00:00:00",
"2019-01-16T00:00:00",
"2019-01-17T00:00:00",
"2019-01-18T00:00:00",
"2019-01-22T00:00:00",
"2019-01-23T00:00:00",
"2019-01-24T00:00:00",
"2019-01-25T00:00:00",
"2019-01-28T00:00:00",
"2019-01-29T00:00:00",
"2019-01-30T00:00:00",
"2019-01-31T00:00:00",
"2019-01-02T00:00:00",
"2019-04-02T00:00:00",
"2019-05-02T00:00:00",
"2019-06-02T00:00:00",
"2019-07-02T00:00:00",
"2019-08-02T00:00:00",
"2019-11-02T00:00:00",
"2019-12-02T00:00:00",
"2019-02-13T00:00:00",
"2019-02-14T00:00:00",
"2019-02-15T00:00:00",
"2019-02-19T00:00:00",
"2019-02-20T00:00:00",
"2019-02-21T00:00:00",
"2019-02-22T00:00:00",
"2019-02-25T00:00:00",
"2019-02-26T00:00:00",
"2019-02-27T00:00:00",
"2019-02-28T00:00:00",
"2019-01-03T00:00:00",
"2019-04-03T00:00:00",
"2019-05-03T00:00:00",
"2019-06-03T00:00:00",
"2019-07-03T00:00:00",
"2019-08-03T00:00:00",
"2019-11-03T00:00:00",
"2019-12-03T00:00:00",
"2019-03-13T00:00:00",
"2019-03-14T00:00:00",
"2019-03-15T00:00:00"
],
"order": 0,
"uid": "f2c5c3",
"name": "data.0.x"
},
{
"data": [
23.889999,
23.83,
21.959999,
19.200001,
16.110001,
15.8,
17.459999,
17.4,
17.049999,
18.139999,
19.84,
19.889999,
20.639999,
21.91,
20.299999,
20.219999,
21.0,
21.290001,
20.950001,
20.549999,
20.719999,
20.35,
19.940001,
20.92,
21.950001,
21.26,
20.450001,
19.59,
19.6,
19.030001,
17.9,
17.6,
18.32,
18.780001,
19.15,
18.77,
18.790001,
19.1,
20.129999,
19.200001,
19.9,
19.75,
19.700001,
19.870001,
19.48,
20.450001,
21.059999,
21.049999,
20.540001,
20.9,
20.709999,
20.17,
20.719999,
21.120001,
21.98,
20.940001,
20.23,
21.059999,
20.77,
19.870001,
19.559999,
20.1,
20.530001,
21.4,
21.98,
20.41,
20.6,
20.99,
21.120001,
20.459999,
20.43,
20.43,
20.24,
20.24,
20.540001,
20.75,
20.540001,
20.23,
20.049999,
20.65,
20.75,
20.719999,
20.85,
21.360001,
21.0,
21.190001,
21.84,
21.41,
21.25,
21.77,
24.9,
24.440001,
24.98,
24.629999,
29.360001,
28.040001,
29.84,
30.799999,
29.67,
29.49,
29.889999,
30.99,
33.400002,
34.57,
35.470001,
35.32,
34.330002,
35.330002,
34.349998,
32.349998,
31.49,
30.309999,
31.559999,
32.369999,
32.049999,
31.52,
30.549999,
28.530001,
29.6,
30.809999,
31.360001,
31.700001,
32.259998,
32.630001,
30.09,
25.549999,
26.41,
27.73,
26.5,
26.629999,
26.620001,
26.67,
26.83,
27.879999,
28.24,
28.450001,
26.959999,
26.959999,
26.219999,
25.75,
25.639999,
24.030001,
22.620001,
23.040001,
24.49,
24.68,
24.75,
24.92,
24.01,
24.1,
23.91,
23.940001,
23.629999,
23.459999,
23.07,
24.49,
23.209999,
23.219999,
23.25,
23.08,
22.84,
24.73,
23.6,
23.18,
21.870001,
21.83,
22.530001,
23.610001,
23.889999,
23.940001,
24.02,
24.360001,
24.950001,
24.940001,
24.66,
24.719999,
24.01,
24.07,
23.25,
22.950001,
22.82,
22.809999,
22.959999,
22.73,
22.190001,
22.209999,
22.33,
22.75,
23.25,
23.92,
23.709999,
27.75,
26.66,
25.83,
26.700001,
26.49,
27.24,
26.49,
25.27,
24.65,
24.93,
25.139999,
25.58,
25.030001,
25.16,
25.75,
26.74,
26.389999,
26.93,
27.08,
27.66,
27.6,
27.450001,
26.870001,
26.690001,
26.440001,
27.120001,
27.91,
28.33,
27.07,
27.67,
27.549999,
26.6,
25.959999,
26.35,
28.200001,
27.969999,
26.82,
26.719999,
28.98,
29.48,
29.549999,
30.139999,
28.52,
28.76,
30.129999,
28.700001,
28.370001,
27.120001,
27.620001,
27.860001,
28.43,
28.6,
27.32,
26.5,
26.5,
26.01,
27.530001,
27.209999,
27.709999,
27.57,
27.459999,
28.110001,
28.290001,
29.129999,
29.02,
29.139999,
28.959999,
29.73,
28.809999,
28.35,
28.17,
28.639999,
27.610001,
27.58,
27.23,
27.889999,
28.690001,
28.700001,
29.290001,
28.49,
28.0,
27.639999,
28.17,
28.17,
28.77,
27.34,
27.200001,
24.75,
24.24,
23.639999,
25.059999,
23.82,
25.299999,
26.309999,
26.23,
26.1,
25.83,
24.26,
22.299999,
21.950001,
22.959999,
23.870001,
23.110001,
23.73,
24.709999,
24.629999,
24.74,
24.0,
23.07,
22.940001,
23.84,
23.610001,
22.969999,
22.879999,
24.08,
24.34,
24.82,
25.799999,
25.77,
26.01,
25.85,
25.629999,
26.379999,
25.52,
26.190001,
24.59,
24.120001,
24.389999,
23.73,
23.66,
25.370001,
26.959999,
26.99,
27.879999,
27.610001,
27.799999,
27.940001,
28.049999,
27.42,
28.34,
27.57,
27.34,
28.030001,
28.549999,
28.25,
27.98,
28.76,
29.870001,
29.370001,
28.879999,
28.709999,
32.459999,
32.310001,
31.27,
31.84,
30.879999,
31.33,
33.639999,
33.220001,
33.93,
34.939999,
33.68,
32.599998,
31.76,
32.07,
31.450001,
31.66,
32.560001,
31.75,
32.740002,
32.599998,
33.299999,
34.419998,
34.869999,
34.189999,
30.889999,
31.040001,
30.41,
29.450001,
28.530001,
28.620001,
28.0,
27.75,
27.9,
27.57,
27.77,
27.9,
28.57,
28.51,
28.73,
28.559999,
28.08,
27.709999,
27.120001,
26.91,
27.25,
27.620001,
28.23,
28.25,
22.790001,
26.6,
26.809999,
26.76,
26.6,
26.77,
27.42,
27.969999,
28.940001,
29.33,
29.57,
29.07,
29.58,
30.25,
31.15,
31.799999,
31.6,
31.93,
32.580002,
31.1,
31.49,
33.169998,
33.599998,
34.18,
34.970001,
34.5,
34.220001,
34.529999,
33.75,
33.619999,
33.810001,
33.41,
34.41,
34.040001,
33.77,
33.110001,
33.119999,
33.07,
34.740002,
36.009998,
36.09,
35.290001,
35.0,
35.32,
34.98,
34.959999,
35.150002,
34.400002,
34.080002,
37.400002,
37.939999,
37.849998,
37.330002,
37.240002,
36.580002,
38.009998,
35.0,
34.48,
33.150002,
32.459999,
33.09,
33.439999,
33.59,
32.25,
32.240002,
32.66,
33.16,
33.16,
31.940001,
31.82,
32.91,
33.490002,
33.34,
33.130001,
33.779999,
33.939999,
32.459999,
31.83,
32.470001,
30.190001,
30.059999,
32.959999,
32.25,
30.059999,
29.43,
29.18,
28.57,
27.559999,
28.77,
30.799999,
31.02,
30.280001,
29.809999,
31.690001,
30.41,
29.5,
28.15,
27.879999,
27.91,
29.219999,
28.93,
30.08,
29.120001,
29.66,
29.77,
29.389999,
29.91,
31.84,
32.09,
33.779999,
32.189999,
33.790001,
33.110001,
31.610001,
31.959999,
31.41,
31.290001,
30.4,
30.66,
31.23,
30.99,
31.49,
31.27,
31.51,
32.700001,
34.25,
35.959999,
33.349998,
32.150002,
32.27,
31.790001,
30.66,
29.84,
28.950001,
28.129999,
29.51,
27.35,
27.42,
26.25,
26.1,
27.27,
28.27,
30.25,
29.09,
29.41,
29.940001,
31.17,
29.42,
29.4,
30.299999,
30.01,
29.51,
29.110001,
29.950001,
30.73,
29.5,
28.32,
28.690001,
28.41,
28.41,
28.52,
28.139999,
27.940001,
28.549999,
29.35,
27.370001,
27.799999,
28.280001,
29.48,
30.389999,
32.540001,
31.34,
31.049999,
30.9,
30.02,
30.66,
27.66,
27.540001,
28.49,
29.280001,
29.16,
29.799999,
29.299999,
29.4,
28.889999,
29.25,
28.370001,
28.4,
28.32,
27.639999,
27.33,
28.059999,
28.82,
28.040001,
27.74,
27.85,
28.389999,
27.42,
27.52,
27.379999,
28.129999,
29.25,
28.92,
31.5,
31.15,
31.540001,
31.309999,
30.32,
31.07,
31.610001,
31.379999,
30.82,
31.84,
32.919998,
33.0,
32.470001,
32.130001,
32.27,
32.150002,
33.23,
33.689999,
33.82,
34.619999,
33.900002,
33.709999,
33.900002,
34.169998,
34.57,
35.279999,
35.259998,
33.610001,
33.810001,
34.400002,
34.59,
34.610001,
34.43,
34.0,
34.279999,
33.59,
33.689999,
33.220001,
33.869999,
35.360001,
34.77,
34.400002,
34.34,
33.68,
33.639999,
33.529999,
32.91,
33.259998,
33.900002,
34.099998,
34.380001,
34.52,
35.189999,
36.0,
36.990002,
36.98,
38.029999,
37.950001,
37.52,
37.509998,
38.299999,
37.740002,
38.130001,
39.169998,
39.48,
39.240002,
38.419998,
37.889999,
38.450001,
38.27,
37.040001,
39.279999,
38.540001,
35.16,
36.110001,
34.380001,
34.43,
35.099998,
34.830002,
34.650002,
35.580002,
36.650002,
37.689999,
38.23,
38.470001,
39.099998,
39.119999,
38.98,
36.849998,
35.290001,
35.150002,
35.080002,
35.950001,
36.009998,
36.619999,
37.529999,
37.860001,
38.16,
37.889999,
43.93,
44.34,
41.099998,
42.009998,
41.369999,
41.830002,
40.5,
41.860001,
43.59,
43.75,
43.299999,
45.59,
45.450001,
46.970001,
47.830002,
50.189999,
51.009998,
50.43,
52.0,
51.200001,
54.939999,
53.990002,
53.279999,
54.110001,
54.549999,
59.5,
55.509998,
55.790001,
69.400002,
76.760002,
87.800003,
83.239998,
84.839996,
92.25,
91.5,
89.940002,
87.589996,
87.239998,
92.730003,
97.080002,
110.330002,
104.629997,
104.949997,
97.760002,
92.589996,
94.839996,
95.370003,
97.349998,
102.040001,
100.050003,
94.470001,
97.730003,
98.18,
100.300003,
102.199997,
103.389999,
104.68,
100.650002,
99.550003,
101.489998,
102.400002,
105.720001,
109.25,
107.360001,
117.18,
117.82,
115.239998,
120.089996,
121.610001,
123.449997,
122.269997,
125.610001,
129.899994,
127.260002,
109.050003,
120.25,
119.029999,
119.68,
122.43,
122.739998,
121.699997,
124.07,
129.389999,
134.619995,
131.740005,
134.279999,
135.550003,
138.0,
144.679993,
142.149994,
134.229996,
153.479996,
153.0,
147.380005,
145.429993,
139.360001,
139.669998,
142.0,
144.899994,
149.580002,
147.860001,
157.100006,
161.839996,
164.220001,
167.009995,
166.449997,
166.059998,
169.0,
168.940002,
170.619995,
169.929993,
166.970001,
160.699997,
166.369995,
163.520004,
164.929993,
165.539993,
166.580002,
166.229996,
166.220001,
177.919998,
183.389999,
181.110001,
182.330002,
185.240005,
188.639999,
190.899994,
193.369995,
193.0,
180.949997,
173.309998,
180.979996,
183.070007,
174.729996,
168.779999,
172.929993,
178.699997,
179.720001,
183.940002,
183.559998,
182.800003,
183.399994,
172.600006,
171.539993,
164.5,
173.149994,
169.660004,
162.860001,
164.470001,
159.220001,
159.940002,
162.169998,
175.199997,
176.809998,
151.160004,
139.770004,
137.949997,
144.699997,
137.800003,
138.699997,
137.600006,
135.449997,
121.580002,
126.089996,
121.110001,
122.099998,
121.379997,
120.839996,
120.5,
126.940002,
127.279999,
124.169998,
144.699997,
138.949997,
140.479996,
137.360001,
141.600006,
142.190002,
139.649994,
147.470001,
147.649994,
147.940002,
152.460007,
147.979996,
140.720001,
143.240005,
143.550003,
151.410004,
155.5,
151.119995,
152.440002,
150.429993,
150.100006,
149.559998,
147.0,
149.360001,
151.279999,
147.529999,
145.720001,
139.339996,
161.270004,
164.130005,
170.970001,
170.009995,
176.679993,
178.559998,
181.5,
174.600006,
169.619995,
178.380005,
175.229996,
182.839996,
181.410004,
177.110001,
178.729996,
174.419998,
178.380005,
186.529999,
196.559998,
196.619995,
195.320007,
199.630005,
198.229996,
203.699997,
193.639999,
209.970001,
209.600006,
217.649994,
248.0,
253.0,
252.539993,
244.809998,
250.559998,
254.839996,
252.660004,
252.940002,
246.210007,
238.839996,
234.410004,
241.490005,
237.789993,
230.970001,
233.979996,
240.039993,
235.839996,
234.910004,
228.889999,
220.169998,
220.440002,
212.960007,
207.320007,
212.369995,
208.449997,
216.970001,
230.289993,
225.399994,
212.229996,
207.520004,
215.460007,
216.929993,
204.190002,
203.779999,
198.089996,
193.910004,
199.110001,
198.119995,
204.380005,
218.639999,
207.990005,
207.860001,
199.850006,
198.509995,
206.919998,
207.889999,
207.729996,
210.910004,
216.610001,
207.279999,
201.350006,
178.589996,
182.259995,
184.669998,
190.160004,
190.619995,
188.589996,
191.559998,
196.089996,
195.300003,
199.449997,
204.880005,
207.300003,
211.559998,
210.240005,
210.240005,
207.770004,
204.699997,
204.940002,
203.990005,
206.899994,
208.169998,
205.309998,
202.300003,
204.470001,
203.520004,
206.419998,
224.610001,
231.669998,
227.119995,
227.789993,
229.589996,
237.220001,
232.5,
236.889999,
235.600006,
239.059998,
240.059998,
239.720001,
229.429993,
229.25,
222.660004,
219.070007,
223.059998,
219.460007,
218.130005,
226.699997,
219.580002,
217.160004,
215.399994,
220.020004,
220.539993,
219.580002,
222.490005,
223.539993,
223.570007,
224.820007,
225.009995,
228.919998,
223.300003,
233.270004,
238.520004,
238.490005,
248.929993,
252.389999,
248.130005,
259.320007,
259.959991,
260.309998,
261.380005,
262.01001,
259.940002,
256.76001,
255.710007,
254.339996,
256.779999,
262.549988,
261.73999,
263.25,
263.859985,
269.700012,
284.119995,
281.190002,
286.040009,
277.390015,
282.109985,
278.480011,
281.100006,
280.309998,
279.200012,
253.860001,
260.73999,
261.380005,
263.820007,
259.320007,
250.029999,
250.410004,
252.139999,
246.949997,
246.600006,
245.259995,
242.679993,
240.240005,
251.419998,
255.210007,
260.619995,
259.570007,
259.279999,
257.01001,
236.910004,
224.589996,
227.059998,
229.699997,
226.350006,
227.479996,
230.470001,
235.339996,
231.100006,
235.289993,
235.240005,
221.669998,
242.770004,
238.100006,
238.660004,
241.699997,
242.589996,
238.929993,
230.970001,
241.220001,
240.199997,
241.929993,
251.080002,
249.100006,
251.699997,
258.679993,
253.979996,
257.700012,
247.740005,
248.710007,
242.779999,
246.720001,
248.089996,
248.440002,
244.520004,
231.639999,
231.429993,
229.300003,
228.279999,
223.710007,
214.360001,
216.889999,
209.839996,
208.880005,
207.0,
204.039993,
197.809998,
205.820007,
218.259995,
219.289993,
222.600006,
220.970001,
222.259995,
227.820007,
225.710007,
222.229996,
222.410004,
219.309998,
210.089996,
211.279999,
210.949997,
210.619995,
206.660004,
202.210007,
204.25,
192.690002,
191.869995,
193.070007,
191.929993,
196.570007,
201.619995,
201.289993,
206.550003,
205.979996,
199.369995,
205.199997,
203.600006,
210.940002,
218.360001,
218.550003,
220.990005,
217.360001,
217.479996,
216.289993,
212.800003,
202.880005,
203.770004,
204.350006,
204.460007,
211.710007,
217.110001,
207.339996,
204.110001,
203.759995,
207.190002,
203.339996,
197.330002,
199.559998,
202.440002,
200.630005,
193.880005,
190.880005,
190.320007,
193.740005,
191.070007,
188.679993,
195.699997,
194.729996,
200.710007,
195.649994,
198.080002,
199.630005,
201.720001,
194.300003,
190.410004,
185.0,
190.570007,
188.770004,
187.589996,
191.0,
203.100006,
203.25,
207.669998,
210.089996,
210.899994,
209.779999,
207.460007,
207.830002,
206.699997,
206.789993,
205.270004,
209.410004,
219.440002,
218.600006,
218.429993,
231.550003,
230.479996,
232.449997,
226.050003,
226.029999,
230.509995,
232.949997,
230.429993,
236.800003,
236.610001,
239.490005,
244.740005,
243.179993,
244.100006,
248.839996,
248.75,
247.139999,
244.350006,
245.619995,
247.729996,
247.460007,
247.429993,
251.449997,
250.800003,
249.449997,
248.350006,
248.990005,
245.919998,
249.139999,
256.290009,
256.0,
250.699997,
251.410004,
250.690002,
250.380005,
253.119995,
260.410004,
261.890015,
262.51001,
259.790009,
267.670013,
265.170013,
268.790009,
267.089996,
262.019989,
268.26001,
269.149994,
280.019989,
279.720001,
267.880005,
254.960007,
257.920013,
259.149994,
262.160004,
265.649994,
263.140015,
266.679993,
274.660004,
282.26001,
266.769989,
267.869995,
267.200012,
265.410004,
253.009995,
264.820007,
263.820007,
266.790009,
266.149994,
259.98999,
266.279999,
270.130005,
246.130005,
242.509995,
241.139999,
237.369995,
238.169998,
242.509995,
243.149994,
254.990005,
260.720001,
255.25,
242.179993,
230.770004,
218.869995,
220.029999,
224.839996,
242.990005,
248.479996,
249.059998,
238.630005,
247.690002,
245.570007,
241.929993,
248.169998,
248.910004,
248.479996,
250.240005,
253.190002,
253.570007,
262.25,
262.070007,
260.619995,
264.200012,
260.940002,
261.059998,
263.119995,
256.910004,
248.429993,
246.649994,
248.399994,
239.880005,
247.570007,
246.149994,
241.460007,
231.960007,
226.720001,
220.690002,
215.580002,
219.25,
216.880005,
221.309998,
227.009995,
228.100006,
213.029999,
210.089996,
211.720001,
209.089996,
215.259995,
210.350006,
212.960007,
211.630005,
206.929993,
213.789993,
208.350006,
231.630005,
231.770004,
232.360001,
225.330002,
216.5,
219.080002,
212.940002,
207.190002,
214.309998,
214.0,
221.070007,
221.800003,
220.009995,
217.75,
218.25,
229.639999,
231.610001,
230.259995,
237.190002,
231.990005,
232.710007,
230.380005,
231.130005,
226.720001,
224.520004,
227.070007,
217.020004,
218.580002,
221.089996,
234.509995,
233.389999,
230.460007,
232.559998,
229.949997,
229.699997,
230.570007,
228.949997,
237.190002,
238.089996,
240.009995,
223.410004,
223.429993,
219.039993,
215.649994,
211.0,
207.850006,
209.970001,
200.309998,
206.179993,
204.990005,
204.720001,
198.699997,
199.970001,
202.550003,
196.380005,
193.559998,
188.070007,
189.699997,
191.199997,
196.940002,
182.779999,
173.479996,
175.330002,
162.600006,
147.990005,
148.25,
143.669998,
150.470001,
151.039993,
155.169998,
168.679993,
166.770004,
166.580002,
177.740005,
177.210007,
179.0,
187.429993,
190.339996,
191.929993,
186.350006,
188.339996,
195.740005,
201.039993,
205.289993,
202.600006,
208.720001,
205.179993,
207.5,
215.149994,
218.339996,
221.929993,
226.380005,
232.740005,
238.320007,
234.240005,
222.580002,
227.75,
230.259995,
230.130005,
226.889999,
229.770004,
237.589996,
246.990005,
255.470001,
265.420013,
257.200012,
250.070007,
249.919998,
247.820007,
254.529999,
251.860001,
254.509995,
253.880005,
247.369995,
249.970001,
248.289993,
253.75,
251.820007,
253.740005,
251.470001,
247.710007,
240.759995,
241.800003,
232.320007,
222.559998,
211.529999,
214.929993,
208.919998,
208.690002,
208.960007,
207.279999,
207.610001,
208.289993,
204.660004,
211.169998,
215.210007,
220.279999,
216.220001,
217.910004,
219.580002,
225.119995,
223.039993,
223.229996,
219.559998,
218.960007,
218.990005,
220.679993,
232.339996,
235.520004,
229.360001,
218.789993,
217.869995,
214.960007,
217.699997,
217.929993,
215.470001,
219.699997,
219.610001,
196.660004,
196.399994,
193.149994,
198.550003,
201.789993,
210.190002,
212.279999,
216.5,
213.979996,
214.440002,
215.940002,
216.779999,
224.779999,
224.649994,
222.529999,
221.529999,
220.399994,
226.25,
225.259995,
228.360001,
220.5,
222.270004,
230.009995,
229.509995,
228.490005,
230.610001,
234.789993,
230.009995,
227.199997,
225.789993,
230.610001,
230.029999,
226.160004,
229.080002,
225.649994,
224.910004,
225.610001,
225.589996,
223.610001,
223.240005,
223.509995,
225.0,
222.929993,
224.839996,
222.619995,
220.960007,
219.990005,
215.199997,
211.339996,
212.009995,
200.770004,
197.779999,
202.830002,
201.710007,
197.360001,
194.470001,
198.300003,
196.050003,
196.410004,
200.419998,
205.399994,
206.339996,
204.639999,
205.220001,
206.429993,
207.449997,
208.990005,
205.809998,
206.270004,
200.699997,
204.029999,
213.699997,
211.410004,
208.460007,
201.0,
196.610001,
200.949997,
200.100006,
201.509995,
200.240005,
196.509995,
193.960007,
199.100006,
203.559998,
199.100006,
200.089996,
202.759995,
202.339996,
202.240005,
204.009995,
199.970001,
197.729996,
190.789993,
188.020004,
187.419998,
190.559998,
193.210007,
194.940002,
190.059998,
185.350006,
188.559998,
181.449997,
183.770004,
183.929993,
188.660004,
185.020004,
184.520004,
191.169998,
193.139999,
196.649994,
196.119995,
189.570007,
189.399994,
181.880005,
181.470001,
186.800003,
185.850006,
193.149994,
192.289993,
192.179993,
192.429993,
198.149994,
198.690002,
197.580002,
202.490005,
202.729996,
208.789993,
207.699997,
208.449997,
213.339996,
219.529999,
219.740005,
214.679993,
213.690002,
216.990005,
226.990005,
226.75,
229.009995,
231.279999,
229.869995,
229.729996,
229.589996,
237.75,
235.580002,
238.360001,
243.759995,
244.729996,
248.919998,
254.610001,
254.470001,
252.509995,
252.949997,
250.630005,
251.929993,
249.240005,
251.550003,
251.330002,
257.769989,
257.480011,
262.079987,
269.200012,
269.230011,
280.600006,
280.980011,
279.76001,
268.950012,
272.230011,
277.390015,
273.51001,
255.990005,
257.0,
246.229996,
249.990005,
250.020004,
250.479996,
251.570007,
251.210007,
248.589996,
246.869995,
244.899994,
243.690002,
246.169998,
258.0,
255.729996,
262.049988,
261.5,
261.920013,
250.679993,
255.009995,
254.779999,
263.160004,
270.220001,
277.450012,
277.380005,
277.920013,
278.299988,
298.519989,
303.700012,
295.0,
298.700012,
302.540009,
312.390015,
308.709991,
296.839996,
304.0,
301.440002,
300.25,
305.519989,
302.51001,
305.600006,
308.029999,
313.790009,
310.170013,
308.630005,
314.070007,
322.829987,
318.890015,
311.019989,
295.459991,
308.350006,
307.190002,
321.26001,
325.220001,
323.100006,
324.809998,
315.880005,
317.01001,
306.109985,
313.059998,
310.829987,
310.350006,
303.859985,
310.220001,
316.829987,
325.140015,
335.100006,
341.01001,
340.369995,
339.850006,
347.320007,
352.850006,
359.649994,
370.0,
357.320007,
359.01001,
375.950012,
380.660004,
375.339996,
371.399994,
369.799988,
372.23999,
376.399994,
382.609985,
383.450012,
377.48999,
362.369995,
371.23999,
360.75,
361.609985,
352.619995,
327.089996,
308.829987,
313.220001,
316.049988,
327.220001,
329.519989,
323.410004,
327.779999,
319.570007,
328.23999,
325.26001,
329.920013,
328.399994,
342.519989,
339.600006,
343.850006,
334.459991,
335.070007,
323.470001,
319.570007,
325.890015,
347.089996,
356.910004,
355.170013,
365.220001,
363.529999,
355.399994,
357.869995,
363.799988,
362.329987,
362.910004,
351.920013,
347.459991,
337.859985,
341.350006,
352.769989,
352.929993,
348.049988,
345.660004,
347.359985,
353.179993,
355.899994,
355.399994,
349.589996,
344.529999,
350.609985,
343.399994,
363.690002,
362.75,
366.230011,
377.640015,
379.809998,
385.0,
375.100006,
373.910004,
366.480011,
351.089996,
344.98999,
345.25,
340.970001,
339.600006,
341.100006,
341.529999,
348.140015,
355.01001,
355.329987,
356.880005,
342.940002,
355.589996,
354.600006,
355.679993,
355.570007,
350.600006,
355.75,
359.649994,
351.809998,
345.100006,
337.019989,
337.339996,
325.839996,
326.170013,
320.869995,
320.079987,
331.529999,
321.079987,
299.26001,
306.089996,
302.779999,
306.049988,
304.390015,
302.98999,
302.98999,
315.399994,
308.700012,
311.299988,
312.5,
315.049988,
308.73999,
317.809998,
312.600006,
315.549988,
316.809998,
317.549988,
307.540009,
308.850006,
306.529999,
305.200012,
303.700012,
313.26001,
311.23999,
315.130005,
328.910004,
341.029999,
339.029999,
337.890015,
343.450012,
338.869995,
331.100006,
328.980011,
331.660004,
325.200012,
317.290009,
311.640015,
315.359985,
311.350006,
320.529999,
317.25,
314.619995,
316.579987,
336.410004,
333.690002,
334.799988,
337.950012,
336.220001,
340.059998,
347.160004,
344.570007,
350.019989,
351.559998,
352.790009,
345.890015,
337.640015,
342.850006,
349.529999,
345.820007,
354.309998,
349.25,
343.75,
333.130005,
333.970001,
345.0,
315.230011,
310.420013,
315.730011,
323.660004,
322.309998,
334.070007,
335.48999,
334.769989,
333.299988,
346.170013,
352.049988,
357.420013,
350.98999,
343.059998,
330.929993,
335.119995,
333.350006,
328.200012,
332.299988,
329.100006,
327.170013,
345.51001,
341.839996,
326.630005,
325.600006,
321.350006,
313.559998,
310.549988,
316.529999,
309.100006,
301.540009,
304.179993,
279.179993,
257.779999,
266.130005,
252.479996,
267.529999,
286.940002,
305.720001,
299.299988,
289.660004,
304.700012,
300.929993,
294.079987,
300.339996,
291.209991,
287.690002,
293.350006,
300.079987,
290.23999,
283.369995,
283.459991,
280.690002,
285.480011,
294.079987,
293.899994,
299.920013,
301.149994,
284.450012,
294.089996,
302.769989,
301.970001,
306.850006,
305.019989,
301.059998,
291.970001,
284.179993,
286.480011,
284.540009,
276.820007,
284.48999,
275.01001,
279.070007,
277.850006,
278.850006,
283.76001,
291.720001,
284.730011,
291.820007,
296.73999,
291.130005,
319.5,
316.089996,
317.660004,
332.100006,
342.769989,
344.779999,
357.720001,
358.170013,
370.829987,
352.549988,
362.220001,
347.51001,
333.630005,
333.01001,
342.0,
344.5,
349.929993,
342.950012,
335.070007,
310.859985,
309.160004,
308.899994,
318.51001,
322.470001,
318.959991,
316.709991,
318.869995,
310.100006,
322.690002,
323.850006,
320.230011,
313.579987,
303.200012,
297.429993,
308.73999,
306.649994,
297.179993,
290.170013,
298.140015,
300.839996,
349.540009,
348.170013,
341.98999,
379.570007,
370.339996,
352.450012,
355.48999,
356.410004,
347.640015,
338.690002,
335.450012,
305.5,
308.440002,
321.899994,
321.640015,
320.100006,
322.820007,
319.269989,
311.859985,
305.01001,
303.149994,
301.660004,
288.950012,
280.73999,
280.950012,
263.23999,
285.5,
279.440002,
290.540009,
289.459991,
295.200012,
294.839996,
284.959991,
299.019989,
298.329987,
299.100006,
299.679993,
300.98999,
309.579987,
307.519989,
264.769989,
310.700012,
301.019989,
294.799988,
281.829987,
261.950012,
250.559998,
262.799988,
256.880005,
252.229996,
258.779999,
259.589996,
276.589996,
271.779999,
263.910004,
260.0,
260.950012,
294.140015,
288.5,
314.859985,
330.899994,
334.850006,
329.899994,
337.320007,
344.279999,
346.410004,
341.399994,
341.059998,
348.160004,
351.399994,
350.51001,
331.279999,
338.730011,
344.0,
348.440002,
354.309998,
353.470001,
347.48999,
338.190002,
325.829987,
346.0,
343.920013,
347.869995,
341.170013,
350.480011,
358.48999,
359.700012,
363.059998,
357.970001,
365.149994,
366.76001,
366.600006,
376.790009,
365.709991,
348.420013,
337.029999,
332.970001,
315.380005,
319.769989,
295.390015,
326.089996,
316.130005,
333.869995,
332.799988,
310.119995,
300.359985,
317.690002,
334.959991,
335.350006,
338.529999,
344.970001,
347.26001,
334.399994,
344.429993,
346.049988,
347.309998,
302.26001,
298.920013,
287.589996,
291.51001,
297.040009,
296.380005,
297.459991,
308.769989,
307.019989,
312.209991,
312.890015,
321.350006,
317.220001,
307.51001,
305.799988,
312.839996,
311.809998,
308.170013,
303.769989,
307.880005,
305.640015,
302.559998,
291.230011,
294.709991,
298.769989,
297.859985,
314.73999,
319.880005,
294.790009,
285.359985,
276.540009,
276.23999,
276.589996,
284.140015,
290.920013,
283.359985,
288.959991,
289.959991,
275.429993
],
"order": 1,
"uid": "d4285a",
"name": "data.0.y"
}
]
}