Grids


Jump to API response

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:

  • data only accessible from the create endpoint

read-write fields:

  • cols only writable from the col endpoint
  • rows only accessible from the row endpoint
  • metadata

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 true or false. Defaults to false.

  • 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/monstermatlab:12/col?format=api
HTTP 200 OK
Allow: GET, POST, PUT, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "cols": [
        {
            "uid": "8b5935",
            "data": [
                "0.0237375",
                "0.047075",
                "0.0589625",
                "0.0683375",
                "0.07775",
                "0.0881875",
                "0.0990125",
                "0.1100875",
                "0.1214375",
                "0.133025",
                "0.14525",
                "0.1580375",
                "0.1718",
                "0.1864625",
                "0.2015",
                "0.216825",
                "0.2324625",
                "0.2480375",
                "0.2640375",
                "0.27995",
                "0.2961875",
                "0.3127625",
                "0.3293",
                "0.346175",
                "0.3633875",
                "0.3808875",
                "0.3990125",
                "0.4180875",
                "0.43745",
                "0.4571375",
                "0.476825",
                "0.4968125",
                "0.5174375",
                "0.5383875",
                "0.55995",
                "0.582125",
                "0.6052625",
                "0.6296625",
                "0.6558875",
                "0.6843375",
                "0.71555",
                "0.746825",
                "0.7780875",
                "0.8092625",
                "0.8406",
                "0.8718375",
                "0.90315",
                "0.93435",
                "0.965625",
                "0.996825",
                "1.0281",
                "1.059375",
                "1.0906125",
                "1.12185",
                "1.153125",
                "1.1843625",
                "1.2156",
                "1.246875",
                "1.2781125",
                "1.30935",
                "1.3405875",
                "1.3719",
                "1.4031375",
                "1.4344125",
                "1.4656125",
                "1.4968875",
                "1.528025",
                "1.5593",
                "1.5906",
                "1.6218375",
                "1.65315",
                "1.6843875",
                "1.715625",
                "1.7468625",
                "1.7781",
                "1.809375",
                "1.8406125",
                "1.87185",
                "1.903125",
                "1.9344",
                "1.9656",
                "1.996875",
                "2.028075",
                "2.05935",
                "2.0905875",
                "2.121925",
                "2.1531375",
                "2.1844375",
                "2.21565",
                "2.246825",
                "2.278125",
                "2.309325",
                "2.340575",
                "2.371875",
                "2.403075",
                "2.43435",
                "2.465625",
                "2.496925",
                "2.5281375",
                "2.5594125",
                "2.5906125",
                "2.6218875",
                "2.653125",
                "2.6843625",
                "2.7156",
                "2.7468125",
                "2.7781125",
                "2.809325",
                "2.8406625",
                "2.8718625",
                "2.903175",
                "2.9344125",
                "2.9656125",
                "2.9968875",
                "3.028125",
                "3.0593625",
                "3.0906375",
                "3.121875",
                "3.153075",
                "3.1843875",
                "3.2155875",
                "3.2468625",
                "3.278175",
                "3.3093375",
                "3.34065",
                "3.37185",
                "3.4031625",
                "3.434425",
                "3.465675",
                "3.496875",
                "3.52805",
                "3.5592875",
                "3.5904875",
                "3.6218625",
                "3.6531375",
                "3.6844125",
                "3.7156125",
                "3.74685",
                "3.7781625",
                "3.8094",
                "3.8406375",
                "3.8718125",
                "3.90315",
                "3.934325",
                "3.9656625",
                "3.9969",
                "4.0281",
                "4.059375",
                "4.0906125",
                "4.12185",
                "4.1530875",
                "4.1843625",
                "4.2156",
                "4.246875",
                "4.2781125",
                "4.30935",
                "4.3405875",
                "4.3718625",
                "4.4031375",
                "4.434375",
                "4.465575",
                "4.4968875",
                "4.5280875",
                "4.5593625",
                "4.5906",
                "4.621875",
                "4.6531125",
                "4.6843875",
                "4.7156625",
                "4.746825",
                "4.7781",
                "4.8093125",
                "4.8406125",
                "4.87185",
                "4.9031625",
                "4.9344",
                "4.965675",
                "4.996875",
                "5.0281125",
                "5.0593875",
                "5.0905875",
                "5.121825",
                "5.153075",
                "5.184375",
                "5.2156125",
                "5.246925",
                "5.278125",
                "5.3093625",
                "5.3406375",
                "5.3718375",
                "5.4031125",
                "5.4343875",
                "5.4656625",
                "5.4968625",
                "5.5281",
                "5.5593375",
                "5.590575",
                "5.62185",
                "5.653125",
                "5.684425",
                "5.7156",
                "5.7469125",
                "5.77815",
                "5.809425",
                "5.8406625",
                "5.8718625",
                "5.9031",
                "5.9343125",
                "5.965675",
                "5.996825",
                "6.0281625",
                "6.059325",
                "6.0906",
                "6.121875",
                "6.1531125",
                "6.184425",
                "6.215625",
                "6.2469",
                "6.2781",
                "6.309375",
                "6.3406125",
                "6.371825",
                "6.403125",
                "6.434325",
                "6.4656",
                "6.4968375",
                "6.52815",
                "6.5593875",
                "6.590625",
                "6.621825",
                "6.6531375",
                "6.6843375",
                "6.7156125",
                "6.74685",
                "6.7780875",
                "6.8094375",
                "6.8406",
                "6.8719125",
                "6.90315",
                "6.93435",
                "6.965625",
                "6.9968625",
                "7.0281375",
                "7.059375",
                "7.09065",
                "7.1218875",
                "7.1530625",
                "7.1844",
                "7.2156",
                "7.246875",
                "7.27815",
                "7.309425",
                "7.3405625",
                "7.3719",
                "7.4031",
                "7.434375",
                "7.46565",
                "7.49685",
                "7.528125",
                "7.5593625",
                "7.590575",
                "7.6218375",
                "7.653175",
                "7.6843875",
                "7.7156625",
                "7.7469",
                "7.7781",
                "7.8094125",
                "7.84065",
                "7.8718875",
                "7.9030875",
                "7.9343625",
                "7.9656375",
                "7.9968375",
                "8.02815",
                "8.059325",
                "8.0906625",
                "8.1219",
                "8.153175",
                "8.184375",
                "8.2156125",
                "8.2468875",
                "8.2780875",
                "8.3094",
                "8.3406",
                "8.3718375",
                "8.4031125",
                "8.4343875",
                "8.465625",
                "8.496825",
                "8.5281375",
                "8.5593375",
                "8.59065",
                "8.62185",
                "8.653125",
                "8.6844",
                "8.7156375",
                "8.7469125",
                "8.7781125",
                "8.80935",
                "8.840525",
                "8.8718625",
                "8.9031",
                "8.9344125",
                "8.96565",
                "8.996925",
                "9.028125",
                "9.0594",
                "9.090675",
                "9.121875",
                "9.15315",
                "9.1843875",
                "9.215625",
                "9.2468625",
                "9.2781",
                "9.3093375",
                "9.34055",
                "9.371925",
                "9.403125",
                "9.4344",
                "9.465675",
                "9.4969125",
                "9.52815",
                "9.5592875",
                "9.5905625",
                "9.6217625",
                "9.6531375",
                "9.6844125",
                "9.715675",
                "9.7468875",
                "9.7780875",
                "9.809425",
                "9.8406375",
                "9.871875",
                "9.903075",
                "9.9343875",
                "9.9655875",
                "9.9968625",
                "10.028175",
                "10.0593375",
                "10.0906125",
                "10.12185",
                "10.153125",
                "10.1843625",
                "10.215675",
                "10.246875",
                "10.2781125",
                "10.30935",
                "10.3405625",
                "10.3718",
                "10.403075",
                "10.434375",
                "10.4656125",
                "10.49695",
                "10.5281625",
                "10.5594",
                "10.590675",
                "10.6218375",
                "10.6531125",
                "10.68435",
                "10.7155875",
                "10.746825",
                "10.778075",
                "10.809375",
                "10.8406125",
                "10.8718875",
                "10.903125",
                "10.934425",
                "10.9656375",
                "10.9968375",
                "11.02815",
                "11.059425",
                "11.0905875",
                "11.1218625",
                "11.1531",
                "11.1843375",
                "11.2156125",
                "11.2468875",
                "11.2781625",
                "11.3094375",
                "11.3406375",
                "11.371875",
                "11.40315",
                "11.434325",
                "11.4656875",
                "11.4969375",
                "11.5281",
                "11.5593375",
                "11.5906125",
                "11.621825",
                "11.6530875",
                "11.6843625",
                "11.7156375",
                "11.746875",
                "11.778075",
                "11.80935",
                "11.8406625",
                "11.8719375",
                "11.9031375",
                "11.9344125",
                "11.96555",
                "11.9968875",
                "12.0280875",
                "12.0594375",
                "12.0906",
                "12.1218375",
                "12.15315",
                "12.18435",
                "12.2156625",
                "12.2468625",
                "12.2781375",
                "12.3093375",
                "12.3406125",
                "12.37185",
                "12.4030875",
                "12.4344375",
                "12.4656375",
                "12.4968375",
                "12.5281125",
                "12.5593875",
                "12.590625",
                "12.6219",
                "12.6531375",
                "12.684375",
                "12.71565",
                "12.7468875",
                "12.778125",
                "12.809325",
                "12.8406",
                "12.8718375",
                "12.90315",
                "12.934425",
                "12.965625",
                "12.9969",
                "13.0281",
                "13.059375",
                "13.09065",
                "13.121925",
                "13.1530875",
                "13.184325",
                "13.215675",
                "13.2468375",
                "13.27815",
                "13.30935",
                "13.340625",
                "13.3718625",
                "13.4031375",
                "13.434375",
                "13.465675",
                "13.496925",
                "13.5280875",
                "13.5593625",
                "13.590575",
                "13.6218125",
                "13.653075",
                "13.6843875",
                "13.7156875",
                "13.7469375",
                "13.7782",
                "13.8093375",
                "13.84065",
                "13.87185",
                "13.9030875",
                "13.9343625",
                "13.965575",
                "13.996875",
                "14.028075",
                "14.059425",
                "14.0905875",
                "14.1218",
                "14.1531375",
                "14.1843125",
                "14.2156125",
                "14.2467875",
                "14.2781875",
                "14.3093625",
                "14.3406",
                "14.3718375",
                "14.403075",
                "14.434425",
                "14.4655875",
                "14.4968625",
                "14.5281375",
                "14.559375",
                "14.5906125",
                "14.621925",
                "14.6531625",
                "14.6844",
                "14.7157",
                "14.7468125",
                "14.77815",
                "14.80935",
                "14.8406625",
                "14.8718625",
                "14.903075",
                "14.9343375",
                "14.96565",
                "14.9968875",
                "15.028125",
                "15.0594",
                "15.0906375",
                "15.121875",
                "15.1531125",
                "15.1842875",
                "15.2156625",
                "15.246825",
                "15.2781",
                "15.309375",
                "15.340675",
                "15.37185",
                "15.403125",
                "15.4343625",
                "15.4656",
                "15.496875",
                "15.5281125",
                "15.559425",
                "15.5905875",
                "15.6218375",
                "15.6531",
                "15.6844125",
                "15.7156125",
                "15.7468875",
                "15.778125",
                "15.809325",
                "15.8406375",
                "15.871875",
                "15.90315",
                "15.9343875",
                "15.9656625",
                "15.9968625",
                "16.028075",
                "16.0594125",
                "16.0905875",
                "16.1218875",
                "16.153125",
                "16.1844",
                "16.2156375",
                "16.246875",
                "16.2781125",
                "16.30935",
                "16.3405875",
                "16.3718375",
                "16.4031",
                "16.4343375",
                "16.4656125",
                "16.49685",
                "16.5280875",
                "16.5593625",
                "16.5906375",
                "16.6219125",
                "16.6531125",
                "16.684425",
                "16.715625",
                "16.7469",
                "16.7781",
                "16.8093125",
                "16.8406125",
                "16.8718125",
                "16.9030875",
                "16.9344",
                "16.9656375",
                "16.9969125",
                "17.02815",
                "17.0593875",
                "17.0905875",
                "17.121825",
                "17.1531",
                "17.184375",
                "17.21565",
                "17.24685",
                "17.2780875",
                "17.3093625",
                "17.3406",
                "17.3718375",
                "17.40315",
                "17.4343875",
                "17.4656625",
                "17.496925",
                "17.528175",
                "17.5594125",
                "17.59055",
                "17.6217875",
                "17.6530625",
                "17.6843625",
                "17.7156375",
                "17.7469375",
                "17.77815",
                "17.809425",
                "17.840625",
                "17.8718625",
                "17.9031375",
                "17.9343375",
                "17.9656125",
                "17.99685",
                "18.028125",
                "18.0594375",
                "18.0906",
                "18.121875",
                "18.1531125",
                "18.1843875",
                "18.2155875",
                "18.2468625",
                "18.2781",
                "18.3093375",
                "18.34065",
                "18.3718125",
                "18.403125",
                "18.4343375",
                "18.4656",
                "18.4968375",
                "18.52815",
                "18.5593875",
                "18.5905625",
                "18.621925",
                "18.653075",
                "18.684375",
                "18.7156125",
                "18.746925",
                "18.7780875",
                "18.8093625",
                "18.8406375",
                "18.8718375",
                "18.9031125",
                "18.934325",
                "18.9656875",
                "18.9968625",
                "19.028175",
                "19.0594125",
                "19.09065",
                "19.12185",
                "19.1530875",
                "19.1843625",
                "19.2155375",
                "19.2468375",
                "19.2780875",
                "19.309425",
                "19.3405875",
                "19.372",
                "19.4031375",
                "19.434375",
                "19.4656125",
                "19.4968875",
                "19.5281625",
                "19.559325",
                "19.5906",
                "19.6218125",
                "19.653075",
                "19.68435",
                "19.715625",
                "19.7469",
                "19.7781",
                "19.8094125",
                "19.8405875",
                "19.871925",
                "19.903125",
                "19.9343625",
                "19.9656375",
                "19.9968125",
                "20.02815",
                "20.05935",
                "20.090625",
                "20.121825",
                "20.1531",
                "20.184375",
                "20.2156125",
                "20.2468875",
                "20.2781",
                "20.3094",
                "20.3406375",
                "20.371875",
                "20.40315",
                "20.43435",
                "20.4655875",
                "20.4968625",
                "20.528075",
                "20.5593375",
                "20.5906125",
                "20.6218875",
                "20.6531625",
                "20.6844375",
                "20.7156",
                "20.746875",
                "20.7781125",
                "20.80935",
                "20.840625",
                "20.8718625",
                "20.9031",
                "20.9343375",
                "20.9656875",
                "20.9968125",
                "21.0281625",
                "21.0593625",
                "21.0906375",
                "21.1219125",
                "21.1531125",
                "21.1843875",
                "21.215525",
                "21.2469",
                "21.2781",
                "21.3094125",
                "21.3406125",
                "21.37185",
                "21.4030875",
                "21.4344",
                "21.4656625",
                "21.496875",
                "21.528175",
                "21.55935",
                "21.5906625",
                "21.621825",
                "21.653075",
                "21.6843125",
                "21.7156125",
                "21.746925",
                "21.7781625",
                "21.8094625",
                "21.840575",
                "21.8719375",
                "21.903075",
                "21.93435",
                "21.96555",
                "21.9968625",
                "22.0281375",
                "22.0593125",
                "22.09065",
                "22.12185",
                "22.1531625",
                "22.184325",
                "22.2157",
                "22.2468375",
                "22.278175",
                "22.3093875",
                "22.3405875",
                "22.3719",
                "22.4030625",
                "22.4343125",
                "22.4656125",
                "22.4968875",
                "22.528125",
                "22.5594",
                "22.5906375",
                "22.621875",
                "22.6531875",
                "22.684325",
                "22.715625",
                "22.7468625",
                "22.7781",
                "22.8093375",
                "22.8406125",
                "22.87185",
                "22.90305",
                "22.9343625",
                "22.9656",
                "22.9969125",
                "23.0280875",
                "23.0593875",
                "23.090625",
                "23.1219625",
                "23.1531375",
                "23.1844125",
                "23.2156125",
                "23.2468875",
                "23.2781625",
                "23.309325",
                "23.3406375",
                "23.371875",
                "23.4031125",
                "23.43435",
                "23.465625",
                "23.4968625",
                "23.5281375",
                "23.559375",
                "23.59065",
                "23.62185",
                "23.6530625",
                "23.6843625",
                "23.7156375",
                "23.7469125",
                "23.778175",
                "23.80945",
                "23.8405625",
                "23.8719",
                "23.9031375",
                "23.934375",
                "23.96565",
                "23.996925",
                "24.0280875",
                "24.0593625",
                "24.090675",
                "24.1218125",
                "24.1531125",
                "24.18435",
                "24.2155875",
                "24.246825",
                "24.2781375",
                "24.3094125",
                "24.3406875",
                "24.371925",
                "24.4030625",
                "24.4344",
                "24.4655375",
                "24.4969125",
                "24.52815",
                "24.55935",
                "24.5906625",
                "24.6218375",
                "24.6532",
                "24.6843375",
                "24.715675",
                "24.7467875",
                "24.7780625",
                "24.8093375",
                "24.8405375",
                "24.871875",
                "24.90305",
                "24.9343875",
                "24.9655875",
                "24.9969375",
                "25.0281375",
                "25.0594125",
                "25.09065",
                "25.12185",
                "25.1530875",
                "25.184325",
                "25.215675",
                "25.2468375",
                "25.2781125",
                "25.30935",
                "25.340625",
                "25.3718625",
                "25.4031",
                "25.4344125",
                "25.4656125",
                "25.4968875",
                "25.528125",
                "25.559425",
                "25.5906375",
                "25.6218375",
                "25.65305",
                "25.684325",
                "25.7155625",
                "25.7469",
                "25.778175",
                "25.809375",
                "25.84065",
                "25.8718875",
                "25.9031625",
                "25.9344",
                "25.9656375",
                "25.9968375",
                "26.0280875",
                "26.0593875",
                "26.090625",
                "26.1219",
                "26.1531",
                "26.184375",
                "26.21565",
                "26.2468875",
                "26.2781625",
                "26.3094",
                "26.3406",
                "26.3718375",
                "26.4031125",
                "26.4343875",
                "26.465625",
                "26.4968625",
                "26.5281375",
                "26.559375",
                "26.59065",
                "26.62185",
                "26.653125",
                "26.6843625",
                "26.7156",
                "26.7468375",
                "26.7781125",
                "26.80935",
                "26.8405875",
                "26.8719375",
                "26.9031",
                "26.934375",
                "26.9656125",
                "26.9968875",
                "27.0280625",
                "27.0594",
                "27.0906",
                "27.121875",
                "27.15315",
                "27.18435",
                "27.215625",
                "27.2468",
                "27.278175",
                "27.30935",
                "27.34065",
                "27.371925",
                "27.4031625",
                "27.4344",
                "27.4656",
                "27.496875",
                "27.5281125",
                "27.559425",
                "27.5905875",
                "27.6219",
                "27.6531",
                "27.6843125",
                "27.715575",
                "27.7469125",
                "27.7781625",
                "27.8094",
                "27.840675",
                "27.8718125",
                "27.9031875",
                "27.934425",
                "27.965625",
                "27.9969",
                "28.028075",
                "28.0594125",
                "28.090575",
                "28.121925",
                "28.1530875",
                "28.1844",
                "28.2156375",
                "28.246875",
                "28.27815",
                "28.3093875",
                "28.3406625",
                "28.3718625",
                "28.403175",
                "28.4343375",
                "28.4656125",
                "28.496825",
                "28.5280875",
                "28.559325",
                "28.5906",
                "28.621875",
                "28.6531125",
                "28.6844125",
                "28.715625",
                "28.7469375",
                "28.7781375",
                "28.809375",
                "28.840575",
                "28.87185",
                "28.903125",
                "28.9343",
                "28.9656375",
                "28.996875",
                "29.0281125",
                "29.0593875",
                "29.0906625",
                "29.1218625",
                "29.1531375",
                "29.184375",
                "29.2156125",
                "29.24685",
                "29.2781625",
                "29.3093375",
                "29.3406375",
                "29.3718375",
                "29.403175",
                "29.43435",
                "29.465625",
                "29.4969",
                "29.5281",
                "29.559375",
                "29.5906125",
                "29.621925",
                "29.653025",
                "29.6843",
                "29.715575",
                "29.746875",
                "29.7781875",
                "29.809425",
                "29.840625",
                "29.8718625",
                "29.9031",
                "29.934375",
                "29.96565",
                "29.99685",
                "30.028125",
                "30.0593625",
                "30.0906",
                "30.1219125",
                "30.15315",
                "30.184425",
                "30.215625",
                "30.2469",
                "30.2781",
                "30.309375",
                "30.34065",
                "30.3718125",
                "30.403125",
                "30.4343375",
                "30.465575",
                "30.4968375",
                "30.52815",
                "30.5593875",
                "30.590625",
                "30.6219375",
                "30.6531",
                "30.6844125",
                "30.7155875",
                "30.7468875",
                "30.778125",
                "30.809325",
                "30.840575",
                "30.8718",
                "30.90315",
                "30.934325",
                "30.9656625",
                "30.9968625",
                "31.0281375",
                "31.0593375",
                "31.09065",
                "31.121925",
                "31.153125",
                "31.1843625",
                "31.2156",
                "31.246875",
                "31.27815",
                "31.3093875",
                "31.340625",
                "31.3718625",
                "31.4031375",
                "31.4343375",
                "31.46565",
                "31.49685",
                "31.5280875",
                "31.5594",
                "31.590675",
                "31.621875",
                "31.6530875",
                "31.6842875",
                "31.7155625",
                "31.7469",
                "31.7781375",
                "31.8094125",
                "31.8405875",
                "31.8718875",
                "31.903125",
                "31.9344",
                "31.965675",
                "31.996875",
                "32.0281875",
                "32.059325",
                "32.0906625",
                "32.1218625",
                "32.1531",
                "32.1843125",
                "32.21565",
                "32.24685",
                "32.278125",
                "32.3093625",
                "32.340675",
                "32.3719125",
                "32.4031125",
                "32.4343875",
                "32.465625",
                "32.4968625",
                "32.5281",
                "32.559375",
                "32.59055",
                "32.6218875",
                "32.653125",
                "32.6844375",
                "32.7156",
                "32.7469125",
                "32.7781125",
                "32.8093875",
                "32.840625",
                "32.871825",
                "32.9031",
                "32.9343125",
                "32.96555",
                "32.9968875",
                "33.0281625",
                "33.0594",
                "33.0907",
                "33.121875",
                "33.1531125",
                "33.18435",
                "33.2155625",
                "33.246825",
                "33.278075",
                "33.3093375",
                "33.3406125",
                "33.371925",
                "33.4031625",
                "33.4344375",
                "33.465675",
                "33.4968375",
                "33.52815",
                "33.559425",
                "33.5906625",
                "33.6218625",
                "33.653075",
                "33.6843125",
                "33.71555",
                "33.74685",
                "33.778125",
                "33.8094625",
                "33.8406375",
                "33.8719125",
                "33.9031125",
                "33.934325",
                "33.965625",
                "33.9968625",
                "34.0281",
                "34.0593125",
                "34.0907125",
                "34.121825",
                "34.1532",
                "34.1843625",
                "34.2156375",
                "34.246875",
                "34.2781125",
                "34.3093875",
                "34.340625",
                "34.3719625",
                "34.4031375",
                "34.4344125",
                "34.4656125",
                "34.49685",
                "34.528125",
                "34.5593625",
                "34.5906125",
                "34.6218",
                "34.6531125",
                "34.684425",
                "34.715625",
                "34.7469",
                "34.7781375",
                "34.809375",
                "34.8405875",
                "34.87185",
                "34.9031625",
                "34.934425",
                "34.9656375",
                "34.9968375",
                "35.02815",
                "35.05935",
                "35.090625",
                "35.1218625",
                "35.1531",
                "35.184375",
                "35.2156125",
                "35.2469125",
                "35.2780625",
                "35.3093625",
                "35.3405375",
                "35.3718375",
                "35.403075",
                "35.434425",
                "35.4655875",
                "35.4969",
                "35.5281",
                "35.5593125",
                "35.59065",
                "35.6218875",
                "35.6531625",
                "35.6843375",
                "35.7155375",
                "35.746875",
                "35.77815",
                "35.80945",
                "35.8406625",
                "35.8719375",
                "35.903075",
                "35.9344375",
                "35.9656875",
                "35.996825",
                "36.028125",
                "36.0593375",
                "36.0906375",
                "36.1218125",
                "36.15315",
                "36.18435",
                "36.215625",
                "36.2469375",
                "36.2781375",
                "36.3094125",
                "36.3406125",
                "36.3718875",
                "36.4030875",
                "36.4343625",
                "36.465575",
                "36.496875",
                "36.5280875",
                "36.5593875",
                "36.5906625",
                "36.6218625",
                "36.6531",
                "36.6843125",
                "36.7156875",
                "36.7468875",
                "36.778125",
                "36.8094",
                "36.8406375",
                "36.871875",
                "36.9031125",
                "36.9343625",
                "36.9654625",
                "36.9969375",
                "37.0281",
                "37.0594375",
                "37.09065",
                "37.1218875",
                "37.1531625",
                "37.1844",
                "37.2156375",
                "37.246875",
                "37.27815",
                "37.3093875",
                "37.3405875",
                "37.3718625",
                "37.4031",
                "37.4343375",
                "37.465575",
                "37.4968875",
                "37.528125",
                "37.559425",
                "37.590675",
                "37.621875",
                "37.65315",
                "37.6842875",
                "37.715525",
                "37.7468",
                "37.7781375",
                "37.8094125",
                "37.8407125",
                "37.8718875",
                "37.9030875",
                "37.9344",
                "37.9656",
                "37.9969125",
                "38.0280875",
                "38.0593875",
                "38.0905625",
                "38.1219",
                "38.1531",
                "38.1844125",
                "38.2156125",
                "38.246925",
                "38.278125",
                "38.3093",
                "38.3406375",
                "38.371875",
                "38.403175",
                "38.43435",
                "38.4656",
                "38.496825",
                "38.5281375",
                "38.5594125",
                "38.590575",
                "38.6218875",
                "38.6531625",
                "38.6844",
                "38.7156625",
                "38.7468375",
                "38.7781125",
                "38.80935",
                "38.84055",
                "38.8718625",
                "38.903075",
                "38.9344125",
                "38.9656125",
                "38.9968875",
                "39.028125",
                "39.0593625",
                "39.0906375",
                "39.121875",
                "39.15315",
                "39.18435",
                "39.215625",
                "39.2469",
                "39.2781375",
                "39.3093375",
                "39.3406125",
                "39.37185",
                "39.4030875",
                "39.4344",
                "39.4656375",
                "39.496875",
                "39.52815",
                "39.5592875",
                "39.5906625",
                "39.6219625",
                "39.6531375",
                "39.6843375",
                "39.7156125",
                "39.7467875",
                "39.778125",
                "39.8093375",
                "39.8407",
                "39.8718375",
                "39.9031125",
                "39.93435",
                "39.965625",
                "39.9969625",
                "40.0281375",
                "40.0594125",
                "40.09055",
                "40.1218875",
                "40.1530875",
                "40.1844",
                "40.2156",
                "40.24685",
                "40.27815",
                "40.30935",
                "40.3406625",
                "40.3719",
                "40.403175",
                "40.4343375",
                "40.465575",
                "40.4968875",
                "40.5280875",
                "40.5594",
                "40.5906",
                "40.6218375",
                "40.6531125",
                "40.6843875",
                "40.7156625",
                "40.7469",
                "40.7781375",
                "40.8093375",
                "40.8406125",
                "40.87185",
                "40.903125",
                "40.9343625",
                "40.9656",
                "40.9968375",
                "41.0281125",
                "41.0594125",
                "41.0905875",
                "41.1219625",
                "41.1531125",
                "41.1843375",
                "41.2156125",
                "41.2468875",
                "41.278125",
                "41.3093",
                "41.3406375",
                "41.3718125",
                "41.403175",
                "41.43435",
                "41.4656875",
                "41.4968625",
                "41.5281375",
                "41.559375",
                "41.590675",
                "41.6218875",
                "41.6530875",
                "41.6843625",
                "41.7155375",
                "41.7468125",
                "41.77805",
                "41.8093875",
                "41.8406625",
                "41.8719375",
                "41.9031625",
                "41.9343375",
                "41.96565",
                "41.9968875",
                "42.028125",
                "42.0593",
                "42.0905625",
                "42.121875",
                "42.1530875",
                "42.184425",
                "42.215625",
                "42.2469",
                "42.2781375",
                "42.3093375",
                "42.34065",
                "42.3718875",
                "42.403125",
                "42.434325",
                "42.465675",
                "42.4968375",
                "42.52815",
                "42.5594125",
                "42.5906",
                "42.6218625",
                "42.6531375",
                "42.6844125",
                "42.7156125",
                "42.746925",
                "42.7780625",
                "42.8094",
                "42.8406",
                "42.871875",
                "42.90315",
                "42.93435",
                "42.965625",
                "42.9968375",
                "43.0281",
                "43.0593375",
                "43.090625",
                "43.1218875",
                "43.1530875",
                "43.1844",
                "43.215675",
                "43.246875",
                "43.2782125",
                "43.30935",
                "43.3406625",
                "43.371825",
                "43.4031375",
                "43.4343375",
                "43.465675",
                "43.4968125",
                "43.5281625",
                "43.5593375",
                "43.590575",
                "43.6219125",
                "43.6531125",
                "43.684425",
                "43.7155625",
                "43.7468",
                "43.778075",
                "43.8094125",
                "43.84065",
                "43.8719125",
                "43.903125",
                "43.934325",
                "43.9656375",
                "43.996875",
                "44.0281875",
                "44.05935",
                "44.0906625",
                "44.1218375",
                "44.1530625",
                "44.184375",
                "44.2155875",
                "44.2468875",
                "44.2780875",
                "44.309425",
                "44.3406375",
                "44.3719125",
                "44.40315",
                "44.4343875",
                "44.4656",
                "44.4967875",
                "44.5281125",
                "44.559375",
                "44.59065",
                "44.6218875",
                "44.6530875",
                "44.6844",
                "44.7156375",
                "44.7469",
                "44.77815",
                "44.8093875",
                "44.8405875",
                "44.8719",
                "44.9031",
                "44.9343",
                "44.9655875",
                "44.996825",
                "45.0281625",
                "45.0594",
                "45.0907",
                "45.121875",
                "45.1531875",
                "45.1843875",
                "45.2155875",
                "45.246825",
                "45.278075",
                "45.309375",
                "45.34065",
                "45.37185",
                "45.4031375",
                "45.4343625",
                "45.4656",
                "45.496875",
                "45.5281875",
                "45.5593875",
                "45.5905875",
                "45.6219625",
                "45.6531375",
                "45.6844125",
                "45.71555",
                "45.7467875",
                "45.778025",
                "45.8093625",
                "45.8406375",
                "45.87195",
                "45.90315",
                "45.934325",
                "45.9656",
                "45.9967625",
                "46.0281",
                "46.0593125",
                "46.09065",
                "46.1218125",
                "46.153125",
                "46.184425",
                "46.2156",
                "46.246875",
                "46.278075",
                "46.3093875",
                "46.3406",
                "46.3719",
                "46.4031375",
                "46.434375",
                "46.46565",
                "46.4968625",
                "46.5281625",
                "46.5594",
                "46.590675",
                "46.6218375",
                "46.6531125",
                "46.684425",
                "46.7155875",
                "46.7469",
                "46.7780625",
                "46.80935",
                "46.8406125",
                "46.8718875",
                "46.903125",
                "46.9343625",
                "46.9656375",
                "46.9968125",
                "47.02815",
                "47.05935",
                "47.0906625",
                "47.1218625",
                "47.1531",
                "47.184375",
                "47.21565",
                "47.2468875",
                "47.2781625",
                "47.3093625",
                "47.3405375",
                "47.371875",
                "47.403075",
                "47.434425",
                "47.465625",
                "47.4969",
                "47.5281",
                "47.5593375",
                "47.5905875",
                "47.621925",
                "47.6531625",
                "47.6843",
                "47.7156125",
                "47.746775",
                "47.7780875",
                "47.80935",
                "47.840625",
                "47.8719",
                "47.903075",
                "47.9344375",
                "47.9656125",
                "47.996925",
                "48.0280625",
                "48.059425",
                "48.0906375",
                "48.121875",
                "48.15315",
                "48.18435",
                "48.215625",
                "48.2468625",
                "48.2781375",
                "48.309375",
                "48.3406125",
                "48.3718875",
                "48.403125",
                "48.4344",
                "48.4656",
                "48.4968375",
                "48.52815",
                "48.559325",
                "48.59065",
                "48.6218625",
                "48.6531125",
                "48.68435",
                "48.7156125",
                "48.746925",
                "48.778125",
                "48.8094375",
                "48.8406375",
                "48.8718375",
                "48.9030875",
                "48.934325",
                "48.965625",
                "48.9968625",
                "49.0281",
                "49.059375",
                "49.0907125",
                "49.1218625",
                "49.1531625",
                "49.184325",
                "49.215575",
                "49.24685",
                "49.27815",
                "49.3093875",
                "49.3405625",
                "49.371925",
                "49.4031",
                "49.4344",
                "49.4656125",
                "49.496925",
                "49.5280875",
                "49.559375",
                "49.5906375",
                "49.621875",
                "49.65315",
                "49.68435",
                "49.7156625",
                "49.7468",
                "49.778075",
                "49.8093125",
                "49.84065",
                "49.87195",
                "49.903125",
                "49.9344375",
                "49.9656",
                "49.996875",
                "50.0281125",
                "50.0593875",
                "50.0905625",
                "50.1218375",
                "50.1531375",
                "50.18435",
                "50.2157125",
                "50.2468125",
                "50.278125",
                "50.3093625",
                "50.3406375",
                "50.3718375",
                "50.40315",
                "50.434425",
                "50.4655875",
                "50.4969",
                "50.528075",
                "50.559375",
                "50.5906125",
                "50.6218875",
                "50.653125",
                "50.6843625",
                "50.715675",
                "50.7468375",
                "50.7782125",
                "50.8093125",
                "50.8405875",
                "50.8718625",
                "50.9031",
                "50.934375",
                "50.965625",
                "50.99685",
                "51.02805",
                "51.059375",
                "51.0906",
                "51.1219125",
                "51.1531125",
                "51.1843875",
                "51.215625",
                "51.2469375",
                "51.278175",
                "51.309375",
                "51.34055",
                "51.3718875",
                "51.4031375",
                "51.4343625",
                "51.4656",
                "51.496875",
                "51.5280875",
                "51.5593875",
                "51.5906625",
                "51.6218625",
                "51.653175",
                "51.6844125",
                "51.7156125",
                "51.746825",
                "51.7780625",
                "51.809325",
                "51.8406375",
                "51.871875",
                "51.90315",
                "51.9343875",
                "51.965525",
                "51.9968625",
                "52.0281375",
                "52.059375",
                "52.09065",
                "52.121925",
                "52.1531",
                "52.1843625",
                "52.2156375",
                "52.2468375",
                "52.2781125",
                "52.3092875",
                "52.340625",
                "52.3719",
                "52.4031375",
                "52.43445",
                "52.4656125",
                "52.4968875",
                "52.5280875",
                "52.5593625",
                "52.5906375",
                "52.6218375",
                "52.653075",
                "52.68435",
                "52.715625",
                "52.7469",
                "52.7782",
                "52.8093375",
                "52.840675",
                "52.87185",
                "52.903125",
                "52.934375",
                "52.9655375",
                "52.9968125",
                "53.02805",
                "53.0593875",
                "53.090625",
                "53.122",
                "53.1531375",
                "53.1844125",
                "53.21565",
                "53.24685",
                "53.278125",
                "53.3093",
                "53.3406125",
                "53.3718125",
                "53.4031125",
                "53.4343875",
                "53.4656625",
                "53.4968625",
                "53.5281375",
                "53.559375",
                "53.5906125",
                "53.62185",
                "53.653125",
                "53.6844625",
                "53.7156",
                "53.7468375",
                "53.778075",
                "53.80935",
                "53.8405875",
                "53.8719",
                "53.903175",
                "53.934375",
                "53.9656875",
                "53.9968875",
                "54.0281625",
                "54.0593375",
                "54.0906",
                "54.1218375",
                "54.1530875",
                "54.184425",
                "54.2155875",
                "54.2468875",
                "54.278075",
                "54.30935",
                "54.3406125",
                "54.3718875",
                "54.403125",
                "54.4344",
                "54.465675",
                "54.4968375",
                "54.52815",
                "54.5593875",
                "54.590625",
                "54.621825",
                "54.6531",
                "54.684375",
                "54.71565",
                "54.7468625",
                "54.7781625",
                "54.8093375",
                "54.8406",
                "54.871875",
                "54.9030875",
                "54.9343875",
                "54.9655875",
                "54.9969",
                "55.0281375",
                "55.059375",
                "55.0906125",
                "55.1218875",
                "55.1530875",
                "55.1843625",
                "55.2156125",
                "55.246875",
                "55.27815",
                "55.309425",
                "55.3406625",
                "55.3718",
                "55.4031375",
                "55.4343375",
                "55.4656125",
                "55.4968875",
                "55.528125",
                "55.5593625",
                "55.5906375",
                "55.621875",
                "55.653125",
                "55.6844875",
                "55.71555",
                "55.7469",
                "55.778075",
                "55.8093125",
                "55.8406125",
                "55.8718875",
                "55.9031625",
                "55.9343625",
                "55.965675",
                "55.99685",
                "56.028175",
                "56.0593875",
                "56.0906625",
                "56.1219",
                "56.1531",
                "56.184375",
                "56.21555",
                "56.2468875",
                "56.278125",
                "56.3094",
                "56.3406375",
                "56.3719125",
                "56.4032125",
                "56.43435",
                "56.4656625",
                "56.496825",
                "56.5281",
                "56.5593125",
                "56.590575",
                "56.621825",
                "56.6531",
                "56.6843625",
                "56.715575",
                "56.7469125",
                "56.7781125",
                "56.8093875",
                "56.840625",
                "56.8719",
                "56.9031375",
                "56.9343375",
                "56.9655875",
                "56.99685",
                "57.0281625",
                "57.059375",
                "57.0906375",
                "57.1219125",
                "57.1531875",
                "57.184425",
                "57.215625",
                "57.2469",
                "57.2781375",
                "57.309375",
                "57.340575",
                "57.37185",
                "57.403125",
                "57.4344",
                "57.465675",
                "57.496875",
                "57.52815",
                "57.5593125",
                "57.5905875",
                "57.6218375",
                "57.6531375",
                "57.6844125",
                "57.71565",
                "57.7469125",
                "57.7780625",
                "57.8093375",
                "57.8406",
                "57.871875",
                "57.9031875",
                "57.934425",
                "57.9656625",
                "57.9968625",
                "58.0281375",
                "58.0594125",
                "58.09065",
                "58.1218875",
                "58.153125",
                "58.1844",
                "58.2156375",
                "58.246875",
                "58.278175",
                "58.309425",
                "58.336275",
                "58.35975",
                "58.3800375",
                "58.3975125",
                "58.412575",
                "58.4254",
                "58.4363125",
                "58.4453875",
                "58.452625",
                "58.454975",
                "58.4557",
                "58.456075",
                "58.456475",
                "58.4568375",
                "58.45725",
                "58.4576875",
                "58.458075",
                "58.4584875",
                "58.4588875",
                "58.4592875",
                "58.4596875",
                "58.460125",
                "58.460525",
                "58.4609375",
                "58.461325"
            ],
            "order": 0,
            "name": "A"
        },
        {
            "uid": "b855c8",
            "data": [
                "0.006718659",
                "5.68302023",
                "11.26122876",
                "16.95041142",
                "22.60666064",
                "28.22915715",
                "33.80591752",
                "39.43825442",
                "45.08854715",
                "50.6999628",
                "56.32563949",
                "61.973632",
                "67.53677171",
                "73.18227799",
                "78.77867",
                "84.41100689",
                "90.04916609",
                "95.66451746",
                "101.3081526",
                "106.8701356",
                "112.4408872",
                "118.0555787",
                "123.6442889",
                "129.2161104",
                "134.818055",
                "140.4075109",
                "146.023911",
                "151.6054313",
                "157.1647433",
                "162.7892956",
                "168.3474186",
                "173.9035305",
                "179.515757",
                "185.120253",
                "190.7201861",
                "196.2991652",
                "201.8745983",
                "207.439587",
                "212.9990182",
                "218.5692614",
                "224.0581978",
                "228.9470652",
                "233.1731316",
                "236.8407336",
                "239.9952596",
                "242.6760235",
                "245.0528817",
                "247.0447441",
                "248.8698415",
                "250.4418717",
                "251.9297408",
                "253.2456546",
                "254.4815814",
                "255.6281572",
                "256.7210182",
                "257.7088515",
                "258.7459226",
                "259.6679532",
                "260.5893137",
                "261.5030624",
                "262.4078156",
                "263.2420524",
                "264.0393554",
                "264.8644453",
                "265.652666",
                "266.4076938",
                "267.1514769",
                "267.9229172",
                "268.6565588",
                "269.3935953",
                "270.1211387",
                "270.8004601",
                "271.4587851",
                "272.1427127",
                "272.8569574",
                "273.4761421",
                "274.1209735",
                "274.8081664",
                "275.4633771",
                "276.0823892",
                "276.7316536",
                "277.3359179",
                "277.9223853",
                "278.5112753",
                "279.1554144",
                "279.7869466",
                "280.369133",
                "280.9849879",
                "281.5392571",
                "282.0777192",
                "282.6388434",
                "283.195059",
                "283.7930958",
                "284.3808608",
                "284.8999694",
                "285.4807718",
                "286.0239048",
                "286.516567",
                "287.0520885",
                "287.5730997",
                "288.1103944",
                "288.653441",
                "289.1712738",
                "289.6911175",
                "290.2145724",
                "290.7010071",
                "291.1948805",
                "291.6764495",
                "292.201418",
                "292.7032059",
                "293.1953061",
                "293.696423",
                "294.1814521",
                "294.6988308",
                "295.1466878",
                "295.5829113",
                "296.0627075",
                "296.5052231",
                "296.9963721",
                "297.5012303",
                "297.9783879",
                "298.468931",
                "298.923578",
                "299.3721489",
                "299.7956573",
                "300.2303019",
                "300.7190506",
                "301.1858718",
                "301.6472441",
                "302.0698659",
                "302.4949744",
                "302.9299654",
                "303.3833147",
                "303.8286634",
                "304.253383",
                "304.6889577",
                "305.1112549",
                "305.5977976",
                "306.0415892",
                "306.4259579",
                "306.8362323",
                "307.2362354",
                "307.6861468",
                "308.0859768",
                "308.5502684",
                "308.9499469",
                "309.377542",
                "309.7785615",
                "310.1988694",
                "310.5936392",
                "310.9631521",
                "311.3910285",
                "311.8014761",
                "312.2578745",
                "312.6801071",
                "313.0580751",
                "313.4618191",
                "313.8129949",
                "314.2200258",
                "314.6001776",
                "315.0175015",
                "315.4303493",
                "315.8436941",
                "316.2393722",
                "316.6261413",
                "317.0278742",
                "317.3919164",
                "317.7602833",
                "318.1270283",
                "318.4949624",
                "318.9033556",
                "319.3456338",
                "319.7181742",
                "320.0895901",
                "320.4539348",
                "320.8050021",
                "321.2100871",
                "321.565544",
                "321.9426689",
                "322.3454394",
                "322.7338953",
                "323.0876876",
                "323.4656122",
                "323.8069489",
                "324.1601141",
                "324.528178",
                "324.8796133",
                "325.2818435",
                "325.6289105",
                "326.0143824",
                "326.4048706",
                "326.7537541",
                "327.0687525",
                "327.4189337",
                "327.780143",
                "328.1658088",
                "328.5544809",
                "328.89292",
                "329.2795376",
                "329.5908168",
                "329.924023",
                "330.3170196",
                "330.6586593",
                "331.0134674",
                "331.3469549",
                "331.7096779",
                "332.0606154",
                "332.4053905",
                "332.7509654",
                "333.0635852",
                "333.419129",
                "333.7684235",
                "334.1546301",
                "334.5185209",
                "334.8830822",
                "335.2153585",
                "335.5252533",
                "335.8427605",
                "336.1513366",
                "336.5067071",
                "336.841319",
                "337.2387486",
                "337.5904864",
                "337.9285363",
                "338.2467135",
                "338.5782763",
                "338.8800194",
                "339.2164475",
                "339.5489398",
                "339.8681768",
                "340.2328891",
                "340.5512608",
                "340.8858293",
                "341.1971303",
                "341.5464243",
                "341.8756085",
                "342.1580844",
                "342.5242024",
                "342.8318918",
                "343.177294",
                "343.5193659",
                "343.8734389",
                "344.1709438",
                "344.4659833",
                "344.7967242",
                "345.0915905",
                "345.4037781",
                "345.772318",
                "346.1021505",
                "346.433216",
                "346.7165568",
                "347.0032276",
                "347.265312",
                "347.6303484",
                "347.9204146",
                "348.2916791",
                "348.6107429",
                "348.9243791",
                "349.2535416",
                "349.5170099",
                "349.8148602",
                "350.1329728",
                "350.4652708",
                "350.7581695",
                "351.1109453",
                "351.4043414",
                "351.7387796",
                "352.0612819",
                "352.3438225",
                "352.6390786",
                "352.9269171",
                "353.2537223",
                "353.5318949",
                "353.8534889",
                "354.1431224",
                "354.4165595",
                "354.751387",
                "355.0213641",
                "355.3561704",
                "355.6417172",
                "355.9569534",
                "356.2460461",
                "356.564029",
                "356.8829848",
                "357.1612655",
                "357.4649329",
                "357.7425001",
                "358.0422535",
                "358.3179395",
                "358.6135843",
                "358.9428549",
                "359.2160971",
                "359.5346207",
                "359.7942831",
                "360.0930418",
                "360.3808157",
                "360.6828395",
                "360.9494216",
                "361.2464939",
                "361.548237",
                "361.8519911",
                "362.1640919",
                "362.4030168",
                "362.6952233",
                "362.9655467",
                "363.2733012",
                "363.5606854",
                "363.8735",
                "364.160452",
                "364.4483123",
                "364.7119537",
                "364.9893912",
                "365.2563192",
                "365.5591867",
                "365.8490363",
                "366.1366805",
                "366.4511382",
                "366.7226072",
                "367.0015584",
                "367.2577612",
                "367.5048817",
                "367.7702959",
                "368.0416352",
                "368.302682",
                "368.627476",
                "368.9316841",
                "369.2392655",
                "369.4833586",
                "369.7165099",
                "370.020718",
                "370.2866083",
                "370.5818639",
                "370.8569658",
                "371.1028321",
                "371.3829511",
                "371.6779906",
                "371.9161153",
                "372.1758211",
                "372.4387269",
                "372.7085096",
                "373.015788",
                "373.2963393",
                "373.5583807",
                "373.8424784",
                "374.0969509",
                "374.3399196",
                "374.6074529",
                "374.8317815",
                "375.1180418",
                "375.3796071",
                "375.6656941",
                "375.9360388",
                "376.1788343",
                "376.4552342",
                "376.6795194",
                "376.9250828",
                "377.2096562",
                "377.4825092",
                "377.7581305",
                "378.019609",
                "378.2673783",
                "378.5368581",
                "378.8169771",
                "379.0681197",
                "379.3149802",
                "379.5769783",
                "379.8229309",
                "380.0955244",
                "380.3330871",
                "380.5977662",
                "380.8516337",
                "381.0898018",
                "381.3085946",
                "381.5650998",
                "381.7967374",
                "382.0788024",
                "382.3404975",
                "382.5950997",
                "382.876473",
                "383.0915033",
                "383.3334768",
                "383.59781",
                "383.8451467",
                "384.0760491",
                "384.3900312",
                "384.5976661",
                "384.8357908",
                "385.0818303",
                "385.3136406",
                "385.5487383",
                "385.8042054",
                "386.0237334",
                "386.2733623",
                "386.559882",
                "386.8086026",
                "387.0555933",
                "387.2998592",
                "387.5205984",
                "387.7599338",
                "388.0077895",
                "388.242714",
                "388.524779",
                "388.7638554",
                "389.0341137",
                "389.2378992",
                "389.4681529",
                "389.6881565",
                "389.8853253",
                "390.1359923",
                "390.3651215",
                "390.6361149",
                "390.8964691",
                "391.1446706",
                "391.327135",
                "391.6001178",
                "391.8148886",
                "392.0450125",
                "392.2406246",
                "392.5248087",
                "392.7596898",
                "393.0087563",
                "393.2536713",
                "393.4539539",
                "393.6637943",
                "393.8748454",
                "394.1192415",
                "394.339591",
                "394.6082058",
                "394.8554127",
                "395.0973867",
                "395.3198557",
                "395.5371349",
                "395.7147987",
                "395.9513233",
                "396.1722352",
                "396.3947906",
                "396.639273",
                "396.8849662",
                "397.106224",
                "397.3293852",
                "397.5712724",
                "397.761781",
                "397.9807466",
                "398.2020912",
                "398.4282794",
                "398.6699505",
                "398.8685896",
                "399.1088338",
                "399.3285349",
                "399.5131614",
                "399.7131844",
                "399.9761771",
                "400.1921587",
                "400.4109086",
                "400.6669381",
                "400.8731023",
                "401.0867053",
                "401.2814091",
                "401.5130033",
                "401.6872938",
                "401.9419395",
                "402.1685599",
                "402.4052143",
                "402.6243964",
                "402.8172402",
                "403.0149714",
                "403.2006794",
                "403.4097412",
                "403.6095047",
                "403.857274",
                "404.0683686",
                "404.286599",
                "404.5070353",
                "404.7091779",
                "404.9577687",
                "405.0845725",
                "405.30436",
                "405.4922734",
                "405.7731276",
                "406.0262165",
                "406.2299587",
                "406.4447295",
                "406.6329892",
                "406.7938292",
                "407.0055296",
                "407.1985031",
                "407.3996506",
                "407.6303365",
                "407.8493889",
                "408.0403301",
                "408.2551872",
                "408.4479013",
                "408.6449837",
                "408.836487",
                "409.034607",
                "409.2640821",
                "409.4931246",
                "409.7021001",
                "409.9014313",
                "410.083247",
                "410.2631596",
                "410.4556576",
                "410.6478526",
                "410.8519411",
                "411.0992777",
                "411.2602912",
                "411.4591898",
                "411.6857673",
                "411.8540026",
                "412.0293746",
                "412.2117522",
                "412.427085",
                "412.6325145",
                "412.8391543",
                "413.0410803",
                "413.2629869",
                "413.4409971",
                "413.6157198",
                "413.8325663",
                "414.0000235",
                "414.1862939",
                "414.4076814",
                "414.5984061",
                "414.7988184",
                "414.9734115",
                "415.1543622",
                "415.3340153",
                "415.5305787",
                "415.7352292",
                "415.9012161",
                "416.0949682",
                "416.3343904",
                "416.4646543",
                "416.6700399",
                "416.8506014",
                "417.0087603",
                "417.2084808",
                "417.4026217",
                "417.6141924",
                "417.8052196",
                "417.9836619",
                "418.1897832",
                "418.3631654",
                "418.5291518",
                "418.6806939",
                "418.8821008",
                "419.0802209",
                "419.2897588",
                "419.4853705",
                "419.6565039",
                "419.8338648",
                "420.0361366",
                "420.1767369",
                "420.3576876",
                "420.5260961",
                "420.7154368",
                "420.9248016",
                "421.1023357",
                "421.2783126",
                "421.4609932",
                "421.6212711",
                "421.7792138",
                "421.9733552",
                "422.14025",
                "422.3478415",
                "422.5396043",
                "422.7456821",
                "422.9188912",
                "423.0762719",
                "423.2333927",
                "423.4070344",
                "423.5782971",
                "423.777542",
                "423.9801164",
                "424.1573909",
                "424.3452614",
                "424.4982303",
                "424.6559135",
                "424.8148939",
                "424.9602948",
                "425.1239026",
                "425.3263476",
                "425.5221759",
                "425.6825836",
                "425.8452835",
                "425.9948358",
                "426.1440422",
                "426.3371889",
                "426.501143",
                "426.6843856",
                "426.863347",
                "427.0435621",
                "427.206046",
                "427.3683566",
                "427.5439877",
                "427.6784464",
                "427.8720253",
                "428.0222268",
                "428.2349214",
                "428.4039787",
                "428.5705709",
                "428.7459859",
                "428.8982197",
                "429.0363111",
                "429.2057147",
                "429.3496882",
                "429.5366933",
                "429.6895325",
                "429.8588063",
                "430.0591752",
                "430.1934611",
                "430.355945",
                "430.488544",
                "430.6776253",
                "430.8049481",
                "431.007739",
                "431.1977286",
                "431.3316682",
                "431.4988229",
                "431.6581925",
                "431.8116805",
                "431.9415551",
                "432.1281709",
                "432.2604241",
                "432.4622637",
                "432.6093076",
                "432.7976971",
                "432.942319",
                "433.0609489",
                "433.2100689",
                "433.3795154",
                "433.5450696",
                "433.7075969",
                "433.8906662",
                "434.0493875",
                "434.1997183",
                "434.3486218",
                "434.5178956",
                "434.6341469",
                "434.7917003",
                "434.9633093",
                "435.1258795",
                "435.2944611",
                "435.4318174",
                "435.6204664",
                "435.7493025",
                "435.8988982",
                "436.0549379",
                "436.1921215",
                "436.3386034",
                "436.5249167",
                "436.7006342",
                "436.8106145",
                "436.9951546",
                "437.123775",
                "437.2771762",
                "437.4117651",
                "437.5488618",
                "437.731456",
                "437.8672552",
                "438.0344099",
                "438.1735394",
                "438.3388341",
                "438.4528365",
                "438.5825814",
                "438.7328258",
                "438.8887788",
                "439.0467645",
                "439.1735253",
                "439.3453938",
                "439.4805012",
                "439.6041912",
                "439.730476",
                "439.8905378",
                "440.0371061",
                "440.2020978",
                "440.3634572",
                "440.5178535",
                "440.6741958",
                "440.8099086",
                "440.9409076",
                "441.0843621",
                "441.194602",
                "441.3609347",
                "441.531592",
                "441.6917402",
                "441.8276696",
                "441.9869958",
                "442.1170865",
                "442.2392628",
                "442.389075",
                "442.5275992",
                "442.6691073",
                "442.8027444",
                "442.9447282",
                "443.0791439",
                "443.1972981",
                "443.3465474",
                "443.4786709",
                "443.5882619",
                "443.7468964",
                "443.8881021",
                "444.0330269",
                "444.198062",
                "444.3317426",
                "444.4681472",
                "444.6078825",
                "444.7231391",
                "444.8831141",
                "445.0027387",
                "445.1586487",
                "445.3336309",
                "445.4843081",
                "445.5947206",
                "445.7208327",
                "445.8222498",
                "445.9490966",
                "446.11344",
                "446.2385573",
                "446.3974079",
                "446.5388731",
                "446.6831491",
                "446.7782519",
                "446.9087753",
                "447.0225612",
                "447.1485434",
                "447.2950253",
                "447.4214398",
                "447.5827124",
                "447.7050185",
                "447.8491214",
                "447.9646375",
                "448.0683035",
                "448.2153044",
                "448.3345831",
                "448.4626845",
                "448.6211028",
                "448.7731635",
                "448.8954261",
                "449.0490005",
                "449.1489907",
                "449.265761",
                "449.4020792",
                "449.5314348",
                "449.6764459",
                "449.8166569",
                "449.9689771",
                "450.0999761",
                "450.2051558",
                "450.3064866",
                "450.4259814",
                "450.569652",
                "450.7059702",
                "450.8443646",
                "450.9866947",
                "451.1180395",
                "451.2373616",
                "451.3679713",
                "451.45996",
                "451.5906565",
                "451.7102376",
                "451.858882",
                "451.9841721",
                "452.1085973",
                "452.2586252",
                "452.3469381",
                "452.4663035",
                "452.5887823",
                "452.7074556",
                "452.8461095",
                "452.9723078",
                "453.1217738",
                "453.2383275",
                "453.3322629",
                "453.458937",
                "453.5762692",
                "453.6896229",
                "453.8028901",
                "453.951794",
                "454.077949",
                "454.1887509",
                "454.3114896",
                "454.4389851",
                "454.5390184",
                "454.6524588",
                "454.7845388",
                "454.8918806",
                "455.0440714",
                "455.1739026",
                "455.3010522",
                "455.4071837",
                "455.5399125",
                "455.5913345",
                "455.7389409",
                "455.8849901",
                "455.9926782",
                "456.1491501",
                "456.2305003",
                "456.3537577",
                "456.4844108",
                "456.5478991",
                "456.7035925",
                "456.7921649",
                "456.9366575",
                "457.0878102",
                "457.2112407",
                "457.3213504",
                "457.426314",
                "457.5343913",
                "457.6000855",
                "457.7434532",
                "457.8587532",
                "457.9815349",
                "458.1308276",
                "458.2561611",
                "458.3941232",
                "458.4817873",
                "458.5847611",
                "458.6647274",
                "458.7842222",
                "458.8976621",
                "459.0247254",
                "459.1591411",
                "459.3240465",
                "459.4211821",
                "459.5293462",
                "459.614199",
                "459.731402",
                "459.8603249",
                "459.9722512",
                "460.1024287",
                "460.2249508",
                "460.3247675",
                "460.4232441",
                "460.5204226",
                "460.6166069",
                "460.7040548",
                "460.8188788",
                "460.9357788",
                "461.0726161",
                "461.1578152",
                "461.3050322",
                "461.3921343",
                "461.4652668",
                "461.5918978",
                "461.7022241",
                "461.8143664",
                "461.9423814",
                "462.0676715",
                "462.1610445",
                "462.2654457",
                "462.4034942",
                "462.4662043",
                "462.588986",
                "462.6963712",
                "462.8353709",
                "462.9547794",
                "463.0533423",
                "463.1549322",
                "463.2379258",
                "463.3405104",
                "463.4755314",
                "463.5719748",
                "463.692032",
                "463.7969093",
                "463.9205559",
                "464.037153",
                "464.1498149",
                "464.2545619",
                "464.3318466",
                "464.4286793",
                "464.5305291",
                "464.6385631",
                "464.7889373",
                "464.8821806",
                "464.9969181",
                "465.0764947",
                "465.186994",
                "465.2679116",
                "465.3601167",
                "465.455825",
                "465.5779579",
                "465.6715904",
                "465.8212295",
                "465.9203978",
                "466.0017041",
                "466.0925254",
                "466.1862877",
                "466.2784929",
                "466.3943548",
                "466.5519947",
                "466.6379723",
                "466.746958",
                "466.8456936",
                "466.9308064",
                "467.0150538",
                "467.1300074",
                "467.2284406",
                "467.3524331",
                "467.4634949",
                "467.5765456",
                "467.6801682",
                "467.7487166",
                "467.8433438",
                "467.9432043",
                "468.0615312",
                "468.1444381",
                "468.2922176",
                "468.3826925",
                "468.4681511",
                "468.5877327",
                "468.6664878",
                "468.7164824",
                "468.8367128",
                "468.9434062",
                "469.0533432",
                "469.1696808",
                "469.2720063",
                "469.3684496",
                "469.4775217",
                "469.5410103",
                "469.650039",
                "469.7208796",
                "469.8168908",
                "469.9368612",
                "470.0288073",
                "470.1283215",
                "470.2091522",
                "470.3096181",
                "470.4250044",
                "470.5131007",
                "470.5994243",
                "470.7306828",
                "470.8238393",
                "470.9448482",
                "471.044016",
                "471.1404165",
                "471.2231936",
                "471.3026837",
                "471.4206219",
                "471.5095401",
                "471.6178341",
                "471.7164833",
                "471.8025903",
                "471.9417632",
                "472.0052085",
                "472.0754867",
                "472.1529875",
                "472.2498636",
                "472.3538755",
                "472.4714677",
                "472.574182",
                "472.6656521",
                "472.7410772",
                "472.8774388",
                "472.9159731",
                "473.035987",
                "473.1102872",
                "473.2356207",
                "473.3313289",
                "473.4367248",
                "473.531871",
                "473.6177189",
                "473.7059454",
                "473.793912",
                "473.8757378",
                "473.9759442",
                "474.095439",
                "474.1876876",
                "474.2893638",
                "474.3511656",
                "474.4271528",
                "474.503616",
                "474.5777865",
                "474.6737113",
                "474.7715386",
                "474.8909904",
                "475.0039114",
                "475.0989278",
                "475.1734447",
                "475.2486962",
                "475.3189315",
                "475.4195271",
                "475.5014823",
                "475.6086513",
                "475.7046625",
                "475.7746382",
                "475.9003609",
                "475.9600003",
                "476.0532865",
                "476.1368421",
                "476.2248955",
                "476.3200417",
                "476.4325304",
                "476.5406512",
                "476.6226927",
                "476.7165418",
                "476.7848736",
                "476.860731",
                "476.954104",
                "477.0265017",
                "477.1362655",
                "477.23911",
                "477.3374564",
                "477.4250341",
                "477.5192291",
                "477.5877775",
                "477.6470275",
                "477.7482715",
                "477.8550083",
                "477.9232972",
                "478.0523064",
                "478.1494854",
                "478.2207587",
                "478.2994269",
                "478.3535305",
                "478.4658465",
                "478.5381574",
                "478.6538897",
                "478.7319525",
                "478.8071181",
                "478.8946958",
                "478.9607793",
                "479.0492648",
                "479.1188947",
                "479.2138244",
                "479.2920174",
                "479.4159235",
                "479.4991763",
                "479.5877487",
                "479.670915",
                "479.7562005",
                "479.8102611",
                "479.8947246",
                "479.9908226",
                "480.0652526",
                "480.1629072",
                "480.2832235",
                "480.360595",
                "480.4444966",
                "480.5200944",
                "480.5776576",
                "480.6776474",
                "480.7380224",
                "480.8643071",
                "480.9481223",
                "481.0257529",
                "481.0918792",
                "481.1884958",
                "481.2439833",
                "481.3354533",
                "481.4003255",
                "481.5010939",
                "481.5971484",
                "481.6937215",
                "481.7987285",
                "481.8357057",
                "481.9051624",
                "481.9758299",
                "482.0749982",
                "482.1408221",
                "482.2610087",
                "482.3291248",
                "482.4224115",
                "482.4829587",
                "482.5573024",
                "482.6156011",
                "482.6855769",
                "482.7655427",
                "482.8545907",
                "482.9301456",
                "483.0172477",
                "483.1122637",
                "483.1876455",
                "483.2508313",
                "483.295939",
                "483.3866738",
                "483.435847",
                "483.5356207",
                "483.6416658",
                "483.7415688",
                "483.8011652",
                "483.8930674",
                "483.9639949",
                "484.0285212",
                "484.1166609",
                "484.1978813",
                "484.2862806",
                "484.3670249",
                "484.4594896",
                "484.5343524",
                "484.613021",
                "484.6642269",
                "484.7272396",
                "484.826062",
                "484.9322364",
                "485.0287231",
                "485.1348541",
                "485.2027971",
                "485.268621",
                "485.3226382",
                "485.3760066",
                "485.4653571",
                "485.5377983",
                "485.6536603",
                "485.7373023",
                "485.8101322",
                "485.8967153",
                "485.9882283",
                "485.9900449",
                "486.0864453",
                "486.1464739",
                "486.2502263",
                "486.3206343",
                "486.4305282",
                "486.4729115",
                "486.5656791",
                "486.6098355",
                "486.6632903",
                "486.7655724",
                "486.8347261",
                "486.9398195",
                "487.0233751",
                "487.1022165",
                "487.1580933",
                "487.21237",
                "487.2806155",
                "487.3937096",
                "487.4227294",
                "487.5181782",
                "487.6130215",
                "487.6993884",
                "487.7392633",
                "487.8282249",
                "487.882069",
                "487.9204731",
                "487.9898868",
                "488.0585215",
                "488.178449",
                "488.2712166",
                "488.348155",
                "488.4248773",
                "488.4674337",
                "488.5388363",
                "488.5933726",
                "488.6727764",
                "488.727399",
                "488.8348705",
                "488.8866389",
                "489.0047931",
                "489.0539663",
                "489.1501935",
                "489.1646818",
                "489.251178",
                "489.3144935",
                "489.3887943",
                "489.4923305",
                "489.5552997",
                "489.6226807",
                "489.6736701",
                "489.7361207",
                "489.8316992",
                "489.877802",
                "489.9358413",
                "490.0160666",
                "490.1169647",
                "490.167176",
                "490.2793617",
                "490.3031483",
                "490.3488184",
                "490.4317253",
                "490.5313258",
                "490.592133",
                "490.685506",
                "490.7861012",
                "490.8359232",
                "490.891238",
                "490.9475904",
                "491.0017369",
                "491.0911312",
                "491.1478729",
                "491.2243791",
                "491.3219469",
                "491.3929173",
                "491.4449018",
                "491.5066602",
                "491.5637048",
                "491.645098",
                "491.7162411",
                "491.7714261",
                "491.8698588",
                "491.9107288",
                "491.9868023",
                "492.0649085",
                "492.1103191",
                "492.1596221",
                "492.2388532",
                "492.2907508",
                "492.3694195",
                "492.4561753",
                "492.4943637",
                "492.6254491",
                "492.655809",
                "492.7192543",
                "492.767606",
                "492.8452795",
                "492.9059569",
                "492.9995895",
                "493.0667973",
                "493.1355618",
                "493.1938606",
                "493.2454558",
                "493.301635",
                "493.370443",
                "493.4308174",
                "493.4985443",
                "493.5879816",
                "493.6774623",
                "493.7318688",
                "493.7903403",
                "493.8610512",
                "493.922896",
                "493.9712042",
                "494.025178",
                "494.0903531",
                "494.2228224",
                "494.2708282",
                "494.3495399",
                "494.3835765",
                "494.4205966",
                "494.4843878",
                "494.5612832",
                "494.6327727",
                "494.7065973",
                "494.787169",
                "494.859696",
                "494.9003928",
                "494.9694168",
                "495.0103298",
                "495.1101469",
                "495.1287865",
                "495.2307661",
                "495.2865994",
                "495.3567049",
                "495.4388766",
                "495.5248109",
                "495.5551279",
                "495.5906348",
                "495.6519171",
                "495.7353864",
                "495.8226612",
                "495.8981728",
                "495.9430214",
                "496.0051257",
                "496.0437029",
                "496.1001851",
                "496.1612518",
                "496.2248268",
                "496.3163832",
                "496.3856238",
                "496.4293476",
                "496.5087514",
                "496.5503131",
                "496.6130228",
                "496.647535",
                "496.707607",
                "496.7528879",
                "496.8221714",
                "496.9084516",
                "496.9680475",
                "497.0157504",
                "497.06008",
                "497.0934244",
                "497.1740824",
                "497.2334188",
                "497.2858789",
                "497.3865175",
                "497.431193",
                "497.5132783",
                "497.5712742",
                "497.6192796",
                "497.6468287",
                "497.7027054",
                "497.7491107",
                "497.8809317",
                "497.9455878",
                "497.9759048",
                "498.0584657",
                "498.1059955",
                "498.1527466",
                "498.2096181",
                "498.2520013",
                "498.3377628",
                "498.3829569",
                "498.4966568",
                "498.5414616",
                "498.6049937",
                "498.6450847",
                "498.6754017",
                "498.7254832",
                "498.7856845",
                "498.8769384",
                "498.9342855",
                "499.0427087",
                "499.0516182",
                "499.1277351",
                "499.1622903",
                "499.2257356",
                "499.277244",
                "499.3512852",
                "499.428267",
                "499.4719044",
                "499.5510053",
                "499.5989243",
                "499.6442056",
                "499.684037",
                "499.7394382",
                "499.7833351",
                "499.8773135",
                "499.9361743",
                "499.9930891",
                "500.0599073",
                "500.1101619",
                "500.1645684",
                "500.1721365",
                "500.2401228",
                "500.3151153",
                "500.4031687",
                "500.4511311",
                "500.5227932",
                "500.5662579",
                "500.6189775",
                "500.6468725",
                "500.7167185",
                "500.7432729",
                "500.8110862",
                "500.8943823",
                "500.9562705",
                "501.0054437",
                "501.0399125",
                "501.1082014",
                "501.1301283",
                "501.1867403",
                "501.2270044",
                "501.3288538",
                "501.3696803",
                "501.4246054",
                "501.4720922",
                "501.519838",
                "501.5505877",
                "501.5786124",
                "501.666536",
                "501.7218938",
                "501.7914373",
                "501.8735222",
                "501.9614892",
                "501.9814698",
                "502.0106623",
                "502.0484615",
                "502.0962941",
                "502.1751789",
                "502.2299308",
                "502.3027612",
                "502.3431117",
                "502.415509",
                "502.4633851",
                "502.4855282",
                "502.5460324",
                "502.572241",
                "502.6500443",
                "502.7015097",
                "502.7686742",
                "502.8345415",
                "502.8818551",
                "502.9034791",
                "502.9296443",
                "503.0103023",
                "503.0357323",
                "503.1068325",
                "503.1941073",
                "503.253833",
                "503.2753273",
                "503.336091",
                "503.3813719",
                "503.3907136",
                "503.4423522",
                "503.4867248",
                "503.598651",
                "503.6377044",
                "503.7209571",
                "503.7358346",
                "503.7756231",
                "503.81792",
                "503.8298564",
                "503.9113359",
                "503.9792355",
                "504.0329069",
                "504.0790092",
                "504.1375675",
                "504.193617",
                "504.2183983",
                "504.2505753",
                "504.3080087",
                "504.3374608",
                "504.4053174",
                "504.4746444",
                "504.5372677",
                "504.579608",
                "504.6093625",
                "504.6362199",
                "504.6906259",
                "504.7201644",
                "504.7965842",
                "504.8714035",
                "504.9287506",
                "504.9735992",
                "505.0090193",
                "505.0115277",
                "505.0909749",
                "505.1286443",
                "505.170768",
                "505.2329587",
                "505.2899599",
                "505.3256829",
                "505.3837222",
                "505.4274464",
                "505.4350578",
                "505.4776576",
                "505.5314583",
                "505.5712897",
                "505.6266908",
                "505.702678",
                "505.7278051",
                "505.7747728",
                "505.7979106",
                "505.8325526",
                "505.8708703",
                "505.9503175",
                "506.0016962",
                "506.0618979",
                "506.095718",
                "506.1559627",
                "506.2036222",
                "506.2342421",
                "506.2719978",
                "506.2961303",
                "506.3513149",
                "506.4210311",
                "506.4907473",
                "506.5271191",
                "506.5636641",
                "506.5862394",
                "506.6160374",
                "506.6611885",
                "506.6982959",
                "506.7769211",
                "506.8459452",
                "506.8963296",
                "506.9498707",
                "506.9820907",
                "507.0361074",
                "507.0607159",
                "507.1225178",
                "507.1481205",
                "507.2241944",
                "507.2754867",
                "507.333526",
                "507.4067882",
                "507.4259039",
                "507.4538857",
                "507.5000314",
                "507.5489885",
                "507.6107035",
                "507.6623421",
                "507.70572",
                "507.7461139",
                "507.7923465",
                "507.8216688",
                "507.8287612",
                "507.8821296",
                "507.9321248",
                "507.9938832",
                "508.0530898",
                "508.1058963",
                "508.1367753",
                "508.1968039",
                "508.2058861",
                "508.2605516",
                "508.2935502",
                "508.3507675",
                "508.4214354",
                "508.4629967",
                "508.5090995",
                "508.5132079",
                "508.5749663",
                "508.5877248",
                "508.6387141",
                "508.6726209",
                "508.7523272",
                "508.7940187",
                "508.8530092",
                "508.8972954",
                "508.909708",
                "508.9397655",
                "508.9808511",
                "509.0278618",
                "509.0728402",
                "509.1266408",
                "509.174733",
                "509.2076447",
                "509.24073",
                "509.2887788",
                "509.2800858",
                "509.3306859",
                "509.3882061",
                "509.4365144",
                "509.5160914",
                "509.5431215",
                "509.5805743",
                "509.6006417",
                "509.6472202",
                "509.6505934",
                "509.7218663",
                "509.7398146",
                "509.7818086",
                "509.8213375",
                "509.8727596",
                "509.9284202",
                "509.9458057",
                "509.9733982",
                "510.0017692",
                "510.0389626",
                "510.0706635",
                "510.1548679",
                "510.1857903",
                "510.2176644",
                "510.2476351",
                "510.2780389",
                "510.2739734",
                "510.3057178",
                "510.3603399",
                "510.427418",
                "510.4641362",
                "510.4774566",
                "510.5407716",
                "510.5568599",
                "510.5906804",
                "510.6177969",
                "510.6595747",
                "510.6889404",
                "510.7274743",
                "510.8140573",
                "510.8341677",
                "510.8787568",
                "510.8537161",
                "510.8971373",
                "510.9076035",
                "510.94497",
                "510.9891694",
                "511.0123505",
                "511.0844888",
                "511.1205143",
                "511.140149",
                "511.1697308",
                "511.1816243",
                "511.2128492",
                "511.260336",
                "511.3054007",
                "511.3325171",
                "511.3790522",
                "511.396741",
                "511.4233818",
                "511.4593209",
                "511.4770097",
                "511.508235",
                "511.5438283",
                "511.6063219",
                "511.6571819",
                "511.6756054",
                "511.7087337",
                "511.7122367",
                "511.7268981",
                "511.776244",
                "511.8177193",
                "511.871477",
                "511.9125193",
                "511.9127358",
                "511.9776514",
                "511.997632",
                "511.9799432",
                "512.0260894",
                "512.0418748",
                "512.0813604",
                "512.1576504",
                "512.1943247",
                "512.2205767",
                "512.2392168",
                "512.2527967",
                "512.2550455",
                "512.294834",
                "512.3158956",
                "512.3834928",
                "512.4116473",
                "512.4563227",
                "512.4658372",
                "512.4962839",
                "512.5365051",
                "512.5410892",
                "512.5705413",
                "512.5893111",
                "512.650767",
                "512.6904687",
                "512.734971",
                "512.7418478",
                "512.7642934",
                "512.7667154",
                "512.7862638",
                "512.8274357",
                "512.870857",
                "512.9234035",
                "512.9315344",
                "512.9838214",
                "513.0064835",
                "512.9981364",
                "513.0192419",
                "513.0141384",
                "513.0677663",
                "513.1057816",
                "513.1431046",
                "513.1847097",
                "513.2206489",
                "513.2145077",
                "513.2175781",
                "513.2347044",
                "513.2700816",
                "513.3042045",
                "513.3628492",
                "513.3900954",
                "513.4122819",
                "513.4115467",
                "513.4305327",
                "513.4334303",
                "513.4714022",
                "513.4724832",
                "513.5164669",
                "513.563564",
                "513.5915024",
                "513.6189651",
                "513.621733",
                "513.6343617",
                "513.6335831",
                "513.6818914",
                "513.6904112",
                "513.7391087",
                "513.7615977",
                "513.7788972",
                "513.8052351",
                "513.809863",
                "513.7985319",
                "513.8115928",
                "513.8333466",
                "513.9151725",
                "513.9231298",
                "513.9626158",
                "513.967416",
                "513.981991",
                "513.974725",
                "514.0077669",
                "514.0397703",
                "514.0580645",
                "514.100837",
                "514.1417499",
                "514.1344409",
                "514.1574489",
                "514.1491887",
                "514.156065",
                "514.1865552",
                "514.1844356",
                "514.2256949",
                "514.2479673",
                "514.2794091",
                "514.2862855",
                "514.3232193",
                "514.3004278",
                "514.3127535",
                "514.3309175",
                "514.3328639",
                "514.3944926",
                "514.4108838",
                "514.4152947",
                "514.4093701",
                "514.4247232",
                "514.4334591",
                "514.428918",
                "514.4584135",
                "514.4987206",
                "514.5081057",
                "514.5395905",
                "514.5693885",
                "514.5566301",
                "514.5519592",
                "514.5645879",
                "514.5545544",
                "514.5886769",
                "514.6134152",
                "514.6547174",
                "514.6735301",
                "514.6547603",
                "514.6781576",
                "514.6641021",
                "514.6695515",
                "514.6735735",
                "514.6926892",
                "514.7287581",
                "514.7619728",
                "514.7675519",
                "514.7901707",
                "514.7732604",
                "514.7441113",
                "514.7634431",
                "514.7755527",
                "514.7899975",
                "514.8028423",
                "514.8267152",
                "514.8418956",
                "514.8523184",
                "514.840036",
                "514.8307373",
                "514.850329",
                "514.8620923",
                "514.8995456",
                "514.902054",
                "514.9008428",
                "514.8975129",
                "514.893923",
                "514.887955",
                "514.8667632",
                "514.8979451",
                "514.9180125",
                "514.9467724",
                "514.9579303",
                "514.9612607",
                "514.928565",
                "514.934533",
                "514.9389014",
                "514.9241103",
                "514.9446967",
                "514.9311168",
                "514.9720727",
                "514.9720293",
                "514.9589684",
                "514.9442641",
                "514.880689",
                "514.9210399",
                "514.9282621",
                "514.9328466",
                "514.9472915",
                "514.9497135",
                "514.9316354",
                "514.9243698",
                "514.9114387",
                "514.8862248",
                "514.8978154",
                "514.8520155",
                "514.8869604",
                "514.8819432",
                "514.9063785",
                "514.8770562",
                "514.8546536",
                "514.8286182",
                "514.8053941",
                "514.7873594",
                "514.7968309",
                "514.796485",
                "514.7746014",
                "514.7637894",
                "514.7573453",
                "514.7185515",
                "514.7041501",
                "514.6742653",
                "514.6483162",
                "514.6664807",
                "514.6574853",
                "514.6487923",
                "514.6260868",
                "514.5806328",
                "514.5673558",
                "514.51935",
                "514.4825025",
                "514.4432331",
                "514.4819835",
                "514.4347133",
                "514.4153381",
                "514.3753335",
                "514.3280199",
                "514.2672995",
                "514.2478379",
                "514.2026434",
                "514.1837873",
                "514.1600007",
                "514.1016585",
                "514.0677087",
                "513.9850614",
                "513.9397805",
                "513.884812",
                "513.8132363",
                "513.75031",
                "513.7131596",
                "513.649066",
                "513.5892969",
                "513.5249433",
                "513.4347709",
                "513.3292882",
                "513.24383",
                "513.1633882",
                "513.0768051",
                "512.9961041",
                "512.927988",
                "512.8105259",
                "512.6950532",
                "512.5717091",
                "512.4598258",
                "512.3437043",
                "512.2028879",
                "512.0812306",
                "511.9645901",
                "511.8240766",
                "511.6414829",
                "511.4654625",
                "511.3146127",
                "511.1426144",
                "510.9773197",
                "510.8126304",
                "510.6393346",
                "510.4136654",
                "510.1941374",
                "509.9724035",
                "509.7153359",
                "509.440234",
                "509.1870153",
                "508.933235",
                "508.6522511",
                "508.3643044",
                "507.9861415",
                "507.6712082",
                "507.3157508",
                "506.9047196",
                "506.5273352",
                "506.1301004",
                "505.6984398",
                "505.2951498",
                "504.8536288",
                "504.3251351",
                "503.8334029",
                "503.2898589",
                "502.7066996",
                "502.1095711",
                "501.4631831",
                "500.855286",
                "500.1971342",
                "499.4909337",
                "498.6931334",
                "497.8769526",
                "496.9991431",
                "496.1559755",
                "495.1786084",
                "494.1454084",
                "493.0621264",
                "491.8918292",
                "490.6000474",
                "489.2045566",
                "487.718028",
                "486.0653399",
                "484.2571744",
                "482.3763521",
                "480.1802931",
                "477.7809242",
                "475.0774335",
                "472.1302391",
                "468.7681644",
                "465.0556491",
                "460.8711227",
                "456.0806452",
                "450.5532178",
                "445.0169244",
                "439.4110875",
                "433.8214261",
                "428.2076752",
                "422.6558989",
                "417.0511869",
                "411.4616548",
                "405.8697012",
                "400.274806",
                "393.2301872",
                "383.5901986",
                "377.2288153",
                "369.9994398",
                "361.964804",
                "353.1906879",
                "343.7680214",
                "333.7998003",
                "323.3985992",
                "312.6860321",
                "301.7611601",
                "290.681437",
                "279.4813112",
                "268.1912942",
                "256.8441892",
                "245.4751143"
            ],
            "order": 1,
            "name": "B"
        }
    ]
}