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

{
    "next": "https://api.plotly.com/v2/plots/?cursor=cD0yMDIzLTA3LTI3KzE5JTNBMTclM0EwMS4wMTMxNzElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyMy0wNy0yNysyMCUzQTIyJTNBMzAuMjQ3NDI3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2023-07-27T20:22:30.247427Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jji6/12.embed",
            "fid": "jji6:12",
            "filename": "Plot 12",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jji6/12/9_15V1358TXXESKU0TRV2G4E25JMBYO5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jji6/12/2_RWTFQFCO9BA9UYVWKSXNR3RYVF3XZX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jji6/12/8_YSOZ1QV3RDWK87RML2HB7JTZJ18MQP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jji6/12/9_15V1358TXXESKU0TRV2G4E25JMBYO5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jji6:12",
                "plots": "https://api.plotly.com/v2/plots/jji6:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=jji6"
            },
            "owner": "jji6",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~jji6/12/",
            "world_readable": true,
            "date_modified": "2023-07-27T20:23:41.043Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jji6/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "type": "violin",
                        "xsrc": "jji6:11:c063ee",
                        "ysrc": "jji6:11:1102b1",
                        "marker": {
                            "color": "rgb(41, 53, 178)"
                        },
                        "bandwidth": 0
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "B"
                            }
                        },
                        "type": "violin",
                        "xsrc": "jji6:11:f42510",
                        "ysrc": "jji6:11:0568ac",
                        "bandwidth": 0
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.7460658836713354,
                            4.061316833711036
                        ],
                        "showline": false,
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5.96685542601216,
                            274.9824972091608
                        ],
                        "showgrid": false,
                        "autorange": false
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "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"
                    },
                    "violingap": 0.89
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jji6",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.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": "2023-03-24 15:44:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jji6",
                "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": "2023-07-27T20:10:21.139730Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~marianaduenas/1.embed",
            "fid": "marianaduenas:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/marianaduenas/1/9_QH08ANUX8R9GHZ54BNVLQYKLCPJZ9H.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/marianaduenas/1/2_OZOMEWM0W3B9KM8LOUJ7QROSE8ZDUF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marianaduenas/1/8_2KG207TOSUPLCY5181NVZ4NKHFB1FC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/marianaduenas/1/9_QH08ANUX8R9GHZ54BNVLQYKLCPJZ9H.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/marianaduenas:1",
                "plots": "https://api.plotly.com/v2/plots/marianaduenas:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=marianaduenas"
            },
            "owner": "marianaduenas",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~marianaduenas/1/",
            "world_readable": true,
            "date_modified": "2023-07-27T20:26:49.975Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [
                    {
                        "type": "email",
                        "email": "ma.castilla964@uniandes.edu.co",
                        "readonly": false
                    }
                ],
                "count": 1
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~marianaduenas/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Trace 0",
                        "type": "scatter",
                        "xsrc": "marianaduenas:0:4c3372",
                        "ysrc": "marianaduenas:0:4351a7"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Trace 1",
                        "type": "scatter",
                        "xsrc": "marianaduenas:0:4c3372",
                        "ysrc": "marianaduenas:0:4d6b67"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Trace 2",
                        "type": "scatter",
                        "xsrc": "marianaduenas:0:4c3372",
                        "ysrc": "marianaduenas:0:93439f",
                        "visible": "legendonly",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "NPs Size Distribution (pH 4)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            11.53138121453565,
                            1082.5586516848634
                        ],
                        "title": {
                            "text": "Particle Size (nm)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.3888888888888888,
                            25.509162030989597
                        ],
                        "title": {
                            "text": "Intensity (percent)"
                        },
                        "autorange": false
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 1
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~marianaduenas",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-07-27 20:03:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "marianaduenas",
                "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": "2023-07-27T19:55:32.337735Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fguadarrama/3.embed",
            "fid": "fguadarrama:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fguadarrama/3/9_4MA8JSUXTCICTB5DK709GJ8G5YAWL4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fguadarrama/3/2_MP3J7IG1KSIXU59IXXATHIQFR9A3EB.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fguadarrama/3/8_TTIT78A7PE91SFIK3ZUF6LYO200YIN.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fguadarrama/3/9_4MA8JSUXTCICTB5DK709GJ8G5YAWL4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fguadarrama:3",
                "plots": "https://api.plotly.com/v2/plots/fguadarrama:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=fguadarrama"
            },
            "owner": "fguadarrama",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~fguadarrama/3/",
            "world_readable": true,
            "date_modified": "2023-07-27T19:55:32.351Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fguadarrama/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "box": {
                            "visible": false
                        },
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "A",
                                "z": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "2018-2019",
                        "type": "violin",
                        "ysrc": "fguadarrama:2:57301e",
                        "zsrc": "fguadarrama:2:57301e",
                        "jitter": 0.5,
                        "points": "outliers",
                        "meanline": {
                            "visible": true
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "boxpoints": false,
                        "scalemode": "width",
                        "showlegend": true,
                        "orientation": "v",
                        "autocolorscale": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "B"
                            }
                        },
                        "name": "2020-2021",
                        "type": "violin",
                        "ysrc": "fguadarrama:2:bba40d",
                        "jitter": 0.5,
                        "points": "outliers",
                        "meanline": {
                            "visible": true
                        },
                        "pointpos": 0,
                        "bandwidth": 0,
                        "scalemode": "width"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            1.5
                        ],
                        "title": {
                            "text": "Tiempo hasta atención médica efectiva"
                        },
                        "showgrid": false,
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -10,
                            60
                        ],
                        "ticks": "outside",
                        "title": {
                            "text": "Meses"
                        },
                        "autorange": false
                    },
                    "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"
                    },
                    "violinmode": "overlay"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fguadarrama",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-07-27 14:47:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fguadarrama",
                "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": "2023-07-27T19:54:52.432711Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sri321/10.embed",
            "fid": "sri321:10",
            "filename": "more_6s",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sri321/10/9_3RACV2WG6DNVU1DW1QRM5FBLXO1C75.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sri321/10/2_00SQ1AXWICMHYW2XDYMRMAS8R0QLT7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sri321/10/8_DU5NLNOYIDXOMRA5DLU18T7JXYH9LY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sri321/10/9_3RACV2WG6DNVU1DW1QRM5FBLXO1C75.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sri321:10",
                "plots": "https://api.plotly.com/v2/plots/sri321:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=sri321"
            },
            "owner": "sri321",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 310,
            "web_url": "https://chart-studio.plotly.com/~sri321/10/",
            "world_readable": true,
            "date_modified": "2023-08-06T14:10:31.444Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sri321/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Royal Challengers Bangalore",
                        "type": "bar",
                        "xsrc": "sri321:378:4419f0",
                        "ysrc": "sri321:378:f3f8b6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#c7a902",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:378:d75d15",
                        "showlegend": true,
                        "legendgroup": "Royal Challengers Bangalore",
                        "offsetgroup": "Royal Challengers Bangalore",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Royal Challengers Bangalore<br>Batsmen=%{x}<br>Number of sixes=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Chennai Super Kings",
                        "type": "bar",
                        "xsrc": "sri321:378:9fa506",
                        "ysrc": "sri321:378:b75ae1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ebe465",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:378:492f5f",
                        "showlegend": true,
                        "legendgroup": "Chennai Super Kings",
                        "offsetgroup": "Chennai Super Kings",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Chennai Super Kings<br>Batsmen=%{x}<br>Number of sixes=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Gujarat Titans",
                        "type": "bar",
                        "xsrc": "sri321:378:31aacb",
                        "ysrc": "sri321:378:8c2cb4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#327ba8",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:378:e05fd0",
                        "showlegend": true,
                        "legendgroup": "Gujarat Titans",
                        "offsetgroup": "Gujarat Titans",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Gujarat Titans<br>Batsmen=%{x}<br>Number of sixes=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Kolkata Knight Riders",
                        "type": "bar",
                        "xsrc": "sri321:378:bcaadc",
                        "ysrc": "sri321:378:943c7b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "purple",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:378:fc5144",
                        "showlegend": true,
                        "legendgroup": "Kolkata Knight Riders",
                        "offsetgroup": "Kolkata Knight Riders",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Kolkata Knight Riders<br>Batsmen=%{x}<br>Number of sixes=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mumbai Indians",
                        "type": "bar",
                        "xsrc": "sri321:378:4f8000",
                        "ysrc": "sri321:378:169f44",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "blue",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:378:f36e10",
                        "showlegend": true,
                        "legendgroup": "Mumbai Indians",
                        "offsetgroup": "Mumbai Indians",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Mumbai Indians<br>Batsmen=%{x}<br>Number of sixes=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Lucknow Super Giants",
                        "type": "bar",
                        "xsrc": "sri321:378:fa4e08",
                        "ysrc": "sri321:378:083d61",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#3afce9",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:378:22ac17",
                        "showlegend": true,
                        "legendgroup": "Lucknow Super Giants",
                        "offsetgroup": "Lucknow Super Giants",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Lucknow Super Giants<br>Batsmen=%{x}<br>Number of sixes=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Rajasthan Royals",
                        "type": "bar",
                        "xsrc": "sri321:378:e8f75e",
                        "ysrc": "sri321:378:e9f002",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#d134e3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:378:f692d1",
                        "showlegend": true,
                        "legendgroup": "Rajasthan Royals",
                        "offsetgroup": "Rajasthan Royals",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Rajasthan Royals<br>Batsmen=%{x}<br>Number of sixes=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Most sixes by a batsmen"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Batsmen"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "categoryorder": "total descending"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Number of sixes"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "color"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "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": "#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
                                    },
                                    "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": "white",
                                            "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": "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": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "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",
                                "#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": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sri321",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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": "2023-07-27 18:55:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sri321",
                "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": "2023-07-27T19:46:18.450460Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sri321/8.embed",
            "fid": "sri321:8",
            "filename": "more_4s",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sri321/8/9_GFHWGKB6OH8ASNU7EHH0SGNPXTBPGW.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sri321/8/2_52ZG9QUPU94521GH0YDPMIYUJUIQMO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sri321/8/8_SHUCYJAQRG7EEHSXAJLLY20GPLZK98.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sri321/8/9_GFHWGKB6OH8ASNU7EHH0SGNPXTBPGW.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sri321:8",
                "plots": "https://api.plotly.com/v2/plots/sri321:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=sri321"
            },
            "owner": "sri321",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 328,
            "web_url": "https://chart-studio.plotly.com/~sri321/8/",
            "world_readable": true,
            "date_modified": "2023-08-06T14:10:28.324Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sri321/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Gujarat Titans",
                        "type": "bar",
                        "xsrc": "sri321:377:9e0984",
                        "ysrc": "sri321:377:de43ca",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#327ba8",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:377:46e219",
                        "showlegend": true,
                        "legendgroup": "Gujarat Titans",
                        "offsetgroup": "Gujarat Titans",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Gujarat Titans<br>Batsmen=%{x}<br>Number of fours=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Rajasthan Royals",
                        "type": "bar",
                        "xsrc": "sri321:377:fef882",
                        "ysrc": "sri321:377:501458",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#d134e3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:377:7dc369",
                        "showlegend": true,
                        "legendgroup": "Rajasthan Royals",
                        "offsetgroup": "Rajasthan Royals",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Rajasthan Royals<br>Batsmen=%{x}<br>Number of fours=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Chennai Super Kings",
                        "type": "bar",
                        "xsrc": "sri321:377:4201d2",
                        "ysrc": "sri321:377:884b3f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ebe465",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:377:ad8955",
                        "showlegend": true,
                        "legendgroup": "Chennai Super Kings",
                        "offsetgroup": "Chennai Super Kings",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Chennai Super Kings<br>Batsmen=%{x}<br>Number of fours=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Delhi Capitals",
                        "type": "bar",
                        "xsrc": "sri321:377:f53dd6",
                        "ysrc": "sri321:377:611f6d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#429ded",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:377:672735",
                        "showlegend": true,
                        "legendgroup": "Delhi Capitals",
                        "offsetgroup": "Delhi Capitals",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Delhi Capitals<br>Batsmen=%{x}<br>Number of fours=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mumbai Indians",
                        "type": "bar",
                        "xsrc": "sri321:377:97d1b1",
                        "ysrc": "sri321:377:c45ddb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "blue",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:377:638599",
                        "showlegend": true,
                        "legendgroup": "Mumbai Indians",
                        "offsetgroup": "Mumbai Indians",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Mumbai Indians<br>Batsmen=%{x}<br>Number of fours=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Royal Challengers Bangalore",
                        "type": "bar",
                        "xsrc": "sri321:377:6c19f0",
                        "ysrc": "sri321:377:75024b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#c7a902",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:377:7dc560",
                        "showlegend": true,
                        "legendgroup": "Royal Challengers Bangalore",
                        "offsetgroup": "Royal Challengers Bangalore",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Royal Challengers Bangalore<br>Batsmen=%{x}<br>Number of fours=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Punjab Kings",
                        "type": "bar",
                        "xsrc": "sri321:377:18ac40",
                        "ysrc": "sri321:377:3c2bb2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "red",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:377:dec2b5",
                        "showlegend": true,
                        "legendgroup": "Punjab Kings",
                        "offsetgroup": "Punjab Kings",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Punjab Kings<br>Batsmen=%{x}<br>Number of fours=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Most fours by a batsmen in IPL 2023"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Batsmen"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "categoryorder": "total descending"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Number of fours"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "color"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "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": "#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
                                    },
                                    "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": "white",
                                            "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": "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": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "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",
                                "#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": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sri321",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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": "2023-07-27 18:55:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sri321",
                "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": "2023-07-27T19:35:51.329961Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sri321/6.embed",
            "fid": "sri321:6",
            "filename": "most_50s",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sri321/6/9_PH1J69MQVOG2YX0RB9PUOZ9ZGPHDLR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sri321/6/2_ID37KHFP5MPX0SHWW8O2DN7SRKEGUQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sri321/6/8_78IQ7ALMWXM985EBDR5JFWB4VCGVUU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sri321/6/9_PH1J69MQVOG2YX0RB9PUOZ9ZGPHDLR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sri321:6",
                "plots": "https://api.plotly.com/v2/plots/sri321:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=sri321"
            },
            "owner": "sri321",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 331,
            "web_url": "https://chart-studio.plotly.com/~sri321/6/",
            "world_readable": true,
            "date_modified": "2023-08-06T14:07:04.565Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sri321/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Royal Challengers Bangalore",
                        "type": "bar",
                        "xsrc": "sri321:376:e38e68",
                        "ysrc": "sri321:376:07ba37",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#c7a902",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:376:fa8022",
                        "showlegend": true,
                        "legendgroup": "Royal Challengers Bangalore",
                        "offsetgroup": "Royal Challengers Bangalore",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Royal Challengers Bangalore<br>index=%{x}<br>50s=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Chennai Super Kings",
                        "type": "bar",
                        "xsrc": "sri321:376:26cbb6",
                        "ysrc": "sri321:376:4fb87c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#ebe465",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:376:c84022",
                        "showlegend": true,
                        "legendgroup": "Chennai Super Kings",
                        "offsetgroup": "Chennai Super Kings",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Chennai Super Kings<br>index=%{x}<br>50s=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Delhi Capitals",
                        "type": "bar",
                        "xsrc": "sri321:376:8656bc",
                        "ysrc": "sri321:376:96bc7e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#429ded",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:376:f06d71",
                        "showlegend": true,
                        "legendgroup": "Delhi Capitals",
                        "offsetgroup": "Delhi Capitals",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Delhi Capitals<br>index=%{x}<br>50s=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Rajasthan Royals",
                        "type": "bar",
                        "xsrc": "sri321:376:88160f",
                        "ysrc": "sri321:376:4f7067",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#d134e3",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:376:a077a9",
                        "showlegend": true,
                        "legendgroup": "Rajasthan Royals",
                        "offsetgroup": "Rajasthan Royals",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Rajasthan Royals<br>index=%{x}<br>50s=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Mumbai Indians",
                        "type": "bar",
                        "xsrc": "sri321:376:532f92",
                        "ysrc": "sri321:376:87def7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "blue",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:376:6c785f",
                        "showlegend": true,
                        "legendgroup": "Mumbai Indians",
                        "offsetgroup": "Mumbai Indians",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Mumbai Indians<br>index=%{x}<br>50s=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Gujarat Titans",
                        "type": "bar",
                        "xsrc": "sri321:376:26e89d",
                        "ysrc": "sri321:376:9c0e69",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#327ba8",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:376:4e2f33",
                        "showlegend": true,
                        "legendgroup": "Gujarat Titans",
                        "offsetgroup": "Gujarat Titans",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Gujarat Titans<br>index=%{x}<br>50s=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Lucknow Super Giants",
                        "type": "bar",
                        "xsrc": "sri321:376:5ef309",
                        "ysrc": "sri321:376:afe815",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#3afce9",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "textsrc": "sri321:376:6c557b",
                        "showlegend": true,
                        "legendgroup": "Lucknow Super Giants",
                        "offsetgroup": "Lucknow Super Giants",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "color=Lucknow Super Giants<br>index=%{x}<br>50s=%{y}<br>text=%{text}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Most fifties"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Team"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "ticktext": [
                            "F du Plessis",
                            "DP Conway",
                            "DA Warner",
                            "V Kohli",
                            "YBK Jaiswal",
                            "SA Yadav",
                            "GJ Maxwell",
                            "Shubman Gill",
                            "RD Gaikwad",
                            "KR Mayers"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "50s"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "color"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "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": "#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
                                    },
                                    "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": "white",
                                            "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": "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": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "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",
                                "#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": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sri321",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.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": "2023-07-27 18:55:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sri321",
                "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": "2023-07-27T19:34:55.180789Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sophia.mlew/1.embed",
            "fid": "sophia.mlew:1",
            "filename": "PHorse Data",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/sophia.mlew/1/9_QGM0ZK50NX92X5G2ACNMAZOH3CFJNP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/sophia.mlew/1/2_IJRX0DDSRZV9E8IGSQTE5YRGWAZF2I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sophia.mlew/1/8_8C2RC46FSQY5M4VYOMU0HDECOIV4G6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sophia.mlew/1/9_QGM0ZK50NX92X5G2ACNMAZOH3CFJNP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sophia.mlew:1",
                "plots": "https://api.plotly.com/v2/plots/sophia.mlew:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=sophia.mlew"
            },
            "owner": "sophia.mlew",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~sophia.mlew/1/",
            "world_readable": true,
            "date_modified": "2023-07-27T21:26:16.282Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [
                    {
                        "type": "email",
                        "email": "susie.garity@state.mn.us",
                        "readonly": false
                    },
                    {
                        "type": "email",
                        "email": "anne.rivas@state.mn.us",
                        "readonly": false
                    }
                ],
                "count": 2
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sophia.mlew/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:25b9f1",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(50, 176, 76)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:67b623",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(49, 138, 23)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:6f7b3d",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:942873",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(5, 100, 34)"
                        },
                        "visible": true
                    },
                    {
                        "line": {
                            "color": "rgb(75, 243, 25)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:8a0e8c",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:ce5828",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(119, 214, 128)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "H",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:0ac65b",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(112, 81, 10)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "I",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:b11b6d",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(25, 81, 8)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:91c291",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(90, 64, 7)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "K",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:b7a53f",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "L",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "trace 10",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:e64db8",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(188, 250, 99)"
                        },
                        "visible": "legendonly"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "N",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:3bb952",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(32, 164, 37)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "O",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:15d196",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "P",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:af7934",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(70, 166, 29)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Q",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:3ae30b",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(30, 129, 53)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "R",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:a4566c",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(79, 164, 43)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "S",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:a82ce3",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(113, 82, 6)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "M",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:84ed88",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(128, 167, 78)"
                        },
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "T",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "sophia.mlew:0:37a121",
                        "ysrc": "sophia.mlew:0:72c3ba",
                        "marker": {
                            "color": "rgb(162, 255, 102)"
                        },
                        "visible": "legendonly"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -7.274607572209175,
                            94.3896781710345
                        ],
                        "title": {
                            "text": "Minutes"
                        },
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.3596063622946144,
                            2.142934496890859
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "autosize": true,
                    "dragmode": "select",
                    "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": false,
                    "annotations": [
                        {
                            "x": -4.128245031120041,
                            "y": -0.31686847285880937,
                            "ax": -22,
                            "ay": 22,
                            "font": {
                                "family": "Arial"
                            },
                            "text": "Dart = Time 0<br>",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sophia.mlew",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.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": "2023-07-27 19:34:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sophia.mlew",
                "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": "2023-07-27T19:31:12.382159Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~alfianwn/16.embed",
            "fid": "alfianwn:16",
            "filename": "CPU Usage",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/alfianwn/16/9_9XA7BAOWU03J5602T1D0OXTWPPBGPE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/alfianwn/16/2_Y2EBFLAF57YHC9HRBLPYDVQAG0MKFL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/alfianwn/16/8_ZP2NSSWPJHIBFIOE0KYPUSHPVIB1QU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/alfianwn/16/9_9XA7BAOWU03J5602T1D0OXTWPPBGPE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/alfianwn:16",
                "plots": "https://api.plotly.com/v2/plots/alfianwn:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=alfianwn"
            },
            "owner": "alfianwn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~alfianwn/16/",
            "world_readable": true,
            "date_modified": "2023-07-27T19:32:39.297Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~alfianwn/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "cmax": 372.8826,
                        "cmin": -0.1835741,
                        "meta": {
                            "columnNames": {
                                "x": "z[23]",
                                "y": "z[22]",
                                "z": "z[0] - z[1] - z[2] - z[3] - z[4] - z[5] - z[6] - z[7] - z[8]"
                            }
                        },
                        "mode": "markers",
                        "name": "RR",
                        "type": "surface",
                        "xsrc": "alfianwn:15:0738ac",
                        "ysrc": "alfianwn:15:ac8825",
                        "zsrc": "alfianwn:15:2f4b08,fc5873,b74f42,186b5f,7ece2b,782632,48fa20,c69cfe,a50ef1",
                        "cauto": true,
                        "colorbar": {
                            "title": {
                                "text": "Round<br>Robin"
                            }
                        },
                        "colorscale": [
                            [
                                0,
                                "#f7fbff"
                            ],
                            [
                                0.125,
                                "#deebf7"
                            ],
                            [
                                0.25,
                                "#c6dbef"
                            ],
                            [
                                0.375,
                                "#9ecae1"
                            ],
                            [
                                0.5,
                                "#6baed6"
                            ],
                            [
                                0.625,
                                "#4292c6"
                            ],
                            [
                                0.75,
                                "#2171b5"
                            ],
                            [
                                0.875,
                                "#08519c"
                            ],
                            [
                                1,
                                "#08306b"
                            ]
                        ],
                        "reversescale": true,
                        "autocolorscale": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "z[23]",
                                "y": "z[22]",
                                "z": "z[10] - z[11] - z[12] - z[13] - z[14] - z[15] - z[16] - z[17] - z[18]"
                            }
                        },
                        "name": "LRT",
                        "type": "surface",
                        "xsrc": "alfianwn:15:0738ac",
                        "ysrc": "alfianwn:15:ac8825",
                        "zsrc": "alfianwn:15:ee6668,4406a3,9c11fa,2ac5bd,fe1753,3679f5,b15887,6388e7,5b062d",
                        "colorbar": {
                            "x": 0.9062559241706161,
                            "y": 0.5,
                            "title": {
                                "text": "Least Response<br>time"
                            }
                        },
                        "colorscale": [
                            [
                                0,
                                "#ffffe5"
                            ],
                            [
                                0.125,
                                "#fff7bc"
                            ],
                            [
                                0.25,
                                "#fee391"
                            ],
                            [
                                0.375,
                                "#fec44f"
                            ],
                            [
                                0.5,
                                "#fe9929"
                            ],
                            [
                                0.625,
                                "#ec7014"
                            ],
                            [
                                0.75,
                                "#cc4c02"
                            ],
                            [
                                0.875,
                                "#993404"
                            ],
                            [
                                1,
                                "#662506"
                            ]
                        ],
                        "reversescale": true,
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "category",
                            "title": {
                                "text": "Broker"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "Client"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "CPU"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.7341885970574165,
                                "y": -1.5136017421972798,
                                "z": 0.7970129219787755
                            },
                            "center": {
                                "x": -2.220446049250313e-16,
                                "y": -2.220446049250313e-16,
                                "z": 6.661338147750939e-16
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "font": {
                            "size": 30
                        },
                        "text": "<br><br>\nCPU Usage (%)"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~alfianwn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-07-26 00:28:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "alfianwn",
                "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": "2023-07-27T19:27:56.958044Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fguadarrama/1.embed",
            "fid": "fguadarrama:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/fguadarrama/1/9_6ICBI634WWZ6783DT78M6MG591UZLZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/fguadarrama/1/2_Q1FOZO7VCGAMRR0P6KYOIEBQKYB4YO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/fguadarrama/1/8_OK850JTZLQTQFQY47DOG81G5QLZ95E.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/fguadarrama/1/9_6ICBI634WWZ6783DT78M6MG591UZLZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fguadarrama:1",
                "plots": "https://api.plotly.com/v2/plots/fguadarrama:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=fguadarrama"
            },
            "owner": "fguadarrama",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~fguadarrama/1/",
            "world_readable": true,
            "date_modified": "2023-07-27T19:27:56.974Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fguadarrama/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "text": ""
                            }
                        },
                        "mode": "markers",
                        "name": "2018-2019",
                        "type": "box",
                        "xsrc": "fguadarrama:0:040be9",
                        "jitter": 0.4,
                        "marker": {
                            "symbol": "circle"
                        },
                        "boxmean": true,
                        "pointpos": -2,
                        "boxpoints": "all",
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "text": ""
                            }
                        },
                        "name": "2020-2021",
                        "type": "box",
                        "xsrc": "fguadarrama:0:5deac7",
                        "jitter": 0.4,
                        "marker": {
                            "size": 6
                        },
                        "boxmean": true,
                        "notched": false,
                        "pointpos": -2,
                        "boxpoints": "all",
                        "hoverlabel": {
                            "align": "auto"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Edad al diagnóstico"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            15.055555555555555,
                            53.94444444444444
                        ],
                        "ticks": "inside",
                        "title": {
                            "text": "Años"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.7275721925133689,
                            1.61724064171123
                        ],
                        "ticks": "",
                        "title": {
                            "text": " "
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fguadarrama",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-07-27 14:47:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fguadarrama",
                "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": "2023-07-27T19:17:01.013171Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~volosplotly/183.embed",
            "fid": "volosplotly:183",
            "filename": "Nasdaq100_OptionsOI",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/volosplotly/183/9_01RK7HZEMWNBF5QD86JIXIVBOVLKU9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/volosplotly/183/2_SFF9ESQQW9SO2L0DWZZMAEG1LQVNQ6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/volosplotly/183/8_YEGLJ7AK4Z7J6CI2TYUVSS21GG38TS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/volosplotly/183/9_01RK7HZEMWNBF5QD86JIXIVBOVLKU9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/volosplotly:183",
                "plots": "https://api.plotly.com/v2/plots/volosplotly:183",
                "parent": "https://api.plotly.com/v2/folders/home?user=volosplotly"
            },
            "owner": "volosplotly",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~volosplotly/183/",
            "world_readable": true,
            "date_modified": "2023-07-27T23:21:27.686Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~volosplotly/183/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "NDX Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "NDX (Index Options)",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:42d1ce",
                        "visible": true,
                        "stackgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "QQQ Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "QQQ",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:82f790",
                        "visible": true,
                        "stackgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "AMZN Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "AMZN",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:9cb8b2",
                        "visible": true,
                        "stackgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "TSLA Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "TSLA",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:4f15d6",
                        "visible": true,
                        "stackgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "NVDA Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "NVDA",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:2ed7c1",
                        "visible": true,
                        "stackgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "AAPL Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "AAPL",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:5f4f07",
                        "visible": true,
                        "stackgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "MSFT Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "MSFT",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:f55f48",
                        "visible": true,
                        "stackgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "GOOGL Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "GOOGL",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:c8d5d6",
                        "visible": true,
                        "stackgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "NDX Open Interest Notional, x; AMZN Open Interest Notional, x; TSLA Open Interest Notional, x; NVDA Open Interest Notional, x; AAPL Open Interest Notional, x; MSFT Open Interest Notional, x; GOOGL Open Interest Notional, x; META Open Interest Notional, x; SQQQ Open Interest Notional, x; TQQQ Open Interest Notional, x; QQQ Open Interest Notional, x",
                                "y": "META Open Interest Notional, y"
                            }
                        },
                        "mode": "lines",
                        "name": "META",
                        "type": "scatter",
                        "xsrc": "volosplotly:182:8be368",
                        "ysrc": "volosplotly:182:e5e060",
                        "visible": true,
                        "stackgroup": 1
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 21,
                        "color": "rgb(62, 62, 62)",
                        "family": "Arial"
                    },
                    "title": {
                        "font": {
                            "size": 28,
                            "color": "black"
                        },
                        "text": "<b>Open Interest Notional ($)</b><br><i>Listed Nasdaq-100 Index, ETF, &amp; Constituant Options</i>"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2013-01-02",
                            "2023-07-26"
                        ],
                        "title": {
                            "text": "Date"
                        },
                        "nticks": 27,
                        "autorange": true,
                        "gridcolor": "rgb(198, 197, 197)",
                        "gridwidth": 2
                    },
                    "yaxis": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0,
                            2514122842543.1577
                        ],
                        "title": {
                            "text": "Notional ($)"
                        },
                        "nticks": 27,
                        "autorange": true,
                        "gridcolor": "rgb(198, 197, 197)",
                        "gridwidth": 2,
                        "tickangle": "auto"
                    },
                    "images": [
                        {
                            "x": 0.03,
                            "y": 1,
                            "layer": "above",
                            "sizex": 0.58,
                            "sizey": 0.1,
                            "source": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAO8AAABkCAQAAADEDq8pAAAAAmJLR0QA/4ePzL8AABBHSURBVHja7Z15fBRF+oefJNwCgqAgy3IoEFEBXXAXNMjtoiBiCC6LHMouN3KIGJBDFJRTgQCSEBACyhHMfRASBkHkRkSWI7JyyCW3wCYESGbq90easXqme45kZpjfh/72P0n3W6mZerqrq973rQoYMmTIkCFDhgwZMmTIkCFDhgwZMmTIkCFDhgwZMmTIkCFDhv5fahnCerzqUomKUokZmhZvSRa2xx0usZ9veJ/nXKotSiqbS20XSrwvlTDzvIH37vEr5b2OVz5OMI6HnNZ2Riqxxumnq851yX6u8fTKDT7Lp3gFgt8ZSZDD+rqp7Ns4+XSr3b5d7yO8+TzrY7wCwRb+5LDGBMn2ICUdWIZgcftlcx/hFex28iy5i3cab9NdOV7l77zJcCI5a1PrKZ50UOOj/C7ZvqNrV4KfJLuVBlx7vI6aryh4m2taBBDCZlWt56nroM4hkuV1qutYjZKsLvOIAVcL7w1qeh1voUK5JlkeopyuZSBbJctoTZtqqmf8TQOtNl5Bqo/wQiNOS7ZfOLAMJk+a7vxVw2KF9JfSDbD6eAVdfYQXgsmVsDV1YDlZ+qt7CLS5+rw0qMpx2NHfp3jNXLL+fJqKPsILgyXrDQ7sSnFIsnxLdS2IH6Vrwx3WV465RBFFFJFEMcGvaLRRPlnh8bIn8ebxutREET7DG8Auq7WFpx1YNsdstbxAJenKMKnGnU7H/mHWJz0XQTu/gRvAful77HcwFikSXnmGaaaFj/DCG5L9TIeWiyTLOdazVbhsPXubp1yocapifQmLRkd/r9RdNfKv69nOOQ+oIY1lD+g4EDyPt4TkeDzqZFh3WnLBNFLOLpXqm+zStw603shnEIzwC7iB/Mf6LQp4ydPv3jwAhktNNcZHeGGlVKK6Q8tOkqUJgGZSl51NGRe/d3nFBXKTAnJ53A/wyrP2cZ4fWuUp99B2KULzmI/w9pdKdHRiGyfZhhEovbnNhLjxzetwUXGoCLY4fV97W/WlGUQ8Ad7CC425Yz2X4SO8LaUS/Z3YVueq5Mx8Vyo5383v3pLbCHI4SQHT73HH/J31WxyhgjcmRnnWc7OkJuvhE7yNpRLhTq0HStYWCbX7zfIvpWQe+bx2D/GOllyuT3hn3psnzQyPSb7gyj7AW0cq8YELEwiThiumS5G+/xwEgt8QXHchWuYdvUw+BcrN+rq33Bp50tmOUrNF+QBvTamEK46GBpKLsvBYVcTvH0QGggJOYObYPfF2NeaGdb7yqfe8Vnmq82ul7q+N3+GFSSq4xYkPVSIbwe/8yi1+dhJ59rxqcIoc5dnN8PwATw+vPIDJprTf4a0lTYcEy4rVBg24iuACFzGTTbAP4dYmm/Ncx4LgOFU8X4EeXvUAZoLf4V1nk2XStFit0IF8BGe5wCUO0spHcJ/kNCc5xy0EN3nGG1Xo45VjrLek8Zw/4O1sN7D6yWGSjnMVunOOcZ5zHHYSlPCMmnOFM5xSxv69vVOJPl4I5pb16mbrVNsbeGu5NXKuqIoS3z3GFrMlFiMQ7OMwR/medVTzKtyB3OQIPyve8ghvVeMI7x+ud4GgrxfxPiGVGOnUWs59vil9/gbFaolSbEEg+JE97CSZLfTynPdIpYeJxYKJI0oIdmsxe54i4y3NEbvRqTfw/kUq8bYT21aSK+MHXlFlXAYUs9mPK9mYO0hiMytJ5W8ebu8AenOJM6TxIxcQCM468bJ7Ea+6MWO8hlcOCbZ2aCnfcGaaA0lS2QHFbI1G3EAgOE4CiSQRxWLidUOj7qsVOzGzhhRMXFECmF5dR+EML8RIzdfeS3gjpBKO33kz7BwutciRXHo1i9ker2FGUMAVFmJiDiY+JIIEuhSzAw3kFTaSww98xrck8T9lYjfYu+M353irKJEVgeC/lPUK3oNW+2MO7ZpI4Y4rVFXOTnQ5DdAVjVN6hnOsYQWLGY2J9xjLBuYU0W3ZiBns4DJ7Gc9aVvKtdby8DO41XugrNd9UL+Bt52LUpwR7NSNLpciWzncv9tvxawQFWDjADsaxgUkMJYPPCGMmGXzJP3nUpb9UkU7MIJPd7CadQSxgLdM5wK8K3L0uR6e9iheyJAdCS4/jTZfsX3RgN1Y3V7KDdOWS9akuqsqyC8EVLnKQvXzJSDYykrZEsZ5JdOItlpBGIjMYTigtqEll5ajOk7SkBx/yNekk8g3JmJhKO6aTTD9S2Us2V8lDcMml9Y4+wVtfcuEf9TDerirnRICDz3DTQaZznMdclIWe4DMILnCIXaSQyUz6kUwkzQhhBuv5hol04WU60ZfxLFAyG1cTzXQmMJXZLCSRJMbRglf4mlX0Jppv2Ukmh7iGoMA3KXyu4VW/3zyJt7qUfischMMC2CjZLbS7/mf+J10vfqZSM24iuMhPJLKJFWQxidbMJovPaUUlWjCMecSTSDqJxJJFOgmkkkw8s+jDM1SmC1+QyRheJpJUEkgmmr2cQiB43zd+T1fxqrOMPYW3Ovsk2yyHXh45PlTFSdd90gNLP3tgIY8DpJPCPDKZTzwr6MizjCeRdObxNm2ppwq3lKUO7RjAQtKJYxjN6EMa0USykUHEs5Fj5CGI9ZLDpMh41VnGnsHbUEobEFzhz7qW6jWCb+ncgIclm8890DZTERwhmSiSmcVkTExmAhkspyc1qE8oI5lLHOuJJYN0UoglglF0oT6NGUUya3mXjzDRk8FksJp9HCWfQ75bd+w63rteWc/grcx0yaMtuEMHBzXHS5bf6975L0ouGE9su1CYLruHcFJ4BxND6M8G5tCBviwhjTg+YwTdaE9rmtKW7gziA5aQTjLT6UR7lpLIq7xAGnNJJ4ENHOZaMZ2nXsP7oN26XOd4Q3lMOhrQjPYMJlUaJhVGpMIc1Cundxc4DJytkSwPUKrYrVOYLrubF1nPUAZgYiQhRLCBabTnQYJpR18GEU44I+hNJ1rwKJV4jflkMZn6/IU45jKRVKaxgnVYipg05AO80MNtvK4c5xxOh9Q31Vwn73J5SelED7RPHS5wmu00ZwgZNCOMVKII4VnGkEAa6/iUUfyb7vTgHaawljRWM5hgStCVBL6gMymMYSFT+BDBx+C/eCHFw3gtrHaSSLNMtci7kpPPN1qyvu1wzb+rCuE2P5LJCKqzhBiCqc8UMllENypThqdpT1d68SYdacIDwCOEsoQMRvIUi1lKU9IIZSQ5pPl6wYu7eGurJiDFw2smwam7vo1qtwzni7LVGzDs8Ehz/gsz3/ERCdQkmOXE0AJ4jAGsJoUUIplIOOF8zHySSGMF/alDQxYTR1O6kcWTDGUXh+2yTv0OL4wpNt7bHGUVg1wIhJXjF6ncdy5NJ9Tbpwz1SCvNYScmXiKZDyhDPaaSxWSeU8IMNWlKc1rzDLUpQQD1GUkqUTSkGsuYRhlmspxjNMbnetg67HE1CTRIGipp70pVQTWcsj0ecmPOV1ZVsqKLpWpLZTyT+RhEBgsw8RzdMDGAsgQQwkckks5ipjCCfzOcicwhmTTm0ZnSlGM8aTxHJWIZwi56YshvVYlDDCCRtylJbzKZrDwOAdSgMW0Joz3NqKekstbhE7J4HWiBiRcxSctVDfmlGnCBrkxgJQ8BbYhkA7N4STUwLEcbJpHKcl4AHmAmy3mYZDZTwmhAf1cHcuhGc7LorwzZmvAuS0kjmSSSSGIV79GCkkAgvdhERyqQxWkvp+UZ8pCGU8AIghiMiSE8oOuRewcTIyjNI2Rx2uP5Woa8pkj2soQKlKQnicQxlNbUUKZktWnJUNYQTyglgecxsarY+V8eUXn+yRes5ium0EZ3bFuToUQRSzRjqK9xvRfv69zToQxTeZfCaatpV4Nw1QRiOGM1jtE2pcrQlQi+ZjWz6arKinpKs/wfh7uRm1KkMoxNike7PJ15jyhiiSWW+YyhCw8qY/5PWck/7Bbg3ROFcg7BEUxs4jyCnzRCAaX5jNvksp41JHAWMzF2E6NtCOZp1pDAeem3pgiuaUaI/oagn/T7ZfK5anecsXknHkdwlu/I4hcEZ6SEnDdU5XIQ3FCdcX/RVlU2UY8FrKWJjkVpBmKiE4+ToQoX3iP1w4zJ6sALoCO/kG+zq1I5NmHmE+uzGUgY58i2QbQNgVlzjY49XkGaS3i3O/n0r3OHk3S2+qeasAFh93wXqi/CA5GkRqRRilosIpF+0r4cQdSgNfPYQF9KUI4sByFOn+lpbpFoM3CvygkuKd1MoSI0sojrcpbvVff/NnI4wX81dmSyx3tQWvlQdLy1uM5JG+dFAOso0NwhyzN4oYvS6VbgH8wnlXiSSCSBRYy11hvjdO9pnyidixrepzDV3rANMGummIbZrCrYxmXaYtGYxNvjHcRWrtnlJbuLNwahESmuRq7mxqKewgvjnGyXNIp3/QFuXcxM0hxC5LDO+tvnCF7QsAogm302eCESs12Izx7vAIK5aXfTuIf3IW7pXE/mZ6/iDSCGV3SvPq+s6PCD967QWbCcyCLrz/v5Taf8J1h42AbvAxzjmE3CiRbewvBEn2LgfVV307FwNnoVL5QhU2cHvEfJ0J0T+1ifc8OFyUE+63WudEdIU5xCvNAWi022kzbeQLsO2j28H+j0KnryJF6ozkaNEF9JUqjnL9P0aE67cJ8K1upc+7tqe+C7eCEKMy2d4oVgbpJSZLyfIhxuMupdvPCs3aAUFtHJf7wwyzjhgstDf+eZ9gje0MBbkV/5mbJO8UI4gl4O8P7GApvjj+szEW7tA+VpvBBmM4zs45EUIL/HC+2wMNsFvIF8z+/WqY093lwO2Byz/AgvTGWg9DTH+s3+sl7GC9HSLo/6eOEJ8qwdtHudsz/gDeArZU1yFTKd5oL5/N17yqV3b6zOtY467967HXS20kE7wlu4wuDNIuCdhnBp/2Zv4oXybOJxgohzaxzgE83hqgtWd3S3we+h+s9garyFHfQsF/AGsUvpoN3DOwHhVrjNO3ihNhtZIPVifqN+CJ2FiBHS1GYfF3WmT7OxSCt+bPHCEqWDdoy3sINOdhtvN4T05pM1UPMf5nkLL4TwCX6oOpgZpXE+iGtsVb3j2mpanWSPndcKVQd9imzKOsVbOIft6SbeauRrbkoMGzniU7x+qzROaIQAOiCYYv2tHmY2aTy/fW023LLHC+2xMMMFvCXYzWW6uOlzXqf573EqkaMZab0P8T7Nbbv1suXYT66ShXC3q7bfafkpLrLdJmJ0WaOGLynguFO8hbGrX9zE25Bb7LfbyXkBBZpDrvsQLwzCQrQU/mvCdgpsBgrl2YZgiTX1vDT9ucoJm+34tfE+yCmEC3hhPMLteO9QLOyiodRhR+nuUXdf4oVunCOXVKJZyg8I/qPxXwnKsZB8CtjDerZwHUG83RYi2nihAxaX8JZgtx3e25zROOSU9l5cxcxWlhPFJm5xWXfrs/sUL1SgF4uJ4ys+ppVukKEuo4khjpVM1ExFec0m/iM77+R3dFUGSM+brHoMUEWwwvlY81DvKVOVEaSwg80so4+Df+/UgEFGUqohQ4YMGTJkyJAhQ4YMGTJkyJAhQ4YMGTJkyJAhQ4b8Xv8HqJk5YCYhPWYAAAAASUVORK5CYII=",
                            "yanchor": "bottom"
                        }
                    ],
                    "legend": {
                        "x": 0.034727834600716795,
                        "y": -0.16549079778651551,
                        "font": {
                            "size": 24
                        },
                        "xanchor": "left",
                        "bordercolor": "rgb(255, 255, 255)",
                        "borderwidth": 40,
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 300,
                        "l": 300,
                        "r": 300,
                        "t": 150,
                        "pad": 0
                    },
                    "yaxis2": {
                        "side": "right",
                        "range": [
                            -1,
                            4
                        ],
                        "title": {
                            "text": ""
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "colorway": [
                        "#1f77b4",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "showlegend": true,
                    "plot_bgcolor": "white",
                    "paper_bgcolor": "white"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~volosplotly",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2017-07-15 02:05:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "volosplotly",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}