Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots?cursor=cD0yMDI0LTAzLTI3KzA0JTNBNDclM0EzMi42MTI5NTYlMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTAzLTI3KzAyJTNBNTAlM0ExOS42MjY0ODQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wMy0yNyswNCUzQTI0JTNBNDkuMjE1NzAxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-03-27T04:24:49.215701Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~swifty2205/6.embed",
            "fid": "swifty2205:6",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/swifty2205/6/9_R529H4UHW6M01AUTU33VU7NG5K7HG1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/swifty2205/6/2_UI15PB9P03RO1REG4PZ2SYWSLKZ3NV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/swifty2205/6/8_A1W6VYYORNTAFEZ3BQY0RRSLDA4DD1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/swifty2205/6/9_R529H4UHW6M01AUTU33VU7NG5K7HG1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/swifty2205:6",
                "plots": "https://api.plotly.com/v2/plots/swifty2205:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=swifty2205"
            },
            "owner": "swifty2205",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~swifty2205/6/",
            "world_readable": true,
            "date_modified": "2024-03-27T04:24:49.553Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~swifty2205/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "type": "bar",
                        "xsrc": "swifty2205:7:7aaef9",
                        "ysrc": "swifty2205:7:c1f9b6"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~swifty2205",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 02:23:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "swifty2205",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T04:22:42.631374Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~a1120960/3.embed",
            "fid": "a1120960:3",
            "filename": "my-plot-test",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/a1120960/3/9_YJR12TOHZBZQL1QAJM79RJ6CNQQ98X.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/a1120960/3/2_Y2U0P04LGC3ZCWYGBHIYJN6YZIN4Y0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/a1120960/3/8_FR06SSSZ9H41O3NTDPL1O3WYI85WU5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/a1120960/3/9_YJR12TOHZBZQL1QAJM79RJ6CNQQ98X.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/a1120960:3",
                "plots": "https://api.plotly.com/v2/plots/a1120960:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=a1120960"
            },
            "owner": "a1120960",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~a1120960/3/",
            "world_readable": true,
            "date_modified": "2024-03-27T04:22:42.644Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~a1120960/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers+text",
                        "name": "MICROWAVE, COMMERCIAL",
                        "type": "scatter",
                        "xsrc": "a1120960:2:959566",
                        "ysrc": "a1120960:2:4e17a9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "DarkSlateGrey",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "rgb(76,114,176)",
                            "symbol": "circle",
                            "opacity": 1.0
                        },
                        "textsrc": "a1120960:2:a578bf",
                        "showlegend": true,
                        "legendgroup": "MICROWAVE, COMMERCIAL",
                        "orientation": "v",
                        "hovertextsrc": "a1120960:2:cc304b",
                        "textposition": "top center",
                        "customdatasrc": "a1120960:2:81b864",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CATEGORY=MICROWAVE<br>TYPE=COMMERCIAL<br>SWAP=%{x}<br>TAU_1s=%{y}<br>GROUP=%{customdata[1]}<br>ATOM=%{customdata[0]}<extra></extra>"
                    },
                    {
                        "mode": "markers+text",
                        "name": "MICROWAVE, RESEARCH",
                        "type": "scatter",
                        "xsrc": "a1120960:2:881990",
                        "ysrc": "a1120960:2:8a310c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "DarkSlateGrey",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "rgb(76,114,176)",
                            "symbol": "diamond",
                            "opacity": 1.0
                        },
                        "textsrc": "a1120960:2:2ded7f",
                        "showlegend": true,
                        "legendgroup": "MICROWAVE, RESEARCH",
                        "orientation": "v",
                        "hovertextsrc": "a1120960:2:b7be5c",
                        "textposition": "top center",
                        "customdatasrc": "a1120960:2:ca772d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CATEGORY=MICROWAVE<br>TYPE=RESEARCH<br>SWAP=%{x}<br>TAU_1s=%{y}<br>GROUP=%{customdata[1]}<br>ATOM=%{customdata[0]}<extra></extra>"
                    },
                    {
                        "mode": "markers+text",
                        "name": "OPTICAL, COMMERCIAL",
                        "type": "scatter",
                        "xsrc": "a1120960:2:cf69f5",
                        "ysrc": "a1120960:2:0e0db1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "DarkSlateGrey",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "rgb(221,132,82)",
                            "symbol": "circle",
                            "opacity": 1.0
                        },
                        "textsrc": "a1120960:2:9fb113",
                        "showlegend": true,
                        "legendgroup": "OPTICAL, COMMERCIAL",
                        "orientation": "v",
                        "hovertextsrc": "a1120960:2:40a54e",
                        "textposition": "top center",
                        "customdatasrc": "a1120960:2:600517",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CATEGORY=OPTICAL<br>TYPE=COMMERCIAL<br>SWAP=%{x}<br>TAU_1s=%{y}<br>GROUP=%{customdata[1]}<br>ATOM=%{customdata[0]}<extra></extra>"
                    },
                    {
                        "mode": "markers+text",
                        "name": "OPTICAL, RESEARCH",
                        "type": "scatter",
                        "xsrc": "a1120960:2:ea9b20",
                        "ysrc": "a1120960:2:6b2bb9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "DarkSlateGrey",
                                "width": 0.5
                            },
                            "size": 12,
                            "color": "rgb(221,132,82)",
                            "symbol": "diamond",
                            "opacity": 1.0
                        },
                        "textsrc": "a1120960:2:5f81b6",
                        "showlegend": true,
                        "legendgroup": "OPTICAL, RESEARCH",
                        "orientation": "v",
                        "hovertextsrc": "a1120960:2:28b159",
                        "textposition": "top center",
                        "customdatasrc": "a1120960:2:00cf98",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>CATEGORY=OPTICAL<br>TYPE=RESEARCH<br>SWAP=%{x}<br>TAU_1s=%{y}<br>GROUP=%{customdata[1]}<br>ATOM=%{customdata[0]}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "black",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "GPS",
                        "type": "scatter",
                        "xsrc": "a1120960:2:b7c5e8",
                        "ysrc": "a1120960:2:77cc89",
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "tau = 1e3s",
                        "type": "scatter",
                        "xsrc": "a1120960:2:3b5fbb",
                        "ysrc": "a1120960:2:95a96a",
                        "marker": {
                            "size": 8,
                            "color": "DarkSlateGrey",
                            "symbol": "square"
                        },
                        "opacity": 0.75,
                        "textsrc": "a1120960:2:e64526",
                        "visible": "legendonly",
                        "hoverinfo": "text",
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:5f3b17",
                        "ysrc": "a1120960:2:a4010f",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:375476",
                        "ysrc": "a1120960:2:62a0b6",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:e131d6",
                        "ysrc": "a1120960:2:5aea23",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:5dce98",
                        "ysrc": "a1120960:2:ba45a8",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:63411f",
                        "ysrc": "a1120960:2:da1a5c",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:b233d2",
                        "ysrc": "a1120960:2:5f5d38",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:b334d6",
                        "ysrc": "a1120960:2:aab3f8",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:8068e0",
                        "ysrc": "a1120960:2:59a32f",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:0514d4",
                        "ysrc": "a1120960:2:c8f391",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:e76ab2",
                        "ysrc": "a1120960:2:39f0b9",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:e2e07b",
                        "ysrc": "a1120960:2:bbf605",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:4f882e",
                        "ysrc": "a1120960:2:f5298c",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:f38648",
                        "ysrc": "a1120960:2:1c7360",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:e7246b",
                        "ysrc": "a1120960:2:f032ca",
                        "opacity": 0.75,
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group2"
                    },
                    {
                        "mode": "markers",
                        "name": "tau = 1e4s",
                        "type": "scatter",
                        "xsrc": "a1120960:2:08c67b",
                        "ysrc": "a1120960:2:c9981f",
                        "marker": {
                            "size": 8,
                            "color": "DarkSlateGrey",
                            "symbol": "circle"
                        },
                        "opacity": 0.75,
                        "textsrc": "a1120960:2:2b2567",
                        "visible": "legendonly",
                        "hoverinfo": "text",
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:e26f40",
                        "ysrc": "a1120960:2:de46c5",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:c3d778",
                        "ysrc": "a1120960:2:2898c0",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:290744",
                        "ysrc": "a1120960:2:da6fd6",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:281172",
                        "ysrc": "a1120960:2:1d17b0",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:fe39a8",
                        "ysrc": "a1120960:2:0f6612",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:614753",
                        "ysrc": "a1120960:2:c0bfaf",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:04dbf8",
                        "ysrc": "a1120960:2:56ecb7",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:f34b9a",
                        "ysrc": "a1120960:2:b928a1",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:f23f65",
                        "ysrc": "a1120960:2:303cfe",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:50a12e",
                        "ysrc": "a1120960:2:437e34",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:dfc00d",
                        "ysrc": "a1120960:2:4703fe",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:5a574d",
                        "ysrc": "a1120960:2:8d918c",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:bb1d33",
                        "ysrc": "a1120960:2:866eb6",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "a1120960:2:fca87a",
                        "ysrc": "a1120960:2:994ce3",
                        "visible": "legendonly",
                        "showlegend": false,
                        "legendgroup": "Group3"
                    },
                    {
                        "mode": "markers",
                        "text": "Lab clock performance @ tau = 1s \nNIST - Yb Lattice: 6.7e-17 \nSchioppo 2017",
                        "type": "scatter",
                        "xsrc": "a1120960:2:811cdb",
                        "ysrc": "a1120960:2:06b387",
                        "marker": {
                            "color": "rgba(0, 0, 0, 0)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": {
                        "font": {
                            "size": 28
                        }
                    },
                    "width": 1000,
                    "xaxis": {
                        "type": "log",
                        "range": [
                            -2.5,
                            15.5
                        ],
                        "title": {
                            "text": "Size, Weight and Power (cm³kgW)"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": true,
                        "showline": true,
                        "tickfont": {
                            "size": 12
                        },
                        "tickmode": "linear",
                        "linecolor": "black",
                        "linewidth": 0.4,
                        "tickformat": ".1e"
                    },
                    "yaxis": {
                        "type": "log",
                        "range": [
                            -17.5,
                            -8
                        ],
                        "title": {
                            "text": "Instability (s)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "mirror": true,
                        "showline": true,
                        "tickfont": {
                            "size": 12
                        },
                        "tickmode": "linear",
                        "linecolor": "black",
                        "linewidth": 0.4,
                        "tickformat": ".1e"
                    },
                    "height": 530,
                    "legend": {
                        "x": 1,
                        "y": 1,
                        "font": {
                            "size": 12
                        },
                        "title": {
                            "text": "CATEGORY, TYPE"
                        },
                        "xanchor": "right",
                        "yanchor": "top",
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "b": 50,
                        "t": 60
                    },
                    "shapes": [
                        {
                            "x0": 0.001,
                            "x1": 10000000000000000,
                            "y0": 1e-18,
                            "y1": 6.7e-17,
                            "line": {
                                "color": "rgba(0, 0, 255, 0.1)"
                            },
                            "type": "rect",
                            "fillcolor": "rgba(0, 0, 255, 0.25)"
                        }
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(234,234,242)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(231,231,240)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(183,183,191)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "rgb(234,234,242)",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "ticklen": 8,
                                            "tickcolor": "rgb(36,36,36)",
                                            "tickwidth": 2,
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "ticklen": 8,
                                        "tickcolor": "rgb(36,36,36)",
                                        "tickwidth": 2,
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "rgb(2,4,25)"
                                        ],
                                        [
                                            0.06274509803921569,
                                            "rgb(24,15,41)"
                                        ],
                                        [
                                            0.12549019607843137,
                                            "rgb(47,23,57)"
                                        ],
                                        [
                                            0.18823529411764706,
                                            "rgb(71,28,72)"
                                        ],
                                        [
                                            0.25098039215686274,
                                            "rgb(97,30,82)"
                                        ],
                                        [
                                            0.3137254901960784,
                                            "rgb(123,30,89)"
                                        ],
                                        [
                                            0.3764705882352941,
                                            "rgb(150,27,91)"
                                        ],
                                        [
                                            0.4392156862745098,
                                            "rgb(177,22,88)"
                                        ],
                                        [
                                            0.5019607843137255,
                                            "rgb(203,26,79)"
                                        ],
                                        [
                                            0.5647058823529412,
                                            "rgb(223,47,67)"
                                        ],
                                        [
                                            0.6274509803921569,
                                            "rgb(236,76,61)"
                                        ],
                                        [
                                            0.6901960784313725,
                                            "rgb(242,107,73)"
                                        ],
                                        [
                                            0.7529411764705882,
                                            "rgb(244,135,95)"
                                        ],
                                        [
                                            0.8156862745098039,
                                            "rgb(245,162,122)"
                                        ],
                                        [
                                            0.8784313725490196,
                                            "rgb(246,188,153)"
                                        ],
                                        [
                                            0.9411764705882353,
                                            "rgb(247,212,187)"
                                        ],
                                        [
                                            1.0,
                                            "rgb(250,234,220)"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(234,234,242)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "rgb(234,234,242)",
                                "radialaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(234,234,242)"
                                }
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "rgb(234,234,242)"
                            },
                            "colorway": [
                                "rgb(76,114,176)",
                                "rgb(221,132,82)",
                                "rgb(85,168,104)",
                                "rgb(196,78,82)",
                                "rgb(129,114,179)",
                                "rgb(147,120,96)",
                                "rgb(218,139,195)",
                                "rgb(140,140,140)",
                                "rgb(204,185,116)",
                                "rgb(100,181,205)"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "ticklen": 8,
                                    "tickcolor": "rgb(36,36,36)",
                                    "tickwidth": 2,
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "sequential": [
                                    [
                                        0.0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(250,234,220)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "rgb(2,4,25)"
                                    ],
                                    [
                                        0.06274509803921569,
                                        "rgb(24,15,41)"
                                    ],
                                    [
                                        0.12549019607843137,
                                        "rgb(47,23,57)"
                                    ],
                                    [
                                        0.18823529411764706,
                                        "rgb(71,28,72)"
                                    ],
                                    [
                                        0.25098039215686274,
                                        "rgb(97,30,82)"
                                    ],
                                    [
                                        0.3137254901960784,
                                        "rgb(123,30,89)"
                                    ],
                                    [
                                        0.3764705882352941,
                                        "rgb(150,27,91)"
                                    ],
                                    [
                                        0.4392156862745098,
                                        "rgb(177,22,88)"
                                    ],
                                    [
                                        0.5019607843137255,
                                        "rgb(203,26,79)"
                                    ],
                                    [
                                        0.5647058823529412,
                                        "rgb(223,47,67)"
                                    ],
                                    [
                                        0.6274509803921569,
                                        "rgb(236,76,61)"
                                    ],
                                    [
                                        0.6901960784313725,
                                        "rgb(242,107,73)"
                                    ],
                                    [
                                        0.7529411764705882,
                                        "rgb(244,135,95)"
                                    ],
                                    [
                                        0.8156862745098039,
                                        "rgb(245,162,122)"
                                    ],
                                    [
                                        0.8784313725490196,
                                        "rgb(246,188,153)"
                                    ],
                                    [
                                        0.9411764705882353,
                                        "rgb(247,212,187)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(250,234,220)"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "rgb(234,234,242)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.5,
                                "fillcolor": "rgb(67,103,167)"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowcolor": "rgb(67,103,167)"
                            }
                        }
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 16
                        },
                        "bgcolor": "white"
                    },
                    "annotations": [
                        {
                            "x": 0.01,
                            "y": 0.99,
                            "font": {
                                "size": 20,
                                "color": "rgba(150, 150, 150, 0.5)"
                            },
                            "text": "www.some-website.com",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 1.1,
                            "font": {
                                "size": 12
                            },
                            "text": "Hover over points on the plot for more information.Use mouse to zoom in, pan or download a PNG of the plot.",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        },
                        {
                            "x": 0,
                            "y": -16.8,
                            "font": {
                                "size": 12,
                                "color": "rgba(0, 0, 0, 0.8)"
                            },
                            "text": "Target Performance",
                            "align": "right",
                            "showarrow": false
                        },
                        {
                            "x": -1.5,
                            "y": -11.6,
                            "font": {
                                "size": 12,
                                "color": "rgba(0, 0, 0, 0.8)"
                            },
                            "text": "GPS @ 1s",
                            "align": "right",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 530,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~a1120960",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/16.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 03:37:58",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "a1120960",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T04:19:44.312905Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~swifty2205/4.embed",
            "fid": "swifty2205:4",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/swifty2205/4/9_E4SHJO0UZ7LTDT14EOKJWNQ8I4VERH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/swifty2205/4/2_IL9XVGPLUOQCO8CHS11J675F9V7J4G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/swifty2205/4/8_2W6ZYFMNM6VPKB044SWDWSXEVH4FPM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/swifty2205/4/9_E4SHJO0UZ7LTDT14EOKJWNQ8I4VERH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/swifty2205:4",
                "plots": "https://api.plotly.com/v2/plots/swifty2205:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=swifty2205"
            },
            "owner": "swifty2205",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~swifty2205/4/",
            "world_readable": true,
            "date_modified": "2024-03-27T04:19:44.609Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~swifty2205/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "type": "line",
                        "xsrc": "swifty2205:5:b53e4e",
                        "ysrc": "swifty2205:5:838566"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~swifty2205",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 02:23:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "swifty2205",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T04:13:29.835169Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~swifty2205/2.embed",
            "fid": "swifty2205:2",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/swifty2205/2/9_NN8FI3KLK8UNRWYKZXD1HY7A7GDGK3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/swifty2205/2/2_4DZGUIPSFV1XC9BRXMEXH76E67Y60A.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/swifty2205/2/8_333SHNINRIUBBJL83IS1OGOWGMRH7Z.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/swifty2205/2/9_NN8FI3KLK8UNRWYKZXD1HY7A7GDGK3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/swifty2205:2",
                "plots": "https://api.plotly.com/v2/plots/swifty2205:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=swifty2205"
            },
            "owner": "swifty2205",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~swifty2205/2/",
            "world_readable": true,
            "date_modified": "2024-03-27T04:13:30.122Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~swifty2205/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "type": "line",
                        "xsrc": "swifty2205:3:302fef",
                        "ysrc": "swifty2205:3:9dcfde"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~swifty2205",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 02:23:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "swifty2205",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T04:11:26.633997Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~swifty2205/0.embed",
            "fid": "swifty2205:0",
            "filename": "plot from API",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/swifty2205/0/9_YI42EETR6SX8YZ2YOFL5FBC8HOL2VS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/swifty2205/0/2_GDTFLAQCW0S7NO7HC3BM947H0690SO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/swifty2205/0/8_CXS302E9TQJ80VW5DLRJNR000WSO2H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/swifty2205/0/9_YI42EETR6SX8YZ2YOFL5FBC8HOL2VS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/swifty2205:0",
                "plots": "https://api.plotly.com/v2/plots/swifty2205:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=swifty2205"
            },
            "owner": "swifty2205",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~swifty2205/0/",
            "world_readable": true,
            "date_modified": "2024-03-27T04:11:27.008Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~swifty2205/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines markers",
                        "type": "scatter",
                        "xsrc": "swifty2205:1:2c21f3",
                        "ysrc": "swifty2205:1:df2286"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~swifty2205",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 02:23:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "swifty2205",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T03:58:37.252153Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ZaraZ/5.embed",
            "fid": "ZaraZ:5",
            "filename": "child mortality rate",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ZaraZ/5/9_1ADM6H556FE03YYZDY7GQA9LL7OFJV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ZaraZ/5/2_T4HNULLHKGWSR55WGKN2A8DIBGYRLK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ZaraZ/5/8_KDV63WDMJJD6QY691AEFT97HS9ADH4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ZaraZ/5/9_1ADM6H556FE03YYZDY7GQA9LL7OFJV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ZaraZ:5",
                "plots": "https://api.plotly.com/v2/plots/ZaraZ:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=ZaraZ"
            },
            "owner": "ZaraZ",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~ZaraZ/5/",
            "world_readable": true,
            "date_modified": "2024-03-27T03:58:37.260Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ZaraZ/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(232, 53, 53)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "China"
                            }
                        },
                        "mode": "lines",
                        "name": "China",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:9315eb",
                        "visible": true,
                        "showlegend": true,
                        "stackgroup": "",
                        "legendgroup": 1
                    },
                    {
                        "line": {
                            "color": "rgb(232, 53, 53)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Vietnam"
                            }
                        },
                        "mode": "lines",
                        "name": "Vietnam",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:791618",
                        "visible": true,
                        "stackgroup": null,
                        "connectgaps": false,
                        "legendgroup": 1
                    },
                    {
                        "line": {
                            "color": "rgb(12, 162, 122)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Turkey"
                            }
                        },
                        "mode": "lines",
                        "name": "Turkey",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:dd218a",
                        "visible": true,
                        "stackgroup": null,
                        "legendgroup": 2
                    },
                    {
                        "line": {
                            "color": "rgb(12, 162, 122)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Norway"
                            }
                        },
                        "mode": "lines",
                        "name": "Norway",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:6bd21f",
                        "visible": true,
                        "stackgroup": null,
                        "legendgroup": 2
                    },
                    {
                        "line": {
                            "color": "rgb(177, 25, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Brazil"
                            }
                        },
                        "mode": "lines",
                        "name": "Brazil",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:624646",
                        "visible": true,
                        "stackgroup": "",
                        "legendgroup": 3
                    },
                    {
                        "line": {
                            "color": "rgb(177, 25, 243)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Mexico"
                            }
                        },
                        "mode": "lines",
                        "name": "Mexico",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:3e08fc",
                        "visible": true,
                        "stackgroup": null,
                        "legendgroup": 3
                    },
                    {
                        "line": {
                            "color": "rgb(240, 180, 41)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "India"
                            }
                        },
                        "mode": "lines",
                        "name": "India",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:c82e90",
                        "visible": true,
                        "stackgroup": "",
                        "legendgroup": 4
                    },
                    {
                        "line": {
                            "color": "rgb(240, 180, 41)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Bangladesh"
                            }
                        },
                        "mode": "lines",
                        "name": "Bangladesh",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:226945",
                        "visible": true,
                        "stackgroup": null,
                        "legendgroup": 4
                    },
                    {
                        "line": {
                            "color": "rgb(65, 133, 231)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Nigeria"
                            }
                        },
                        "mode": "lines",
                        "name": "Nigeria",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:ade1f6",
                        "visible": true,
                        "stackgroup": null,
                        "legendgroup": 5
                    },
                    {
                        "line": {
                            "color": "rgb(65, 133, 231)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "Kenya"
                            }
                        },
                        "mode": "lines",
                        "name": "Kenya",
                        "type": "scatter",
                        "xsrc": "ZaraZ:4:90d84a",
                        "ysrc": "ZaraZ:4:2938f7",
                        "visible": true,
                        "stackgroup": null,
                        "legendgroup": 5
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Child Mortality Rate, 1950-2016"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1950,
                            2016
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            },
                            "text": "Year"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            400
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            },
                            "text": "Mortality rate (per 1000 babies born)"
                        },
                        "autorange": false
                    },
                    "margin": {
                        "b": 70,
                        "t": 70
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ZaraZ",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-20 17:44:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ZaraZ",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T03:49:34.291392Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kylrpratt/3.embed",
            "fid": "kylrpratt:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kylrpratt:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kylrpratt:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kylrpratt/3/8_GF5U947U3WZC5WZF09P26PUIJY3CLG.png",
                "list-thumb": "https://api.plotly.com/v2/files/kylrpratt:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kylrpratt:3",
                "plots": "https://api.plotly.com/v2/plots/kylrpratt:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=kylrpratt"
            },
            "owner": "kylrpratt",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kylrpratt/3/",
            "world_readable": true,
            "date_modified": "2024-03-27T03:49:34.304Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kylrpratt/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "i": "",
                                "x": "A",
                                "y": "B",
                                "z": "C",
                                "intensity": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "mesh3d",
                        "xsrc": "kylrpratt:2:284e72",
                        "ysrc": "kylrpratt:2:dd5764",
                        "zsrc": "kylrpratt:2:9b72bb",
                        "colorbar": {
                            "x": 0.8175614454736639,
                            "y": 0.46795542512015653
                        },
                        "intensitysrc": "kylrpratt:2:9b72bb"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -0.6313427347199547,
                                "y": -2.566607109828479,
                                "z": 1.4960639821833783
                            },
                            "center": {
                                "x": 0.012468486646765801,
                                "y": 0.017289496986992163,
                                "z": -0.029757983633757916
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kylrpratt",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 03:32:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kylrpratt",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T03:39:44.576371Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~SuggestUsername1/22.embed",
            "fid": "SuggestUsername1:22",
            "filename": "Baseline WBT",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/SuggestUsername1:22/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/SuggestUsername1/22/2_I1BDRGJXT05GF808XAGHQD54W10A0T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/SuggestUsername1/22/8_WUIN8WUZ82UMFR5KVXTFE7L4WHMQY4.png",
                "list-thumb": "https://api.plotly.com/v2/files/SuggestUsername1:22/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/SuggestUsername1:22",
                "plots": "https://api.plotly.com/v2/plots/SuggestUsername1:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=SuggestUsername1"
            },
            "owner": "SuggestUsername1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~SuggestUsername1/22/",
            "world_readable": true,
            "date_modified": "2024-03-27T03:40:33.383Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~SuggestUsername1/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "T",
                                "z": "S",
                                "marker": {
                                    "color": "A"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "SuggestUsername1:17:52d03c",
                        "ysrc": "SuggestUsername1:17:7ae8e9",
                        "zsrc": "SuggestUsername1:17:de79d5",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "A"
                                }
                            },
                            "colorsrc": "SuggestUsername1:17:52d03c",
                            "colorscale": [
                                [
                                    0,
                                    "#a50026"
                                ],
                                [
                                    0.1,
                                    "#d73027"
                                ],
                                [
                                    0.2,
                                    "#f46d43"
                                ],
                                [
                                    0.3,
                                    "#fdae61"
                                ],
                                [
                                    0.4,
                                    "#fee08b"
                                ],
                                [
                                    0.5,
                                    "#ffffbf"
                                ],
                                [
                                    0.6,
                                    "#d9ef8b"
                                ],
                                [
                                    0.7,
                                    "#a6d96a"
                                ],
                                [
                                    0.8,
                                    "#66bd63"
                                ],
                                [
                                    0.9,
                                    "#1a9850"
                                ],
                                [
                                    1,
                                    "#006837"
                                ]
                            ],
                            "reversescale": true
                        },
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "DBT [C]"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "WBT [C]"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "Power [kW]"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 4.004277876552336,
                                "y": 0.1379981512231554,
                                "z": 0.17508406773242452
                            },
                            "center": {
                                "x": 2.220446049250313e-16,
                                "y": 6.661338147750939e-16,
                                "z": -2.220446049250313e-16
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~SuggestUsername1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-05 04:01:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "SuggestUsername1",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T03:32:53.959870Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~2e/68.embed",
            "fid": "2e:68",
            "filename": "Plot 68",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/2e/68/9_4I2QMTS70B5KK9YBP9PQ0Q3V09GO6U.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/2e/68/2_91PRKXFQUUB4JQTGND43BI1QK6V7I8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/2e/68/8_ZOURXJSQ73ULZSYZ72CVKDK835W43O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/2e/68/9_4I2QMTS70B5KK9YBP9PQ0Q3V09GO6U.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/2e:68",
                "plots": "https://api.plotly.com/v2/plots/2e:68",
                "parent": "https://api.plotly.com/v2/folders/home?user=2e"
            },
            "owner": "2e",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~2e/68/",
            "world_readable": true,
            "date_modified": "2024-03-27T03:58:44.322Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~2e/68/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(99, 188, 250)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "2e:67:0ea8bf",
                        "ysrc": "2e:67:b92bce",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "2e:67:0ea8bf",
                        "ysrc": "2e:67:1dd49a",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(2, 165, 12)",
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "2e:67:0ea8bf",
                        "ysrc": "2e:67:da7777",
                        "visible": true,
                        "stackgroup": null,
                        "connectgaps": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "2e:67:0ea8bf",
                        "ysrc": "2e:67:d96596",
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Rainbow Crown"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            4989
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5699588.611111111,
                            108292183.6111111
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~2e",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/32.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-07 15:45:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "2e",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-27T02:50:19.626484Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~thecambieman/2.embed",
            "fid": "thecambieman:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/thecambieman:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/thecambieman/2/2_BSKGIGB79JAPUZ5ZI50B8L2B464TZP.png",
                "block-thumb": "https://api.plotly.com/v2/files/thecambieman:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/thecambieman:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/thecambieman:2",
                "plots": "https://api.plotly.com/v2/plots/thecambieman:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=thecambieman"
            },
            "owner": "thecambieman",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~thecambieman/2/",
            "world_readable": true,
            "date_modified": "2024-03-27T02:50:19.636Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~thecambieman/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": ""
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "thecambieman:1:b5bcd9",
                        "marker": {
                            "line": {
                                "width": 0
                            }
                        },
                        "boxpoints": false,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "F"
                            }
                        },
                        "type": "histogram",
                        "xsrc": "thecambieman:1:6b9b23"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14
                    },
                    "title": {
                        "x": 0.48,
                        "text": "The difference between resting heartrate of 14 year old boys who play sport and those who dont"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            71.5,
                            81.5
                        ],
                        "title": {
                            "text": "Heartrate per minute"
                        },
                        "showgrid": false,
                        "showline": false,
                        "zeroline": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -0.08567931456548347,
                            3.072215422276622
                        ],
                        "title": {
                            "text": "Particpants"
                        },
                        "autorange": false
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 15
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~thecambieman",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/42.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-27 02:49:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "thecambieman",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}