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=cD0yMDI0LTA0LTEwKzA1JTNBMTglM0E1NS41ODY0MzElMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTEwKzAzJTNBNDUlM0EzOS4yNTIzNjglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xMCswNCUzQTUwJTNBMzEuODM2MDAwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-10T04:50:31.836000Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AmrutaBhosale/2.embed",
            "fid": "AmrutaBhosale:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/AmrutaBhosale/2/9_GSVQSEIP35AIJX2PQ43XPQSC3CNDUU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AmrutaBhosale/2/2_DHM1LXZA2NVZQ9FOR0WJCJAHP328XU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AmrutaBhosale/2/8_ZS45K6J95NUNSG276ZXK3D6GC674DM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/AmrutaBhosale/2/9_GSVQSEIP35AIJX2PQ43XPQSC3CNDUU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AmrutaBhosale:2",
                "plots": "https://api.plotly.com/v2/plots/AmrutaBhosale:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=AmrutaBhosale"
            },
            "owner": "AmrutaBhosale",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~AmrutaBhosale/2/",
            "world_readable": true,
            "date_modified": "2024-04-10T04:50:31.845Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AmrutaBhosale/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "labels": "A",
                                "values": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "pie",
                        "labelssrc": "AmrutaBhosale:1:e7e57c",
                        "valuessrc": "AmrutaBhosale:1:e09d45"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 14,
                        "color": "rgb(14, 45, 90)"
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "family": "Courier New"
                        },
                        "text": ""
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0,
                        "y": -0.09999999999999987,
                        "font": {
                            "family": "Arial"
                        },
                        "valign": "bottom",
                        "xanchor": "left",
                        "orientation": "h"
                    },
                    "modebar": {
                        "color": "rgba(117, 117, 117, 0.3)"
                    },
                    "autosize": true,
                    "colorway": [
                        "#636efa",
                        "#EF553B",
                        "#00cc96",
                        "#ab63fa",
                        "#19d3f3",
                        "#e763fa",
                        "#fecb52",
                        "#ffa15a",
                        "#ff6692",
                        "#b6e880"
                    ],
                    "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"
                    },
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#a50026"
                            ],
                            [
                                0.1,
                                "#d73027"
                            ],
                            [
                                0.2,
                                "#f46d43"
                            ],
                            [
                                0.3,
                                "#fdae61"
                            ],
                            [
                                0.4,
                                "#fee090"
                            ],
                            [
                                0.5,
                                "#ffffbf"
                            ],
                            [
                                0.6,
                                "#e0f3f8"
                            ],
                            [
                                0.7,
                                "#abd9e9"
                            ],
                            [
                                0.8,
                                "#74add1"
                            ],
                            [
                                0.9,
                                "#4575b4"
                            ],
                            [
                                1,
                                "#313695"
                            ]
                        ],
                        "sequential": [
                            [
                                0,
                                "#00224e"
                            ],
                            [
                                0.1111111111111111,
                                "#123570"
                            ],
                            [
                                0.2222222222222222,
                                "#3b496c"
                            ],
                            [
                                0.3333333333333333,
                                "#575d6d"
                            ],
                            [
                                0.4444444444444444,
                                "#707173"
                            ],
                            [
                                0.5555555555555556,
                                "#8a8678"
                            ],
                            [
                                0.6666666666666666,
                                "#a59c74"
                            ],
                            [
                                0.7777777777777778,
                                "#c3b369"
                            ],
                            [
                                0.8888888888888888,
                                "#e1cc55"
                            ],
                            [
                                1,
                                "#fee838"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0,
                                "#00224e"
                            ],
                            [
                                0.1111111111111111,
                                "#123570"
                            ],
                            [
                                0.2222222222222222,
                                "#3b496c"
                            ],
                            [
                                0.3333333333333333,
                                "#575d6d"
                            ],
                            [
                                0.4444444444444444,
                                "#707173"
                            ],
                            [
                                0.5555555555555556,
                                "#8a8678"
                            ],
                            [
                                0.6666666666666666,
                                "#a59c74"
                            ],
                            [
                                0.7777777777777778,
                                "#c3b369"
                            ],
                            [
                                0.8888888888888888,
                                "#e1cc55"
                            ],
                            [
                                1,
                                "#fee838"
                            ]
                        ]
                    },
                    "piecolorway": [
                        "#AA0DFE",
                        "#3283FE",
                        "#85660D",
                        "#782AB6",
                        "#565656",
                        "#1C8356",
                        "#16FF32",
                        "#F7E1A0",
                        "#E2E2E2",
                        "#1CBE4F",
                        "#C4451C",
                        "#DEA0FD",
                        "#FE00FA",
                        "#325A9B",
                        "#FEAF16",
                        "#F8A19F",
                        "#90AD1C",
                        "#F6222E",
                        "#1CFFCE",
                        "#2ED9FF",
                        "#B10DA1",
                        "#C075A6",
                        "#FC1CBF",
                        "#B00068",
                        "#FBE426",
                        "#FA0087"
                    ],
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AmrutaBhosale",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-08 12:50:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AmrutaBhosale",
                "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-04-10T04:26:14.155658Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Davidlemm/3.embed",
            "fid": "Davidlemm:3",
            "filename": "Groundwater_Level_and_Rainfall_Time_Series",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Davidlemm/3/9_0LYFC03BC7JUGOR09J01AD12CSIKWP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Davidlemm/3/2_CD4OK3JQ2DPAXBLHZI3J0A4NMSW960.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Davidlemm/3/8_JPWTYAO9YER1TDZIMRWE2CJGMMHAMW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Davidlemm/3/9_0LYFC03BC7JUGOR09J01AD12CSIKWP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Davidlemm:3",
                "plots": "https://api.plotly.com/v2/plots/Davidlemm:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Davidlemm"
            },
            "owner": "Davidlemm",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Davidlemm/3/",
            "world_readable": true,
            "date_modified": "2024-04-10T04:26:14.164Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Davidlemm/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:8677c8",
                        "ysrc": "Davidlemm:2:3e7866",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:4671c9",
                        "ysrc": "Davidlemm:2:2a495f",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:58260e",
                        "ysrc": "Davidlemm:2:8f5b59",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:57953f",
                        "ysrc": "Davidlemm:2:2bc9af",
                        "xaxis": "x2",
                        "yaxis": "y2"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:5e7054",
                        "ysrc": "Davidlemm:2:d86e40",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:a89a36",
                        "ysrc": "Davidlemm:2:265521",
                        "xaxis": "x3",
                        "yaxis": "y3"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:494003",
                        "ysrc": "Davidlemm:2:047370",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:72d74b",
                        "ysrc": "Davidlemm:2:4f55eb",
                        "xaxis": "x4",
                        "yaxis": "y4"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:cd74c2",
                        "ysrc": "Davidlemm:2:8be24e",
                        "xaxis": "x5",
                        "yaxis": "y5"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:bb21db",
                        "ysrc": "Davidlemm:2:856d8c",
                        "xaxis": "x5",
                        "yaxis": "y5"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:de9002",
                        "ysrc": "Davidlemm:2:86f250",
                        "xaxis": "x6",
                        "yaxis": "y6"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:94147a",
                        "ysrc": "Davidlemm:2:3c1f32",
                        "xaxis": "x6",
                        "yaxis": "y6"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:5312dd",
                        "ysrc": "Davidlemm:2:b0f53a",
                        "xaxis": "x7",
                        "yaxis": "y7"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:bb16eb",
                        "ysrc": "Davidlemm:2:ec07ec",
                        "xaxis": "x7",
                        "yaxis": "y7"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:4efbae",
                        "ysrc": "Davidlemm:2:2c4555",
                        "xaxis": "x8",
                        "yaxis": "y8"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:dce6b4",
                        "ysrc": "Davidlemm:2:5b54a5",
                        "xaxis": "x8",
                        "yaxis": "y8"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:25084f",
                        "ysrc": "Davidlemm:2:ed8d99",
                        "xaxis": "x9",
                        "yaxis": "y9"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:06170b",
                        "ysrc": "Davidlemm:2:584c97",
                        "xaxis": "x9",
                        "yaxis": "y9"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:a3c6c3",
                        "ysrc": "Davidlemm:2:448e06",
                        "xaxis": "x10",
                        "yaxis": "y10"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:b5cf72",
                        "ysrc": "Davidlemm:2:7f29c7",
                        "xaxis": "x10",
                        "yaxis": "y10"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:888d6b",
                        "ysrc": "Davidlemm:2:4631ca",
                        "xaxis": "x11",
                        "yaxis": "y11"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:32589c",
                        "ysrc": "Davidlemm:2:16076e",
                        "xaxis": "x11",
                        "yaxis": "y11"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:263a16",
                        "ysrc": "Davidlemm:2:a2d7bf",
                        "xaxis": "x12",
                        "yaxis": "y12"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:34d5ba",
                        "ysrc": "Davidlemm:2:08fd85",
                        "xaxis": "x12",
                        "yaxis": "y12"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:92fa80",
                        "ysrc": "Davidlemm:2:6166a2",
                        "xaxis": "x13",
                        "yaxis": "y13"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:5bf606",
                        "ysrc": "Davidlemm:2:c6ba75",
                        "xaxis": "x13",
                        "yaxis": "y13"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:c82787",
                        "ysrc": "Davidlemm:2:bf9843",
                        "xaxis": "x14",
                        "yaxis": "y14"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:1317e6",
                        "ysrc": "Davidlemm:2:612d2f",
                        "xaxis": "x14",
                        "yaxis": "y14"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:02786a",
                        "ysrc": "Davidlemm:2:8a70c6",
                        "xaxis": "x15",
                        "yaxis": "y15"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:60d51b",
                        "ysrc": "Davidlemm:2:525dac",
                        "xaxis": "x15",
                        "yaxis": "y15"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:48ed31",
                        "ysrc": "Davidlemm:2:c90798",
                        "xaxis": "x16",
                        "yaxis": "y16"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:78a3dd",
                        "ysrc": "Davidlemm:2:7c04ee",
                        "xaxis": "x16",
                        "yaxis": "y16"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:450717",
                        "ysrc": "Davidlemm:2:a650be",
                        "xaxis": "x17",
                        "yaxis": "y17"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:757aa4",
                        "ysrc": "Davidlemm:2:d7331c",
                        "xaxis": "x17",
                        "yaxis": "y17"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:a0aca4",
                        "ysrc": "Davidlemm:2:c9a258",
                        "xaxis": "x18",
                        "yaxis": "y18"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:9ca329",
                        "ysrc": "Davidlemm:2:8bdcb3",
                        "xaxis": "x18",
                        "yaxis": "y18"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:3b1221",
                        "ysrc": "Davidlemm:2:172b8b",
                        "xaxis": "x19",
                        "yaxis": "y19"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:fd0956",
                        "ysrc": "Davidlemm:2:3afab8",
                        "xaxis": "x19",
                        "yaxis": "y19"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:76188b",
                        "ysrc": "Davidlemm:2:194976",
                        "xaxis": "x20",
                        "yaxis": "y20"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:82db91",
                        "ysrc": "Davidlemm:2:4051bb",
                        "xaxis": "x20",
                        "yaxis": "y20"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:b1c2a0",
                        "ysrc": "Davidlemm:2:60b55d",
                        "xaxis": "x21",
                        "yaxis": "y21"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:e6b319",
                        "ysrc": "Davidlemm:2:e0ad8e",
                        "xaxis": "x21",
                        "yaxis": "y21"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:13d2b3",
                        "ysrc": "Davidlemm:2:59ee39",
                        "xaxis": "x22",
                        "yaxis": "y22"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:9103df",
                        "ysrc": "Davidlemm:2:a2009d",
                        "xaxis": "x22",
                        "yaxis": "y22"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:c13db5",
                        "ysrc": "Davidlemm:2:1054c2",
                        "xaxis": "x23",
                        "yaxis": "y23"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:eba36f",
                        "ysrc": "Davidlemm:2:5b6595",
                        "xaxis": "x23",
                        "yaxis": "y23"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:3b3d19",
                        "ysrc": "Davidlemm:2:06003b",
                        "xaxis": "x24",
                        "yaxis": "y24"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:dc26ba",
                        "ysrc": "Davidlemm:2:b7ffe3",
                        "xaxis": "x24",
                        "yaxis": "y24"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:a4ef17",
                        "ysrc": "Davidlemm:2:ab4093",
                        "xaxis": "x25",
                        "yaxis": "y25"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:44d322",
                        "ysrc": "Davidlemm:2:3f432a",
                        "xaxis": "x25",
                        "yaxis": "y25"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:148382",
                        "ysrc": "Davidlemm:2:8de3b8",
                        "xaxis": "x26",
                        "yaxis": "y26"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:b5d7f0",
                        "ysrc": "Davidlemm:2:58b306",
                        "xaxis": "x26",
                        "yaxis": "y26"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:649eef",
                        "ysrc": "Davidlemm:2:29f15c",
                        "xaxis": "x27",
                        "yaxis": "y27"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:316ed6",
                        "ysrc": "Davidlemm:2:2f25d7",
                        "xaxis": "x27",
                        "yaxis": "y27"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:69ee65",
                        "ysrc": "Davidlemm:2:5cac4b",
                        "xaxis": "x28",
                        "yaxis": "y28"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:f5878b",
                        "ysrc": "Davidlemm:2:b1db3a",
                        "xaxis": "x28",
                        "yaxis": "y28"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:952fb3",
                        "ysrc": "Davidlemm:2:26adc4",
                        "xaxis": "x29",
                        "yaxis": "y29"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:f01048",
                        "ysrc": "Davidlemm:2:305f88",
                        "xaxis": "x29",
                        "yaxis": "y29"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:bfe140",
                        "ysrc": "Davidlemm:2:198d6b",
                        "xaxis": "x30",
                        "yaxis": "y30"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:6069c8",
                        "ysrc": "Davidlemm:2:87ec90",
                        "xaxis": "x30",
                        "yaxis": "y30"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:da6ed1",
                        "ysrc": "Davidlemm:2:6ad72e",
                        "xaxis": "x31",
                        "yaxis": "y31"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:38772e",
                        "ysrc": "Davidlemm:2:7e9625",
                        "xaxis": "x31",
                        "yaxis": "y31"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:5cfa43",
                        "ysrc": "Davidlemm:2:e51f77",
                        "xaxis": "x32",
                        "yaxis": "y32"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:9baa12",
                        "ysrc": "Davidlemm:2:6b791f",
                        "xaxis": "x32",
                        "yaxis": "y32"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:56d8b4",
                        "ysrc": "Davidlemm:2:cf91d0",
                        "xaxis": "x33",
                        "yaxis": "y33"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:587323",
                        "ysrc": "Davidlemm:2:b72ee2",
                        "xaxis": "x33",
                        "yaxis": "y33"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:069105",
                        "ysrc": "Davidlemm:2:50b42f",
                        "xaxis": "x34",
                        "yaxis": "y34"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:e600f2",
                        "ysrc": "Davidlemm:2:529446",
                        "xaxis": "x34",
                        "yaxis": "y34"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:b4a78b",
                        "ysrc": "Davidlemm:2:2ca649",
                        "xaxis": "x35",
                        "yaxis": "y35"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:3eae43",
                        "ysrc": "Davidlemm:2:6590a6",
                        "xaxis": "x35",
                        "yaxis": "y35"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:009a49",
                        "ysrc": "Davidlemm:2:e601d3",
                        "xaxis": "x36",
                        "yaxis": "y36"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:79bb0e",
                        "ysrc": "Davidlemm:2:8b62a2",
                        "xaxis": "x36",
                        "yaxis": "y36"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:c06883",
                        "ysrc": "Davidlemm:2:cbc92a",
                        "xaxis": "x37",
                        "yaxis": "y37"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:ffbe96",
                        "ysrc": "Davidlemm:2:e1e4e1",
                        "xaxis": "x37",
                        "yaxis": "y37"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:93118a",
                        "ysrc": "Davidlemm:2:801f16",
                        "xaxis": "x38",
                        "yaxis": "y38"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:3d9950",
                        "ysrc": "Davidlemm:2:609750",
                        "xaxis": "x38",
                        "yaxis": "y38"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:10dd17",
                        "ysrc": "Davidlemm:2:0bbfbc",
                        "xaxis": "x39",
                        "yaxis": "y39"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:c21416",
                        "ysrc": "Davidlemm:2:aafcf6",
                        "xaxis": "x39",
                        "yaxis": "y39"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:32006f",
                        "ysrc": "Davidlemm:2:409559",
                        "xaxis": "x40",
                        "yaxis": "y40"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:3762ea",
                        "ysrc": "Davidlemm:2:e6b42b",
                        "xaxis": "x40",
                        "yaxis": "y40"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:e88d2e",
                        "ysrc": "Davidlemm:2:6e6a1e",
                        "xaxis": "x41",
                        "yaxis": "y41"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:bb19c4",
                        "ysrc": "Davidlemm:2:4dfdc5",
                        "xaxis": "x41",
                        "yaxis": "y41"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:33b264",
                        "ysrc": "Davidlemm:2:2c8b46",
                        "xaxis": "x42",
                        "yaxis": "y42"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:0027f6",
                        "ysrc": "Davidlemm:2:90bc4b",
                        "xaxis": "x42",
                        "yaxis": "y42"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:0c73a2",
                        "ysrc": "Davidlemm:2:59084c",
                        "xaxis": "x43",
                        "yaxis": "y43"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:f47ab5",
                        "ysrc": "Davidlemm:2:ed704b",
                        "xaxis": "x43",
                        "yaxis": "y43"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:8a8575",
                        "ysrc": "Davidlemm:2:721dab",
                        "xaxis": "x44",
                        "yaxis": "y44"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:c4cde5",
                        "ysrc": "Davidlemm:2:a1f140",
                        "xaxis": "x44",
                        "yaxis": "y44"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:60ea96",
                        "ysrc": "Davidlemm:2:98c108",
                        "xaxis": "x45",
                        "yaxis": "y45"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:075e2a",
                        "ysrc": "Davidlemm:2:6ce818",
                        "xaxis": "x45",
                        "yaxis": "y45"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:124e4f",
                        "ysrc": "Davidlemm:2:c460fa",
                        "xaxis": "x46",
                        "yaxis": "y46"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:e10145",
                        "ysrc": "Davidlemm:2:3faa70",
                        "xaxis": "x46",
                        "yaxis": "y46"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:ff2e64",
                        "ysrc": "Davidlemm:2:b1ff98",
                        "xaxis": "x47",
                        "yaxis": "y47"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:c906d1",
                        "ysrc": "Davidlemm:2:fc3d56",
                        "xaxis": "x47",
                        "yaxis": "y47"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:1bc817",
                        "ysrc": "Davidlemm:2:833d41",
                        "xaxis": "x48",
                        "yaxis": "y48"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:fdb28b",
                        "ysrc": "Davidlemm:2:94c3ba",
                        "xaxis": "x48",
                        "yaxis": "y48"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:d2318b",
                        "ysrc": "Davidlemm:2:1b9935",
                        "xaxis": "x49",
                        "yaxis": "y49"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:9cadb9",
                        "ysrc": "Davidlemm:2:15edc8",
                        "xaxis": "x49",
                        "yaxis": "y49"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:9ff55e",
                        "ysrc": "Davidlemm:2:d4c1ea",
                        "xaxis": "x50",
                        "yaxis": "y50"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:fba949",
                        "ysrc": "Davidlemm:2:725c61",
                        "xaxis": "x50",
                        "yaxis": "y50"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:6af61d",
                        "ysrc": "Davidlemm:2:8a0462",
                        "xaxis": "x51",
                        "yaxis": "y51"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:8a5494",
                        "ysrc": "Davidlemm:2:3a629a",
                        "xaxis": "x51",
                        "yaxis": "y51"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:c4bac5",
                        "ysrc": "Davidlemm:2:3b57f1",
                        "xaxis": "x52",
                        "yaxis": "y52"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:c1a604",
                        "ysrc": "Davidlemm:2:5f7451",
                        "xaxis": "x52",
                        "yaxis": "y52"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:1db93d",
                        "ysrc": "Davidlemm:2:3ff77e",
                        "xaxis": "x53",
                        "yaxis": "y53"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:2ba274",
                        "ysrc": "Davidlemm:2:1d6d26",
                        "xaxis": "x53",
                        "yaxis": "y53"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:a31b12",
                        "ysrc": "Davidlemm:2:86700f",
                        "xaxis": "x54",
                        "yaxis": "y54"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:9084ec",
                        "ysrc": "Davidlemm:2:8ff663",
                        "xaxis": "x54",
                        "yaxis": "y54"
                    },
                    {
                        "mode": "lines+markers",
                        "name": "Water Level",
                        "type": "scatter",
                        "xsrc": "Davidlemm:2:a4f8e6",
                        "ysrc": "Davidlemm:2:7a534d",
                        "xaxis": "x55",
                        "yaxis": "y55"
                    },
                    {
                        "name": "Rainfall",
                        "type": "bar",
                        "xsrc": "Davidlemm:2:47a11a",
                        "ysrc": "Davidlemm:2:c1b603",
                        "xaxis": "x55",
                        "yaxis": "y55"
                    }
                ],
                "layout": {
                    "width": 1200,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.9907438016528929,
                            1.0
                        ]
                    },
                    "height": 16500,
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis7": {
                        "anchor": "y7",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis8": {
                        "anchor": "y8",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis9": {
                        "anchor": "y9",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.9723966942148763,
                            0.9816528925619837
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.9540495867768598,
                            0.9633057851239673
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.9357024793388433,
                            0.9449586776859508
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.9173553719008267,
                            0.9266115702479342
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.8990082644628101,
                            0.9082644628099176
                        ]
                    },
                    "yaxis7": {
                        "anchor": "x7",
                        "domain": [
                            0.8806611570247936,
                            0.8899173553719011
                        ]
                    },
                    "yaxis8": {
                        "anchor": "x8",
                        "domain": [
                            0.8623140495867772,
                            0.8715702479338846
                        ]
                    },
                    "yaxis9": {
                        "anchor": "x9",
                        "domain": [
                            0.8439669421487606,
                            0.853223140495868
                        ]
                    },
                    "xaxis10": {
                        "anchor": "y10",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis11": {
                        "anchor": "y11",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis12": {
                        "anchor": "y12",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis13": {
                        "anchor": "y13",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis14": {
                        "anchor": "y14",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis15": {
                        "anchor": "y15",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis16": {
                        "anchor": "y16",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis17": {
                        "anchor": "y17",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis18": {
                        "anchor": "y18",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis19": {
                        "anchor": "y19",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis20": {
                        "anchor": "y20",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis21": {
                        "anchor": "y21",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis22": {
                        "anchor": "y22",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis23": {
                        "anchor": "y23",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis24": {
                        "anchor": "y24",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis25": {
                        "anchor": "y25",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis26": {
                        "anchor": "y26",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis27": {
                        "anchor": "y27",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis28": {
                        "anchor": "y28",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis29": {
                        "anchor": "y29",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis30": {
                        "anchor": "y30",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis31": {
                        "anchor": "y31",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis32": {
                        "anchor": "y32",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis33": {
                        "anchor": "y33",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis34": {
                        "anchor": "y34",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis35": {
                        "anchor": "y35",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis36": {
                        "anchor": "y36",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis37": {
                        "anchor": "y37",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis38": {
                        "anchor": "y38",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis39": {
                        "anchor": "y39",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis40": {
                        "anchor": "y40",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis41": {
                        "anchor": "y41",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis42": {
                        "anchor": "y42",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis43": {
                        "anchor": "y43",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis44": {
                        "anchor": "y44",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis45": {
                        "anchor": "y45",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis46": {
                        "anchor": "y46",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis47": {
                        "anchor": "y47",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis48": {
                        "anchor": "y48",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis49": {
                        "anchor": "y49",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis50": {
                        "anchor": "y50",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis51": {
                        "anchor": "y51",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis52": {
                        "anchor": "y52",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis53": {
                        "anchor": "y53",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis54": {
                        "anchor": "y54",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "xaxis55": {
                        "anchor": "y55",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis10": {
                        "anchor": "x10",
                        "domain": [
                            0.825619834710744,
                            0.8348760330578514
                        ]
                    },
                    "yaxis11": {
                        "anchor": "x11",
                        "domain": [
                            0.8072727272727275,
                            0.8165289256198349
                        ]
                    },
                    "yaxis12": {
                        "anchor": "x12",
                        "domain": [
                            0.788925619834711,
                            0.7981818181818184
                        ]
                    },
                    "yaxis13": {
                        "anchor": "x13",
                        "domain": [
                            0.7705785123966944,
                            0.7798347107438018
                        ]
                    },
                    "yaxis14": {
                        "anchor": "x14",
                        "domain": [
                            0.7522314049586778,
                            0.7614876033057852
                        ]
                    },
                    "yaxis15": {
                        "anchor": "x15",
                        "domain": [
                            0.7338842975206614,
                            0.7431404958677689
                        ]
                    },
                    "yaxis16": {
                        "anchor": "x16",
                        "domain": [
                            0.7155371900826448,
                            0.7247933884297523
                        ]
                    },
                    "yaxis17": {
                        "anchor": "x17",
                        "domain": [
                            0.6971900826446282,
                            0.7064462809917357
                        ]
                    },
                    "yaxis18": {
                        "anchor": "x18",
                        "domain": [
                            0.6788429752066117,
                            0.6880991735537192
                        ]
                    },
                    "yaxis19": {
                        "anchor": "x19",
                        "domain": [
                            0.6604958677685953,
                            0.6697520661157027
                        ]
                    },
                    "yaxis20": {
                        "anchor": "x20",
                        "domain": [
                            0.6421487603305787,
                            0.6514049586776861
                        ]
                    },
                    "yaxis21": {
                        "anchor": "x21",
                        "domain": [
                            0.6238016528925621,
                            0.6330578512396695
                        ]
                    },
                    "yaxis22": {
                        "anchor": "x22",
                        "domain": [
                            0.6054545454545456,
                            0.614710743801653
                        ]
                    },
                    "yaxis23": {
                        "anchor": "x23",
                        "domain": [
                            0.5871074380165291,
                            0.5963636363636365
                        ]
                    },
                    "yaxis24": {
                        "anchor": "x24",
                        "domain": [
                            0.5687603305785125,
                            0.5780165289256199
                        ]
                    },
                    "yaxis25": {
                        "anchor": "x25",
                        "domain": [
                            0.5504132231404959,
                            0.5596694214876033
                        ]
                    },
                    "yaxis26": {
                        "anchor": "x26",
                        "domain": [
                            0.5320661157024794,
                            0.5413223140495869
                        ]
                    },
                    "yaxis27": {
                        "anchor": "x27",
                        "domain": [
                            0.5137190082644629,
                            0.5229752066115704
                        ]
                    },
                    "yaxis28": {
                        "anchor": "x28",
                        "domain": [
                            0.49537190082644633,
                            0.5046280991735538
                        ]
                    },
                    "yaxis29": {
                        "anchor": "x29",
                        "domain": [
                            0.47702479338842985,
                            0.4862809917355373
                        ]
                    },
                    "yaxis30": {
                        "anchor": "x30",
                        "domain": [
                            0.45867768595041325,
                            0.4679338842975207
                        ]
                    },
                    "yaxis31": {
                        "anchor": "x31",
                        "domain": [
                            0.44033057851239676,
                            0.4495867768595042
                        ]
                    },
                    "yaxis32": {
                        "anchor": "x32",
                        "domain": [
                            0.42198347107438017,
                            0.4312396694214876
                        ]
                    },
                    "yaxis33": {
                        "anchor": "x33",
                        "domain": [
                            0.4036363636363637,
                            0.41289256198347113
                        ]
                    },
                    "yaxis34": {
                        "anchor": "x34",
                        "domain": [
                            0.3852892561983471,
                            0.39454545454545453
                        ]
                    },
                    "yaxis35": {
                        "anchor": "x35",
                        "domain": [
                            0.3669421487603306,
                            0.37619834710743805
                        ]
                    },
                    "yaxis36": {
                        "anchor": "x36",
                        "domain": [
                            0.34859504132231406,
                            0.3578512396694215
                        ]
                    },
                    "yaxis37": {
                        "anchor": "x37",
                        "domain": [
                            0.3302479338842975,
                            0.33950413223140496
                        ]
                    },
                    "yaxis38": {
                        "anchor": "x38",
                        "domain": [
                            0.311900826446281,
                            0.3211570247933884
                        ]
                    },
                    "yaxis39": {
                        "anchor": "x39",
                        "domain": [
                            0.29355371900826444,
                            0.3028099173553719
                        ]
                    },
                    "yaxis40": {
                        "anchor": "x40",
                        "domain": [
                            0.2752066115702479,
                            0.28446280991735534
                        ]
                    },
                    "yaxis41": {
                        "anchor": "x41",
                        "domain": [
                            0.25685950413223135,
                            0.2661157024793388
                        ]
                    },
                    "yaxis42": {
                        "anchor": "x42",
                        "domain": [
                            0.2385123966942148,
                            0.24776859504132226
                        ]
                    },
                    "yaxis43": {
                        "anchor": "x43",
                        "domain": [
                            0.2201652892561983,
                            0.22942148760330575
                        ]
                    },
                    "yaxis44": {
                        "anchor": "x44",
                        "domain": [
                            0.20181818181818179,
                            0.21107438016528923
                        ]
                    },
                    "yaxis45": {
                        "anchor": "x45",
                        "domain": [
                            0.18347107438016524,
                            0.1927272727272727
                        ]
                    },
                    "yaxis46": {
                        "anchor": "x46",
                        "domain": [
                            0.16512396694214873,
                            0.17438016528925618
                        ]
                    },
                    "yaxis47": {
                        "anchor": "x47",
                        "domain": [
                            0.14677685950413222,
                            0.15603305785123966
                        ]
                    },
                    "yaxis48": {
                        "anchor": "x48",
                        "domain": [
                            0.12842975206611568,
                            0.13768595041322312
                        ]
                    },
                    "yaxis49": {
                        "anchor": "x49",
                        "domain": [
                            0.11008264462809916,
                            0.1193388429752066
                        ]
                    },
                    "yaxis50": {
                        "anchor": "x50",
                        "domain": [
                            0.09173553719008264,
                            0.10099173553719007
                        ]
                    },
                    "yaxis51": {
                        "anchor": "x51",
                        "domain": [
                            0.07338842975206611,
                            0.08264462809917354
                        ]
                    },
                    "yaxis52": {
                        "anchor": "x52",
                        "domain": [
                            0.05504132231404958,
                            0.06429752066115701
                        ]
                    },
                    "yaxis53": {
                        "anchor": "x53",
                        "domain": [
                            0.036694214876033054,
                            0.04595041322314049
                        ]
                    },
                    "yaxis54": {
                        "anchor": "x54",
                        "domain": [
                            0.018347107438016527,
                            0.027603305785123964
                        ]
                    },
                    "yaxis55": {
                        "anchor": "x55",
                        "domain": [
                            0.0,
                            0.009256198347107437
                        ]
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "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.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB001A",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.9816528925619837,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB001D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.9633057851239673,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB001S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.9449586776859508,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB003D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.9266115702479342,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB003S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.9082644628099176,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB004D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.8899173553719011,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB004S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.8715702479338846,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB007D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.853223140495868,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB007S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.8348760330578514,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB008",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.8165289256198349,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB009",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.7981818181818184,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFPZ011",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.7798347107438018,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDMB15001S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.7614876033057852,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDMB15001D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.7431404958677689,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDMB33001S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.7247933884297523,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDMB001WA",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.7064462809917357,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDMB002WA",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.6880991735537192,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDMB004WA",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.6697520661157027,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ05",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.6514049586776861,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ06",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.6330578512396695,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ07",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.614710743801653,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ09",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.5963636363636365,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB011",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.5780165289256199,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB010",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.5596694214876033,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFPZ012",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.5413223140495869,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ001WD",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.5229752066115704,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ002WD",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.5046280991735538,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ003WD",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.4862809917355373,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB012",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.4679338842975207,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ10",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.4495867768595042,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ11",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.4312396694214876,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB013",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.41289256198347113,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB014",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.39454545454545453,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB015",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.37619834710743805,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ12",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.3578512396694215,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ13",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.33950413223140496,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ14",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.3211570247933884,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDPZ15",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.3028099173553719,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB16S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.28446280991735534,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB16D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.2661157024793388,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB17S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.24776859504132226,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB17D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.22942148760330575,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB18S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.21107438016528923,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB18D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.1927272727272727,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB19D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.17438016528925618,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB20S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.15603305785123966,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB20D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.13768595041322312,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB21S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.1193388429752066,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB21D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.10099173553719007,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB22S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.08264462809917354,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB22D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.06429752066115701,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB23S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.04595041322314049,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB23D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.027603305785123964,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB24S",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.009256198347107437,
                            "font": {
                                "size": 16
                            },
                            "text": "RRLGDTSFMB24D",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 16500,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Davidlemm",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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-04-10 04:13:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Davidlemm",
                "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-04-10T04:22:00.408928Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hiteshrane5/3.embed",
            "fid": "hiteshrane5:3",
            "filename": "o-plot (1)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/3/9_HXFWKEJ86Z0TARNOM3U072LYX0CVNF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/3/2_UPXV8LQ0TX1625IEDLAKNBODK8RF1U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/3/8_S8QHLPA7QOSV1WDT2VQVGBZFCZLVJ0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/3/9_HXFWKEJ86Z0TARNOM3U072LYX0CVNF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hiteshrane5:3",
                "plots": "https://api.plotly.com/v2/plots/hiteshrane5:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=hiteshrane5"
            },
            "owner": "hiteshrane5",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Simple Plot from Node.js",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hiteshrane5/3/simple-plot-from-nodejs/",
            "world_readable": true,
            "date_modified": "2024-04-10T04:29:29.336Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hiteshrane5/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "hiteshrane5:5:513546",
                        "ysrc": "hiteshrane5:5:9bdc70"
                    }
                ],
                "layout": {
                    "title": "Simple Plot from Node.js"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hiteshrane5",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:48:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hiteshrane5",
                "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-04-10T04:22:00.406559Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hiteshrane5/2.embed",
            "fid": "hiteshrane5:2",
            "filename": "o-plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/2/9_0SOEG9H7YFISUI0AUYR9CT0S2E3NN3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/2/2_4AAQOWPRNK9G57XJGFS9C6T5MP4VAI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/2/8_UQQUR87P7M70MM3A1H3CPQXAW8678I.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/2/9_0SOEG9H7YFISUI0AUYR9CT0S2E3NN3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hiteshrane5:2",
                "plots": "https://api.plotly.com/v2/plots/hiteshrane5:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=hiteshrane5"
            },
            "owner": "hiteshrane5",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Simple Plot from Node.js",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hiteshrane5/2/simple-plot-from-nodejs/",
            "world_readable": true,
            "date_modified": "2024-04-10T04:22:00.747Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hiteshrane5/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "hiteshrane5:4:e09e58",
                        "ysrc": "hiteshrane5:4:ceda4d"
                    }
                ],
                "layout": {
                    "title": "Simple Plot from Node.js"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hiteshrane5",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:48:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hiteshrane5",
                "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-04-10T04:19:07.290021Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Davidlemm/1.embed",
            "fid": "Davidlemm:1",
            "filename": "GW_monitoring_boxplot_by_purpose",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Davidlemm/1/9_Q5OMA3AZF6NCI2IDOYMCN2GVM72NU5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Davidlemm/1/2_QXNAJP3W297608P4JBXTX6LUC2C7R5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Davidlemm/1/8_SZDQLGE5L306P6CLFH0PUJ409AZM84.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Davidlemm/1/9_Q5OMA3AZF6NCI2IDOYMCN2GVM72NU5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Davidlemm:1",
                "plots": "https://api.plotly.com/v2/plots/Davidlemm:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Davidlemm"
            },
            "owner": "Davidlemm",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Davidlemm/1/",
            "world_readable": true,
            "date_modified": "2024-04-10T04:19:07.300Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Davidlemm/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "x0": " ",
                        "y0": " ",
                        "name": "TSF",
                        "type": "box",
                        "xsrc": "Davidlemm:0:ac95d5",
                        "ysrc": "Davidlemm:0:b4a005",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636efa"
                        },
                        "notched": false,
                        "showlegend": true,
                        "legendgroup": "TSF",
                        "offsetgroup": "TSF",
                        "orientation": "v",
                        "hovertemplate": "Purpose=TSF<br>BoreID=%{x}<br>level_mAHD=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "x0": " ",
                        "y0": " ",
                        "name": "Pit",
                        "type": "box",
                        "xsrc": "Davidlemm:0:d928d5",
                        "ysrc": "Davidlemm:0:e10b26",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B"
                        },
                        "notched": false,
                        "showlegend": true,
                        "legendgroup": "Pit",
                        "offsetgroup": "Pit",
                        "orientation": "v",
                        "hovertemplate": "Purpose=Pit<br>BoreID=%{x}<br>level_mAHD=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "BoreID"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickfont": {
                            "size": 8
                        },
                        "tickangle": 45
                    },
                    "yaxis": {
                        "title": {
                            "text": "level_mAHD"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "height": 800,
                    "legend": {
                        "x": 0.5,
                        "y": 1.1,
                        "title": {
                            "text": "Purpose"
                        },
                        "xanchor": "center",
                        "yanchor": "bottom",
                        "orientation": "h",
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "boxmode": "group",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "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
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "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.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": 800,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Davidlemm",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/26.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-04-10 04:13:59",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Davidlemm",
                "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-04-10T04:10:15.004622Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hiteshrane5/0.embed",
            "fid": "hiteshrane5:0",
            "filename": "simple-plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/0/9_RSK1Z6VR9484VQQNF45SHELBAEEYE0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/0/2_6PC0BTJ71JVG06QIJCNDVUO14ZWY4B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/0/8_5XR91AXPLQM0L27ZGRG76Z3NBG0E4A.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hiteshrane5/0/9_RSK1Z6VR9484VQQNF45SHELBAEEYE0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hiteshrane5:0",
                "plots": "https://api.plotly.com/v2/plots/hiteshrane5:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=hiteshrane5"
            },
            "owner": "hiteshrane5",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Simple Plot from Node.js",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~hiteshrane5/0/simple-plot-from-nodejs/",
            "world_readable": true,
            "date_modified": "2024-04-10T04:10:15.393Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hiteshrane5/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "scatter",
                        "xsrc": "hiteshrane5:1:bb9e77",
                        "ysrc": "hiteshrane5:1:371b82"
                    }
                ],
                "layout": {
                    "title": "Simple Plot from Node.js"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hiteshrane5",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/57.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:48:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hiteshrane5",
                "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-04-10T03:46:48.481968Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ishaansatish15/5.embed",
            "fid": "ishaansatish15:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ishaansatish15/5/9_CLEYPI1F54G8LVWNWBUHUGJZ4OPI6E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ishaansatish15/5/2_GY0OQO93R6OZGDSRY7414X772M3LOI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ishaansatish15/5/8_FHZU02GT6QPSFB6N40OFWK3CCART5Q.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ishaansatish15/5/9_CLEYPI1F54G8LVWNWBUHUGJZ4OPI6E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ishaansatish15:5",
                "plots": "https://api.plotly.com/v2/plots/ishaansatish15:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=ishaansatish15"
            },
            "owner": "ishaansatish15",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ishaansatish15/5/",
            "world_readable": true,
            "date_modified": "2024-04-10T05:37:53.559Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ishaansatish15/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<br>",
                        "type": "scatter",
                        "xsrc": "ishaansatish15:6:11dc34",
                        "ysrc": "ishaansatish15:6:123650",
                        "marker": {
                            "size": 8
                        },
                        "showlegend": false,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Voltage[V] vs Current[mA]  for Diode"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.2578945611977992,
                            0.7041054388022009
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Voltage[V]"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.2702200873362445,
                            4.343020087336244
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Current [mA]"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "font": {
                            "size": 20
                        }
                    },
                    "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"
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ishaansatish15",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:45:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ishaansatish15",
                "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-04-10T03:46:03.331630Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ishaansatish15/3.embed",
            "fid": "ishaansatish15:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ishaansatish15:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ishaansatish15:3/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ishaansatish15:3/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ishaansatish15:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ishaansatish15:3",
                "plots": "https://api.plotly.com/v2/plots/ishaansatish15:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=ishaansatish15"
            },
            "owner": "ishaansatish15",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ishaansatish15/3/",
            "world_readable": true,
            "date_modified": "2024-04-10T03:46:03.342Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ishaansatish15/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ishaansatish15",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:45:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ishaansatish15",
                "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-04-10T03:45:48.257470Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ishaansatish15/2.embed",
            "fid": "ishaansatish15:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ishaansatish15:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ishaansatish15:2/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ishaansatish15:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ishaansatish15:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ishaansatish15:2",
                "plots": "https://api.plotly.com/v2/plots/ishaansatish15:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=ishaansatish15"
            },
            "owner": "ishaansatish15",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ishaansatish15/2/",
            "world_readable": true,
            "date_modified": "2024-04-10T03:45:48.269Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ishaansatish15/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ishaansatish15",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:45:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ishaansatish15",
                "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-04-10T03:45:39.252368Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ishaansatish15/1.embed",
            "fid": "ishaansatish15:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/ishaansatish15:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/ishaansatish15:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/ishaansatish15:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/ishaansatish15:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ishaansatish15:1",
                "plots": "https://api.plotly.com/v2/plots/ishaansatish15:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ishaansatish15"
            },
            "owner": "ishaansatish15",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ishaansatish15/1/",
            "world_readable": true,
            "date_modified": "2024-04-10T03:45:39.262Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ishaansatish15/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {},
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ishaansatish15",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-10 03:45:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ishaansatish15",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}