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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTA3KzE5JTNBNTIlM0E1MC4xMjU3ODQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wOCswMCUzQTEyJTNBMTAuMjUxMjcwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-08T00:12:10.251270Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~izzymillan123/1.embed",
            "fid": "izzymillan123:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/izzymillan123/1/9_RV7VW8U5G4YXZ9H7W60MXUOM6RII1M.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/izzymillan123/1/2_SID528TLQWK2EN39OFQFJQH8XH7DPJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/izzymillan123/1/8_1TT6NAB1AOUJR7WD6Z3CDMHBIXJW3J.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/izzymillan123/1/9_RV7VW8U5G4YXZ9H7W60MXUOM6RII1M.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/izzymillan123:1",
                "plots": "https://api.plotly.com/v2/plots/izzymillan123:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=izzymillan123"
            },
            "owner": "izzymillan123",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~izzymillan123/1/",
            "world_readable": true,
            "date_modified": "2024-04-08T00:12:10.267Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~izzymillan123/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "lat",
                                "lon": "lon",
                                "text": "text"
                            }
                        },
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "izzymillan123:0:64965c",
                        "lonsrc": "izzymillan123:0:0a8eb8",
                        "marker": {
                            "size": 8,
                            "color": "rgb(130, 11, 224)",
                            "symbol": "star"
                        },
                        "textsrc": "izzymillan123:0:9f3499",
                        "locationmode": "USA-states"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "National Sites in Florida"
                    },
                    "mapbox": {
                        "zoom": 5.5,
                        "pitch": 0,
                        "center": {
                            "lat": 28.685328,
                            "lon": -84.41501
                        },
                        "bearing": 0,
                        "lataxis": {
                            "range": [
                                23.628477,
                                33.742179
                            ]
                        },
                        "lonaxis": {
                            "range": [
                                -89.791067,
                                -79.03895299999999
                            ]
                        },
                        "accesstoken": "pk.eyJ1IjoicHJpbmNpcGxleiIsImEiOiJjam1taTE3dGowamRjM3FqcG50MGp0anEwIn0.XuaFZy4Tff6aTfjiQUdd9Q"
                    },
                    "autosize": true,
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~izzymillan123",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-05 14:51:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "izzymillan123",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T23:23:16.900487Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~linuxsudoguru/1.embed",
            "fid": "linuxsudoguru:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/linuxsudoguru/1/9_AGWGC533VAOQVBSJPGH3XWRLZDMJDB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/linuxsudoguru/1/2_T9ZA4XDFMMD58I9VHGK8D8LEOOFOVA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/linuxsudoguru/1/8_RQU9TSUQ767ZQ94LPGJ36PNOLDDXQU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/linuxsudoguru/1/9_AGWGC533VAOQVBSJPGH3XWRLZDMJDB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/linuxsudoguru:1",
                "plots": "https://api.plotly.com/v2/plots/linuxsudoguru:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=linuxsudoguru"
            },
            "owner": "linuxsudoguru",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~linuxsudoguru/1/",
            "world_readable": true,
            "date_modified": "2024-04-07T23:23:16.910Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~linuxsudoguru/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "cmax": "2",
                        "cmin": "-2",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": " - y"
                            }
                        },
                        "type": "surface",
                        "xsrc": "linuxsudoguru:0:922b19",
                        "ysrc": "linuxsudoguru:0:eb3653",
                        "zsrc": "linuxsudoguru:0:-922b19,eb3653",
                        "colorbar": {
                            "len": 1,
                            "lenmode": "fraction",
                            "tickfont": {
                                "color": "rgb(51, 51, 51)"
                            },
                            "thickness": 30,
                            "thicknessmode": "pixels"
                        },
                        "showscale": true,
                        "colorscale": [
                            [
                                0,
                                "rebeccapurple"
                            ],
                            [
                                0.4,
                                "rebeccapurple"
                            ],
                            [
                                0.45,
                                "blue"
                            ],
                            [
                                0.5,
                                "green"
                            ],
                            [
                                0.55,
                                "yellow"
                            ],
                            [
                                0.6,
                                "red"
                            ],
                            [
                                1,
                                "red"
                            ]
                        ],
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#00FF00",
                            "zerolinewidth": 4
                        },
                        "yaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "zerolinecolor": "#FF0000",
                            "zerolinewidth": 4
                        },
                        "zaxis": {
                            "type": "linear",
                            "color": "rgb(51, 51, 51)",
                            "range": [
                                "-2",
                                "2"
                            ],
                            "zerolinecolor": "#0000FF",
                            "zerolinewidth": 4
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -0.19884935027097136,
                                "y": -0.22525141010416574,
                                "z": 0.09275309203587469
                            },
                            "center": {
                                "x": 0.016231753505600164,
                                "y": -0.006307513828874347,
                                "z": 0.04000220575057057
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "autosize": true,
                    "annotations": [
                        {
                            "x": 1,
                            "y": 0,
                            "font": {
                                "color": "rgb(51, 51, 51)"
                            },
                            "text": "Min: -0.25225<br>Max: 0.33175<br>Var: 0.584",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgba(0, 0, 0, 0)",
                    "paper_bgcolor": "rgba(0, 0, 0, 0)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~linuxsudoguru",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-07 23:22:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "linuxsudoguru",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T22:58:27.890195Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~anushreejayesh.shah/1.embed",
            "fid": "anushreejayesh.shah:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/anushreejayesh.shah/1/9_Z7MIP3PJ60LWEL63NYQ8UO8ZZVPMCS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/anushreejayesh.shah/1/2_9HC7PWULRW8VSI8899L5ZZR3ETH3J7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/anushreejayesh.shah/1/8_J4N2XT08BQF7DZU47MGZ6FQU923FIM.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/anushreejayesh.shah/1/9_Z7MIP3PJ60LWEL63NYQ8UO8ZZVPMCS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/anushreejayesh.shah:1",
                "plots": "https://api.plotly.com/v2/plots/anushreejayesh.shah:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=anushreejayesh.shah"
            },
            "owner": "anushreejayesh.shah",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 6,
            "web_url": "https://chart-studio.plotly.com/~anushreejayesh.shah/1/",
            "world_readable": true,
            "date_modified": "2024-04-07T22:58:27.901Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~anushreejayesh.shah/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E"
                            }
                        },
                        "mode": "markers",
                        "name": "trace 0",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "anushreejayesh.shah:0:a097b3",
                        "ysrc": "anushreejayesh.shah:0:e0bc62",
                        "marker": {
                            "line": {
                                "color": "#444",
                                "width": 0
                            },
                            "size": 6,
                            "color": "rgb(59, 126, 229)",
                            "symbol": "circle",
                            "opacity": 1,
                            "gradient": {
                                "type": "none"
                            },
                            "maxdisplayed": 0
                        },
                        "error_x": {
                            "visible": false
                        },
                        "error_y": {
                            "visible": false
                        },
                        "hoveron": "points",
                        "opacity": 1,
                        "visible": true,
                        "xperiod": 0,
                        "yperiod": 0,
                        "selected": {
                            "marker": {
                                "opacity": 1
                            }
                        },
                        "hoverinfo": "all",
                        "hovertext": "",
                        "xcalendar": "gregorian",
                        "ycalendar": "gregorian",
                        "cliponaxis": true,
                        "hoverlabel": {
                            "font": {
                                "size": 13,
                                "family": "Arial, sans-serif"
                            },
                            "align": "auto",
                            "namelength": 15
                        },
                        "showlegend": true,
                        "stackgroup": "",
                        "unselected": {
                            "marker": {
                                "opacity": 0.2
                            }
                        },
                        "legendgroup": "",
                        "hovertemplate": "",
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33,
                            34,
                            35,
                            36,
                            37,
                            38,
                            39,
                            40,
                            41,
                            42,
                            43,
                            44,
                            45,
                            46,
                            47,
                            48,
                            49,
                            50,
                            51,
                            52
                        ]
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "anushreejayesh.shah:0:d18e85",
                        "ysrc": "anushreejayesh.shah:0:8dbd69",
                        "visible": true,
                        "stackgroup": null,
                        "selectedpoints": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            6,
                            7,
                            10,
                            14,
                            15,
                            17,
                            18,
                            19,
                            21,
                            22,
                            23,
                            25,
                            26,
                            27,
                            30,
                            33,
                            34,
                            35,
                            37,
                            38,
                            40,
                            41,
                            45,
                            50
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            22789.663211593404,
                            65223.45583752747
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            27127.17201898559,
                            70710.64939420173
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": false
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 1,
                        "font": {
                            "size": 12,
                            "color": "#2a3f5f",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "title": {
                            "text": ""
                        },
                        "valign": "middle",
                        "bgcolor": "white",
                        "xanchor": "left",
                        "yanchor": "auto",
                        "itemclick": "toggle",
                        "itemwidth": 30,
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "bordercolor": "#444",
                        "borderwidth": 0,
                        "orientation": "v",
                        "itemdoubleclick": "toggleothers"
                    },
                    "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"
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~anushreejayesh.shah",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-07 22:58:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "anushreejayesh.shah",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T22:28:33.367292Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Alenich/1.embed",
            "fid": "Alenich:1",
            "filename": "Studie",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Alenich/1/9_NR920DU3TOOZ3KY81VKE0CGFNIQ1NT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Alenich/1/2_7RAYXTODP9DSV4ZF39R87YDZI74FPN.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Alenich/1/8_M7LLBGTTMILI4E0AR9QPX44K9NXOT6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Alenich/1/9_NR920DU3TOOZ3KY81VKE0CGFNIQ1NT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Alenich:1",
                "plots": "https://api.plotly.com/v2/plots/Alenich:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Alenich"
            },
            "owner": "Alenich",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Alenich/1/",
            "world_readable": true,
            "date_modified": "2024-04-07T22:28:49.668Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Alenich/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "type": "bar",
                        "xsrc": "Alenich:0:7ecb27",
                        "ysrc": "Alenich:0:50444e",
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Höchstverdienende eSports-Länder in Europa im Jahr 2023, nach gewonnenem Preisgeld"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            15.378947368421052
                        ],
                        "title": {
                            "text": "Preisgeld in Millionen US-Dollar"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            9.5
                        ],
                        "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"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Alenich",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-07 22:28:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Alenich",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T22:12:25.244114Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mercedesaa/1.embed",
            "fid": "mercedesaa:1",
            "filename": "mujeresaybbbb",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mercedesaa/1/9_FQV306JMT699LN66P95POZXN6T2OEV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mercedesaa/1/2_2YHZMKUBIXJSSBWFK46NJKDV3CBXYK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mercedesaa/1/8_9K0EFTTV34FO3YDX0TQW51TTV7LZ6B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mercedesaa/1/9_FQV306JMT699LN66P95POZXN6T2OEV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mercedesaa:1",
                "plots": "https://api.plotly.com/v2/plots/mercedesaa:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=mercedesaa"
            },
            "owner": "mercedesaa",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~mercedesaa/1/",
            "world_readable": true,
            "date_modified": "2024-04-09T15:16:44.619Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mercedesaa/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "Media de estatura de hombres   tomada por el percentil    2009 de Argentina (OMS)  ",
                        "type": "scatter",
                        "ysrc": "mercedesaa:0:26626e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": true,
                        "stackgroup": 1,
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "name": "Curso A",
                        "type": "scatter",
                        "xsrc": "mercedesaa:0:65bf95",
                        "ysrc": "mercedesaa:0:9e5e35",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "Curso B",
                        "type": "scatter",
                        "ysrc": "mercedesaa:0:c5854b",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Arial"
                    },
                    "title": {
                        "x": 0.22,
                        "text": "<b>Estatura hombres curso A y B</b>"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0.5,
                            22
                        ],
                        "tick0": 9,
                        "ticks": "inside",
                        "title": {
                            "text": "Alumnos (n°) curso A y B"
                        },
                        "domain": [
                            0,
                            0.625
                        ],
                        "mirror": false,
                        "nticks": 10,
                        "ticklen": 5,
                        "showline": true,
                        "tickfont": {
                            "color": "rgb(156, 151, 151)"
                        },
                        "tickmode": "auto",
                        "autorange": false,
                        "gridcolor": "rgb(224, 222, 222)",
                        "gridwidth": 1,
                        "automargin": false,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                -2.212942061700527,
                                35.90594431903687
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 13,
                        "range": [
                            120,
                            170
                        ],
                        "tick0": 10,
                        "ticks": "inside",
                        "title": {
                            "text": "Estatura (cm +/-3)"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "mirror": false,
                        "nticks": 10,
                        "ticklen": 5,
                        "showline": true,
                        "tickfont": {
                            "size": 12
                        },
                        "tickmode": "auto",
                        "autorange": false,
                        "gridcolor": "rgb(224, 222, 222)",
                        "gridwidth": 1,
                        "automargin": false,
                        "showspikes": true,
                        "tickprefix": "",
                        "showexponent": "all",
                        "zerolinecolor": "rgb(190, 175, 175)",
                        "separatethousands": false
                    },
                    "legend": {
                        "x": 1.7000000000000002,
                        "y": 0.8335802469135802,
                        "font": {
                            "size": 12,
                            "family": "Arial"
                        },
                        "title": {
                            "font": {
                                "size": 12
                            },
                            "text": "<br>"
                        },
                        "valign": "middle",
                        "xanchor": "auto",
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 71,
                        "t": 104,
                        "pad": 0
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "lasso",
                    "separators": ", ",
                    "showlegend": true,
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mercedesaa",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-07 22:10:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mercedesaa",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T22:10:44.456655Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~557276/57.embed",
            "fid": "557276:57",
            "filename": "Plot 57",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/557276/57/9_TB4K01QUWARG860COBSDBNZV91D3D5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/557276/57/2_0P08QPV0AZZY8EWMDJNT8C3SC3P9FG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/557276/57/8_OKPCTY3MR4UW0O9248UWXPQOKDEAOJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/557276/57/9_TB4K01QUWARG860COBSDBNZV91D3D5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/557276:57",
                "plots": "https://api.plotly.com/v2/plots/557276:57",
                "parent": "https://api.plotly.com/v2/folders/home?user=557276"
            },
            "owner": "557276",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~557276/57/",
            "world_readable": true,
            "date_modified": "2024-04-07T22:10:44.469Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~557276/57/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "557276:56:b981be",
                        "ysrc": "557276:56:1bc104",
                        "error_y": {
                            "visible": true,
                            "symmetric": true
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "title": {
                            "text": "Potato Type"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            2.9757894736842103
                        ],
                        "title": {
                            "text": "Average Osmolarity (M)"
                        },
                        "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/~557276",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/58.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-10-08 16:46:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "557276",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T21:31:10.125653Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lswallis/41.embed",
            "fid": "lswallis:41",
            "filename": "sicily-pins",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lswallis/41/9_0UDXQGIPGMDPERCJOE8GBJOOAAP0E0.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lswallis/41/2_944EDZOMFLOT3KKX4PZCB51SRY6CZ0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lswallis/41/8_YP2ZD0LNT96GBL1YADC04E4S0CN5V4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lswallis/41/9_0UDXQGIPGMDPERCJOE8GBJOOAAP0E0.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lswallis:41",
                "plots": "https://api.plotly.com/v2/plots/lswallis:41",
                "parent": "https://api.plotly.com/v2/folders/home?user=lswallis"
            },
            "owner": "lswallis",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~lswallis/41/",
            "world_readable": true,
            "date_modified": "2024-04-07T21:31:10.135Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lswallis/41/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:40:4855f6",
                        "lonsrc": "lswallis:40:d161d6",
                        "marker": {
                            "size": 25,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": false,
                        "legendgroup": "",
                        "hovertextsrc": "lswallis:40:8244d4",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    }
                ],
                "layout": {
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "mapbox": {
                        "zoom": 15,
                        "style": "open-street-map",
                        "center": {
                            "lat": 37.06117999999999,
                            "lon": 15.290055
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lswallis",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-03-24 22:09:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lswallis",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T20:07:29.768956Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lswallis/39.embed",
            "fid": "lswallis:39",
            "filename": "cdmx-pins",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lswallis/39/9_WD9WBOW198YCYRCGVISEAOP44E1D32.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lswallis/39/2_MEK38YW35WE4DX1FLWMGX2ANXQLOXG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lswallis/39/8_S776KQAV783YQTOA5T3CA6P48SSI1N.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lswallis/39/9_WD9WBOW198YCYRCGVISEAOP44E1D32.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lswallis:39",
                "plots": "https://api.plotly.com/v2/plots/lswallis:39",
                "parent": "https://api.plotly.com/v2/folders/home?user=lswallis"
            },
            "owner": "lswallis",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lswallis/39/",
            "world_readable": true,
            "date_modified": "2024-04-07T20:07:29.780Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lswallis/39/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Travel",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:b33d67",
                        "lonsrc": "lswallis:38:5161c9",
                        "marker": {
                            "size": 25,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Travel",
                        "hovertextsrc": "lswallis:38:5091c1",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Travel<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Chilling",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:ecb782",
                        "lonsrc": "lswallis:38:eac389",
                        "marker": {
                            "size": 25,
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Chilling",
                        "hovertextsrc": "lswallis:38:c47122",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Chilling<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Cultural Venue",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:2f962d",
                        "lonsrc": "lswallis:38:790b07",
                        "marker": {
                            "size": 25,
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Cultural Venue",
                        "hovertextsrc": "lswallis:38:d0bd7c",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Cultural Venue<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Historic Site",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:ca211e",
                        "lonsrc": "lswallis:38:eea592",
                        "marker": {
                            "size": 25,
                            "color": "#ab63fa",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Historic Site",
                        "hovertextsrc": "lswallis:38:170ab3",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Historic Site<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Religious Site",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:d01108",
                        "lonsrc": "lswallis:38:69234e",
                        "marker": {
                            "size": 25,
                            "color": "#FFA15A",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Religious Site",
                        "hovertextsrc": "lswallis:38:09f37f",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Religious Site<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Viewpoint",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:a15632",
                        "lonsrc": "lswallis:38:2e17b0",
                        "marker": {
                            "size": 25,
                            "color": "#19d3f3",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Viewpoint",
                        "hovertextsrc": "lswallis:38:84aa89",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Viewpoint<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Museum",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:4cd3b9",
                        "lonsrc": "lswallis:38:0b6dbe",
                        "marker": {
                            "size": 25,
                            "color": "#FF6692",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Museum",
                        "hovertextsrc": "lswallis:38:f2e612",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Museum<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:9991dd",
                        "lonsrc": "lswallis:38:626df0",
                        "marker": {
                            "size": 25,
                            "color": "#B6E880",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": false,
                        "legendgroup": "",
                        "hovertextsrc": "lswallis:38:c276bb",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Market",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:88af5d",
                        "lonsrc": "lswallis:38:688fe0",
                        "marker": {
                            "size": 25,
                            "color": "#FF97FF",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Market",
                        "hovertextsrc": "lswallis:38:057fdd",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Market<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Park",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:aa60f3",
                        "lonsrc": "lswallis:38:c39cfb",
                        "marker": {
                            "size": 25,
                            "color": "#FECB52",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Park",
                        "hovertextsrc": "lswallis:38:378e0b",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Park<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Square",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:7b4c6e",
                        "lonsrc": "lswallis:38:0fba7d",
                        "marker": {
                            "size": 25,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Square",
                        "hovertextsrc": "lswallis:38:7c0571",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Square<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Live Music/Food",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:9a120e",
                        "lonsrc": "lswallis:38:b0ccaf",
                        "marker": {
                            "size": 25,
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Live Music/Food",
                        "hovertextsrc": "lswallis:38:e3b118",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Live Music/Food<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Cultural Experience",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:8f67c3",
                        "lonsrc": "lswallis:38:059ade",
                        "marker": {
                            "size": 25,
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Cultural Experience",
                        "hovertextsrc": "lswallis:38:067223",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Cultural Experience<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Tour",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:ca6de0",
                        "lonsrc": "lswallis:38:c8d840",
                        "marker": {
                            "size": 25,
                            "color": "#ab63fa",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Tour",
                        "hovertextsrc": "lswallis:38:fab72d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Tour<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Neighborhood Visit",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:a39922",
                        "lonsrc": "lswallis:38:be8615",
                        "marker": {
                            "size": 25,
                            "color": "#FFA15A",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Neighborhood Visit",
                        "hovertextsrc": "lswallis:38:96167a",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Neighborhood Visit<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Sports Entertainment",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:6497dd",
                        "lonsrc": "lswallis:38:4aa69b",
                        "marker": {
                            "size": 25,
                            "color": "#19d3f3",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Sports Entertainment",
                        "hovertextsrc": "lswallis:38:ec438d",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Sports Entertainment<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Art Museum",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:2fd04b",
                        "lonsrc": "lswallis:38:cb7557",
                        "marker": {
                            "size": 25,
                            "color": "#FF6692",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Art Museum",
                        "hovertextsrc": "lswallis:38:cd7dd5",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Art Museum<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Monument",
                        "type": "scattermapbox",
                        "latsrc": "lswallis:38:3e277f",
                        "lonsrc": "lswallis:38:d04df2",
                        "marker": {
                            "size": 25,
                            "color": "#B6E880",
                            "symbol": "circle"
                        },
                        "cluster": {
                            "enabled": true
                        },
                        "subplot": "mapbox",
                        "showlegend": true,
                        "legendgroup": "Monument",
                        "hovertextsrc": "lswallis:38:5966cc",
                        "hovertemplate": "<b>%{hovertext}</b><br><br>Activity Type=Monument<br>Latitude=%{lat}<br>Longitude=%{lon}<extra></extra>"
                    }
                ],
                "layout": {
                    "legend": {
                        "title": {
                            "text": "Activity Type"
                        },
                        "tracegroupgap": 0
                    },
                    "mapbox": {
                        "zoom": 15,
                        "style": "open-street-map",
                        "center": {
                            "lat": 19.413559211619432,
                            "lon": -99.14275471927172
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lswallis",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-03-24 22:09:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lswallis",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T19:59:14.792853Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~loida89/5.embed",
            "fid": "loida89:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/loida89/5/9_79TP5BV9V8UNEJMCHLM5VK9Z7F0J5O.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/loida89/5/2_1Q5FSBC8814ZONZ15JQZ8GV7DUF3PP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/loida89/5/8_OAITIULROCKJ2QBNB938CFLFPKELJB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/loida89/5/9_79TP5BV9V8UNEJMCHLM5VK9Z7F0J5O.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/loida89:5",
                "plots": "https://api.plotly.com/v2/plots/loida89:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=loida89"
            },
            "owner": "loida89",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~loida89/5/",
            "world_readable": true,
            "date_modified": "2024-04-07T22:33:03.463Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~loida89/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 0, lat; Trace 1, lat; Trace 2, lat",
                                "lon": "Trace 0, lon; Trace 1, lon; Trace 2, lon",
                                "text": "Trace 0, text; Trace 1, text; Trace 2, text; Trace 5, text"
                            }
                        },
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "loida89:4:346448",
                        "lonsrc": "loida89:4:2f3d80",
                        "marker": {
                            "cmax": 1890,
                            "cmin": 200,
                            "meta": {
                                "columnNames": {
                                    "color": "Trace 0, color"
                                }
                            },
                            "size": 8,
                            "symbol": "circle",
                            "colorbar": {
                                "ticks": "outside",
                                "title": {
                                    "side": "right"
                                },
                                "thickness": 10,
                                "ticksuffix": " Euros",
                                "outlinecolor": "rgba(68, 68, 68, 0)"
                            },
                            "colorsrc": "loida89:4:2e7f3e",
                            "showscale": true,
                            "colorscale": "Rainbow"
                        },
                        "textsrc": "loida89:4:a0e581"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 0, lat; Trace 1, lat; Trace 2, lat",
                                "lon": "Trace 0, lon; Trace 1, lon; Trace 2, lon",
                                "text": "Trace 0, text; Trace 1, text; Trace 2, text; Trace 5, text"
                            }
                        },
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "loida89:4:346448",
                        "lonsrc": "loida89:4:2f3d80",
                        "marker": {
                            "cmax": 145,
                            "cmin": 11,
                            "meta": {
                                "columnNames": {
                                    "color": "Trace 1, color"
                                }
                            },
                            "size": 8,
                            "symbol": "circle",
                            "colorbar": {
                                "ticks": "outside",
                                "title": {
                                    "side": "right"
                                },
                                "thickness": 10,
                                "ticksuffix": " M^2",
                                "outlinecolor": "rgba(68, 68, 68, 0)"
                            },
                            "colorsrc": "loida89:4:829930",
                            "showscale": true,
                            "colorscale": "Rainbow"
                        },
                        "textsrc": "loida89:4:a0e581"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 0, lat; Trace 1, lat; Trace 2, lat",
                                "lon": "Trace 0, lon; Trace 1, lon; Trace 2, lon",
                                "text": "Trace 0, text; Trace 1, text; Trace 2, text; Trace 5, text"
                            }
                        },
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "loida89:4:346448",
                        "lonsrc": "loida89:4:2f3d80",
                        "marker": {
                            "cmax": 7,
                            "cmin": 1,
                            "meta": {
                                "columnNames": {
                                    "color": "Trace 2, color"
                                }
                            },
                            "size": 8,
                            "symbol": "circle",
                            "colorbar": {
                                "ticks": "outside",
                                "title": {
                                    "side": "right"
                                },
                                "thickness": 10,
                                "ticksuffix": " Rooms",
                                "outlinecolor": "rgba(68, 68, 68, 0)"
                            },
                            "colorsrc": "loida89:4:bd521e",
                            "showscale": true,
                            "colorscale": "Rainbow"
                        },
                        "textsrc": "loida89:4:a0e581"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 3, lat; Trace 4, lat",
                                "lon": "Trace 3, lon; Trace 4, lon",
                                "text": "Trace 3, text; Trace 4, text; Trace 6, text"
                            }
                        },
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "loida89:4:5adb26",
                        "lonsrc": "loida89:4:b161c1",
                        "marker": {
                            "cmax": 134,
                            "cmin": 10,
                            "meta": {
                                "columnNames": {
                                    "color": "Trace 3, color"
                                }
                            },
                            "size": 8,
                            "symbol": "circle",
                            "colorbar": {
                                "ticks": "outside",
                                "title": {
                                    "side": "right"
                                },
                                "thickness": 10,
                                "ticksuffix": " Euros",
                                "outlinecolor": "rgba(68, 68, 68, 0)"
                            },
                            "colorsrc": "loida89:4:09e78a",
                            "showscale": true,
                            "colorscale": "Rainbow"
                        },
                        "textsrc": "loida89:4:295681"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 3, lat; Trace 4, lat",
                                "lon": "Trace 3, lon; Trace 4, lon",
                                "text": "Trace 3, text; Trace 4, text; Trace 6, text"
                            }
                        },
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "loida89:4:5adb26",
                        "lonsrc": "loida89:4:b161c1",
                        "marker": {
                            "cmax": 10,
                            "cmin": 1,
                            "meta": {
                                "columnNames": {
                                    "color": "Trace 4, color"
                                }
                            },
                            "size": 8,
                            "symbol": "circle",
                            "colorbar": {
                                "ticks": "outside",
                                "title": {
                                    "side": "right"
                                },
                                "thickness": 10,
                                "ticksuffix": " People",
                                "outlinecolor": "rgba(68, 68, 68, 0)"
                            },
                            "colorsrc": "loida89:4:4c529f",
                            "showscale": true,
                            "colorscale": "Rainbow"
                        },
                        "textsrc": "loida89:4:295681"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 5, lat",
                                "lon": "Trace 5, lon",
                                "text": "Trace 0, text; Trace 1, text; Trace 2, text; Trace 5, text"
                            }
                        },
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "loida89:4:b70252",
                        "lonsrc": "loida89:4:028dd3",
                        "marker": {
                            "cmax": 1151,
                            "cmin": 200,
                            "meta": {
                                "columnNames": {
                                    "color": "Trace 5, color"
                                }
                            },
                            "size": 8,
                            "symbol": "circle",
                            "colorbar": {
                                "ticks": "outside",
                                "title": {
                                    "side": "right"
                                },
                                "thickness": 10,
                                "ticksuffix": " Euros",
                                "outlinecolor": "rgba(68, 68, 68, 0)"
                            },
                            "colorsrc": "loida89:4:85826d",
                            "showscale": true,
                            "colorscale": "Rainbow"
                        },
                        "textsrc": "loida89:4:a0e581"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 6, lat",
                                "lon": "Trace 6, lon",
                                "text": "Trace 3, text; Trace 4, text; Trace 6, text"
                            }
                        },
                        "mode": "markers",
                        "type": "scattermapbox",
                        "latsrc": "loida89:4:c7f5a7",
                        "lonsrc": "loida89:4:6e3930",
                        "marker": {
                            "cmax": 87,
                            "cmin": 10,
                            "meta": {
                                "columnNames": {
                                    "color": "Trace 6, color"
                                }
                            },
                            "size": 8,
                            "symbol": "circle",
                            "colorbar": {
                                "ticks": "outside",
                                "title": {
                                    "side": "right"
                                },
                                "thickness": 10,
                                "ticksuffix": " Euros",
                                "outlinecolor": "rgba(68, 68, 68, 0)"
                            },
                            "colorsrc": "loida89:4:e458c6",
                            "showscale": true,
                            "colorscale": "Rainbow"
                        },
                        "textsrc": "loida89:4:295681"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Monthly, Daily, and Produced Data"
                    },
                    "width": 900,
                    "height": 700,
                    "mapbox": {
                        "zoom": 11,
                        "pitch": 0,
                        "style": "light",
                        "center": {
                            "lat": 45.18,
                            "lon": 5.72
                        },
                        "bearing": 0,
                        "accesstoken": "pk.eyJ1IjoicjEyM3NwZW5jbmVyIiwiYSI6ImNqY3cxanVuMjBqNnozM3M2am0zeWNvZncifQ.MBSVpg6B7eVFPutPJXjD5Q"
                    },
                    "autosize": true,
                    "hovermode": "closest",
                    "updatemenus": [
                        {
                            "type": "buttons",
                            "active": -1,
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Monthly Price"
                                        }
                                    ],
                                    "label": "Monthly Price",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Monthly Price Adjusted"
                                        }
                                    ],
                                    "label": "Monthly Price Adjusted",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Monthly Surface"
                                        }
                                    ],
                                    "label": "Monthly Surface",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Monthly Surface"
                                        }
                                    ],
                                    "label": "Monthly Pieces",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Daily Price"
                                        }
                                    ],
                                    "label": "Day Price",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true
                                            ]
                                        },
                                        {
                                            "title": "Day Price Adjusted"
                                        }
                                    ],
                                    "label": "Day Price Adjusted",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                false,
                                                false
                                            ]
                                        },
                                        {
                                            "title": "Daily Capacity"
                                        }
                                    ],
                                    "label": "Day Capacity",
                                    "method": "update"
                                }
                            ]
                        }
                    ]
                }
            },
            "height": 700,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~loida89",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 16:19:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "loida89",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-07T19:52:50.125784Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~DLaz/74.embed",
            "fid": "DLaz:74",
            "filename": "Judicial constraints on the executive index | Greece",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/DLaz/74/9_5EZ7HXFWQ7EOWMB44B7R1AAZZ97YTR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/DLaz/74/2_BPY8AHG8FULTYJ2DG1HRG54PIISW04.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/DLaz/74/8_Z4HMPSP2U7L223YUXOXX2VLIAMVRA3.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/DLaz/74/9_5EZ7HXFWQ7EOWMB44B7R1AAZZ97YTR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/DLaz:74",
                "plots": "https://api.plotly.com/v2/plots/DLaz:74",
                "parent": "https://api.plotly.com/v2/folders/home?user=DLaz"
            },
            "owner": "DLaz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 309,
            "web_url": "https://chart-studio.plotly.com/~DLaz/74/",
            "world_readable": true,
            "date_modified": "2024-04-23T14:35:24.109Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~DLaz/74/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(180, 134, 31)",
                            "shape": "linear"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "data.1.x",
                                "y": "data.1.y"
                            }
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "DLaz:73:fe0c81",
                        "ysrc": "DLaz:73:e64789",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(31,119,180,1)"
                            },
                            "size": 8,
                            "color": "rgb(200, 145, 4)"
                        },
                        "error_x": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "error_y": {
                            "color": "rgba(31,119,180,1)"
                        },
                        "hovertemplate": ""
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 12
                        },
                        "text": "Judicial constraints on the executive index in Greece | 2010 -2023"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2009.2101096224117,
                            2023.7898903775883
                        ],
                        "title": {
                            "text": "Year"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "automargin": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.7184838076545633,
                            0.8915161923454367
                        ],
                        "title": {
                            "text": "Index from 0 to 1"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "automargin": true
                    },
                    "images": [
                        {
                            "x": 0.26,
                            "y": 0.34,
                            "sizex": 0.14,
                            "sizey": 0.1,
                            "source": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAFAxJREFUeNrsnXu0FNWVxvel+1QL8hAUEcIIM+hiRMLTxzgj4gQQEkVJwkUiBkaUkGDUJBNEExzURMBkOQRF6O6LD8A1IBERokExiiREo5i41ASWmnAho4wyOIgaFFS++ePuCodjVXdV325yu/o7a30Lbtc5u06dql+d9y4BIBRFBYuFQFEEhKIICEUREIoiIBRFQCiKgFAUAaEoAkJRBISiKAJCUQSEoggIRREQiiIgFEVAKIqAUBQBoSgCQlEEhIVAUQSEoggIRREQimp5gFRTWHzUUT0ajFlQTcqm099wLqO7iPSpMh1dLc9ITQOSS6dPz3seqkrGPOxcxkoRQZVpKAEhIASEgBAQAkJACAgBISAEhIAQEAJCQAgIASEgBISAEBACQkAICAEhIASEgBAQAkJACAgBqbhynnc/ASEgNQtIzpi3ssbcmk2nT5sncoyIyGKRdos8r0/W80YvymR6EhACUpOA5NLpe3woYgQCQkCSD0g2nZ5e4mU8QkAISKIByRozv0A2O0jTHopTRCQTcPwPBISAJBaQnDFbbhNpHZC980Rko4h8bD1YH4rIoyJyqYJTX4VwEBACEl2LPG9sQNbmVOmDT0AISFlrj8Z6kZSTrW8nHA4CQkAiA3K7k6UuIrKXgBAQAtIEyFedLH2zBuAgIAQkIiCp1HAnS/cSEAJCQPzhXc8738nSgwSEgBCQQ5ODX3eydAcBISAEJHzh4QUEhIAQkEOd9L2LRdpZWUqJyFYCQkAIyKFm1vecbA0UkfcICAEhIE3NrD05kROdrA0WkcYCD9heEVkrItsJCAFJNCDa1Np0j8hRTvYyIjJJRFaLyPMi8oyILBWRCSLSRuN0FZEPCAgBSTQgWpOsC1m0WCxsIiAEJPGA6H7zrQvT6X+KeRkPEhACUhuANNUkB3PGbMyl01OzqdSwRZ7XJ5dOD80ac2nW876XTafPcS6jnDsK3xSRu0Vkqg45jxeR6SKyTkT2ExACUg1eTVZXAJBXRGSifHplsR2OF5HZIvI+ASEgteT2Jy/xvvj0jyLyAgEhILUAyKwSi669iDxNQAhIkgFZ7JZHVqRr1vOuznpeQ87zlmSNufkuY/qHFF9HEdlJQAhIEgF5XZr2tIuISL1IKmfMLXnP+zDsnAub+iBu+BIBISBJBOT7Vvq6vOctjzCZ+VpO5Djn3HUiso2AEJCkAdLDT5zPZK6Kce41AcU4h4AQkCQBsk/f/DJLpFXemNfjnH+xMQOd808mIAQkSYBs9xMuSqfPKGHd2I3O+c8nIAQkSYDs/mvzyphxJcz0L3HOP56AEJCk9UE6iIgs8ryxJQByt3P+6wkIAUkaIANERO4ypn8JeZjhnD9PQBIKSINIp5zn1cdVgzGXZdPpK3PG3JYz5s2Ybfj1Oc+7NpdOT8sac3Hs86fTZzuXMUtENsTQGtHhWp3/+J+YjrYHOecfJyJPxMxDfwJSI2GhMX1jvP1/3tLynzVmfpzl+LV2fwlIM0PemFNj1B6PtDhAUqlhMQCZTUBqC5Ah2h6Oqh4Bb+CbY3Rw9y8ROdZK3l1ERonI52Lkobz9MM+7Ng7gK0U8AlI7gMTd2/B2QA3yasxO9hQr+SsldHAPwZlOn5X3vJUlyZhVOWO2lDBIsDNnzM+acd7LCUhyAdl+2APapk3XEkaBllkmNjcHkJzn1VfbKFyDMQsISHIBeSLgDR7bg4llYgUBISBJAuR+ZwRrYAlNlMctE3cQEAKSJEBW2IkXiLQN3UMRXoPMIyAEJKmAPBPQSX8gzgPiuPVZS0AISJIAeU8OdzYtWWM+m/e8fRFrj1VW0oyI/C8BISBJAgQicsWnahHP+2KxplbO855xPLl/RUrbrkpACEiLBuR1ETnGNaR7K34V8FC8lzVmjuNWtIOI/JmAEJAkAgIReUBCnKw1ZDIn5YwZnzXmioZMZlTukKNpP6Skea56CAgBafGAQESWS/xlF601HQgIAUk6IBCRF0VkUMRzDRKRl6X5bjsJCAGpGkAgIgd1uHa0fNqFZ1sRGSMiD2s8lBOQRZnMCGcgYG/ceRkCQkAqDYit/dLkJ2qzNH0har+U/9MBfw31Iql8Oj0kb8wAu6+TF+meN2ZCzphNBISAtCRAjoSOiXOBWWMm5T3vHQJCQGoFkDOca2gvImeLyFj9t00AJINyxrxNQAhILQCyTkROlabveawXkQPO8fdFZIEcvjHLX3l8gIAQkKQDElXbRKTXYZB43kwCQkAIyCFtFWsG/zaR1jnPe4uAEBACckhXHTZ3YswPCAgBISCH9Jx9wQ3GDCYgBISAHNKHzjXX/S0nEwkIAWlp+kRE0k4zaxsBISAEpEk73IuO+00QAkJAkqxFh9UeIuZvOR9CQAhIS9J+Eel52FxIKvWv7KQTEALS1PeY6F5wzpgFBISAJBmQXSLyIxH5hUIQFOdNafpE82EhK9I1qoMJAkJAqhWQeiv/J4rINBFZKk3beBeLyCT59L6Uptojnb6PS00ISNIB6VrKheaN+Teu5iUgtQBIKjYcrVp9Je95HxEQAlILgEQOC0U65j0vm/O8g9wwRUBqDpCFIh1zxtyW97wZWWMuzqXTQ/OZzMicMZPznrc073l/4ZZbAlKzgGQ9bzS9mhAQAkK3PwSEgBAQAkJACAgBISAEhIAQEAJCQAgIASEgBISAEBACQkAICAEhIASEgBAQAkJAjlRYJk37KKpJBISAMEQJ+datu+c8r76atNiYgQSEgSEhgYAwMBAQBgYCwsBAQBgYCAgDAwFhYKhBQABcA+A+AB8jXngPwFsAXgXwGIA5AD4PIMPbxJC4GgTACAAfWQBcDqC+iL4G4D8ArFJgAGAvgHkAuvF2MSSqiQXgaQuQzjEzlgEwDsBrVg3z7wBa8bYxJAWQh0sFxLLhAbgJwEG1sw5AuyNYQH0ApCpgNwXgpArl+SQA/QCky2y3tbYM0gl48D0AJwM4B8BQAGcCOLHqALFsTbGabJsBtC8Qtx7AfAC/ALAhQEsBXB/xvA0ALqnADboEwJyIca8HsCTkWp4AcDuAeiv+JC2nAwAaAfwmJG1U/RrAn9QeALTR8xh9ea2MYONRACsA/ATAVAC9SnhRzQGwJsT+GgCzAZxcxE4vAPdo0z0o/EX7wv9cVYCove9a9h4t1twCcCqA7VaajwFMBFAX45wbAWwt51tTa4+tAB4sASq7X7cDQL+AeD4gjwC4BcCsEP3QsvVKgXizAPwngC02IE7N8oBl6zUACywt0+PPANincQ4CeBxA/5hl0AHAcueh/q8orQoAEwC8D2A3gOsAnALA6LFuACYD+KPaHFqNgLTSES4/fCtCmnor/ooSzvmGpp1S5toDAF4uIe291vWMD4kzCcBNEWy1sWw9HLFZ8oILiPVm9sPKAjaO0gdxl1XLXVZCU+8DTf8+gNYR0gzXl8sWACcUiNdJX14jqg4QtfkP1hDyXgBdi8Q/3crDrJjnOtrq+zT6b5sy1R7Qm9wqZvpZ1vWcXgCQPuUGRNPcEAJImyiAWPF7Atip8T/x39gxyqFR0/4+Qtw6AH8oVGYBL7AvVCUgateuzn9YQUD6OVX5NWWsPfzQswKA9ARwdIUA6R00aBEXkICy+F0FATnTb5JGtN0LwJnVDMgIy+7rhd7CzQTki87DvDNKdR6x9vDDeeUGJIat2IBEtBUVEE+bSLFfFjEBmRg1btWOYgW0QQ9Ytk+rECDXarp9lo3rmpHvCf7b0rJ3Za0Coul+a6UbViFAJlj9neMSD4ja3mTZ/maFAGnQdN+xbOwuZR5Gh0QbtQaxmxbzaxyQTUcAkEHWORbXCiB5y/YdFQJkg6br6NzIm0rI7xRNe4nVJgaAdTUOiD0M36tCgNTpMLYf7ow64FLNgNxq2V5TIUD+G8B7+v+hlp29ADqVWHukAJxg2fpjDfdBeltptleqk67xRzoLaJ8G0D3JgFxn2V5fbkD0hh8EsMX6bb1l60el1B7WG22fNXnp1Sggdivg6koCYg1/77fOuatYs46AFB/ifcwZLjxoddy7xq09rN/t0axTag0QAJfp/Ad0SVCq0oBY93CHs7ri+2EjodUMiL1M4sEKAOIP8d7l/L46St8noPa4yPl9nWXnwiQDose6AOgP4EIAD1lxHytx0KOxGUO3xzkrMgBgLYCOSQLEXnIxrwKA+EO8Nzq/D7DasgcKjd1btcfv3PVf2lH0w/QkAgLgq7pmLig8F3ddXLkA0fStANxo1WIAsA3AwKQAYu81mVIBQHKa5oqAY/dFGTYMqz302HTLRj7hNchIAHusfT0XlOH+NwsQJ2+7rbx/AODyqgZE10jZna2+FQDkCU0zKmT05WOrDds7Tu2hx+1FlE8lvQ8CYLC1xHw/gNEtARC11UNrNLjPSrUCMsZeWl0kbqmA/FnTnBphBOa+OLVHQL7eqIVOuvoYOGjtuxjYEgBRe57T7AWAz1UrID+37M4oNyC6lMVvm3YIidPTWu5yEMCAgNpjc1gbG0Bn52a0SzogGu8nVrxXAbRtCYCEjI6uqcbl7qdZb6FdxR6sEgHpq/HfLRJvvmV7dUDtMaJIenuh3sAaASQD4EUr7v2ldNQrCEgdgGet56uqNkylnM75xAhpSgFkTJTCB9DV2SF3llV7bIpwnt8X2/yUxHkQ3en5gRV/ZiUBATAjzo5Qa+3dJ9UGyOxC7f4yAuKPMD0aIa695GV91NojoHxuqBVANP5VVvxP4o5sxQRkc5y5FvWmU101iDUv4Xs2yVQQEH+ItyFC3E6OA4C3o9QemnaBlW5ZjQFS5zwf7wL4bIUAeQfAkBJqkLWVBuSRMrj9aa9eSPxwd5ytryUC8kTM+Dc6He4LIqaz50KerSVArJfLy44Tis+UExDt88RpcaQAPO/fx0p6VqyzPESU4jjuBHUUt8vazTe+hBt3fpwJOe1DvB3HUQOAdtZk0/ao64qcuZB9hVwZWWnuLGWJSoitv7ds/bqZtk60bD0ZI11XZwPZywCOj/AQ+7X2/xUqb30OP9I+4qURarUfq93lFZ0HcYbLoE2kaUU0U5sdz1oTcX/SN23bEm7asdbbwJ/FPatIAc214v8gxrlmlDDXcrVTRvkiN/tMbYr44QUAxzZjwGOps2hveDNGfu6wbB0oVM4hw+q3Wy6NGgGcXSDfc51ym12k3FZaAylZd2JXPa2MsloOqwAcVRFA9KbfoyM0pehJXWd1VZDPp4gFPlKbPZsC7L+kN3OaFb+35nt5QNyZET1htNZaLkrcAerj67cB+Vutx3pb8afq/MFLAfGfAXBz0Ix/gXx+G8BPQ8pmLoDzI9pKa7ktC7D1vN6DUTFrtGs1b5sV4Gv0WC8tl1Uhz80qPd4zxPYFOqTs+3zeoy6AdljzWdvUJVGdlY6fPyjjGPqQSrgpZSjrPUrpC/EiXXI/TXd59guJT0AYGAoARUAYGAhI9BGVoY6O42NCQAjIoQIZrEOu70Rx38lAQGquiQXgV4U8pUTsCHaJMJo0XPcidA5RN53oNBHO2a0FlFtfXcc2BsDAUoegCUjLL5QNcXw7BaQfAmBBkTiddVi4wflUgK/l9oRVBCCfLQYSgDOsxZ6rdH7gIf3tl2ErABRSfy/+Jne0DkB3LbM71XPIlboBaToBISBB6e/XZlqnIoAMK3B8qa4i6BzhfGNjrG6eHPKNj3qdLJwZkq5fmC9h/cDOpc5vRwOYSkAIiJv2JH17vlBoGbc6DUiFHButD2N9xHM+p2vUXiy2t8L6uE7QJwyWAfgwaNWCfuEJ7mcKtPYAgGMC0nQkIATETZvTCaipAN6M6w1e3ZzuBLAqYvzhusOyi84Ij2wGIP7iyZNjAOJ7iRzHTjoBKZauq+5lbw2grY6EXRHTxlJdLNklYvz11sdeVtiO7koAZL5C5kUFRI89qmvELiIgBKRQulsA3Gr9faeu96mLmN5vWk2IGH+Afg8wpX+fqwvy+sUFBMDxuiJ5Xki6QoB00jV0B3UtV4qAEBA3TTt98/dwhj0RZfGf1bT6WYxzrgDwHetv/1Nj90YApJM6bpumq2F3KNCZuIBYI2lzFZIno9aABKR2AJkO4KGA338JYEPEptWeqPMZ+q3GvW5HWFdBHwizY9cgCvVP1QXPuUXOVxAQK96Feh1vADiDgBAQ36fSTgBP6dyCrd/ogzU4QtNqcoxzLtINae751qpjtrlRmli6QewpHVL+u+YCYsH7koLSiYDUGCD65rX3DEzRnXBBHhQz+vAtL9K0Whejr+J7U+kbcnyxPpztovRBdKh2t04YenEA0QGJoI96nqTOGMYSkNoDpN5pe2+1N2AFxJ8b5uham1bv2n2XgDjGbq6oZ/uNBeIP1of5WzE66V8u5KiiACDjw/Ku/ZqLCUjyANlYwH3mMHuGGMCX9AFvW8BeT+28zgtpWk0tkp/v+p911tprj/8xngJpnkXAt92LDPP+OMzbvAXIuQF5+1pA/M9ouRxPQJK1mreX3tindfmFr28AWKIzzV2sB79RP0VtCthsr02iD333M1bTaqf6YaoP0NcBPO57kNfm2rKIneW1Gu9Waxi4zvIpPCIk3XXa+b/Bbm4BuMb/1IT9sRn9jspuXcLSWQEeroCOS8DzQECcN/2YkIfV10gRkcbGxm5O3H8pYPc8K96XAZys+6/rI6qHNrNGWb+NDnOGBuAUJ/1Q/f1c67exQV7pNV4HjXuROjQ4x7E33H4haLldrasIVmoTsJckIFTCaQNF1ZxYCBRFQCiKgFAUAaEoAkJRBISiCAhFERCKIiAURUAoiiIgFEVAKIqAUBQBoSgCQlEEhKIICEUREIoiIBRFQFgIFEVAKIqAUBQBoagjpv8fADQJn66NmgECAAAAAElFTkSuQmCC",
                            "visible": true
                        }
                    ],
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "shapes": [
                        {
                            "x0": 2021,
                            "x1": 2021,
                            "y0": 0.72,
                            "y1": 0.884,
                            "line": {
                                "dash": "dash",
                                "color": "rgb(255, 254, 254)",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 0.53,
                            "visible": false,
                            "fillcolor": "rgb(255, 255, 255)"
                        }
                    ],
                    "modebar": {
                        "orientation": "v"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "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": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "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": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "hovermode": "closest",
                    "hoverlabel": {
                        "font": {
                            "size": 13
                        }
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 2013.7228989037758,
                            "y": 0.7497638861629048,
                            "font": {
                                "size": 11,
                                "color": "rgb(139, 139, 139)"
                            },
                            "text": "Source:<br>V-Dem <br>\ndataset",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgb(2, 2, 2)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~DLaz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/5YCA2FWT1X6PQMN8BGAP8JFCDMX1MU.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "Dimitris Lazaris",
                "website": "https://socio-imagination.blogspot.com/",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-11-29 19:38:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "DLaz",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}