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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTEyKzIzJTNBMzIlM0EyMy43MzgzMzIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xMyswMCUzQTA4JTNBMzkuMjk4MzU1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-13T00:08:39.298355Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sahori_S/37.embed",
            "fid": "Sahori_S:37",
            "filename": "Secundaria modalidad",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/37/9_R1Y2610XQUCQO6GW9JZ467OFWMBF0F.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Sahori_S:37/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/37/8_PRVN8TEZIGHHW6P56LR9T5T1W5LP81.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/37/9_R1Y2610XQUCQO6GW9JZ467OFWMBF0F.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sahori_S:37",
                "plots": "https://api.plotly.com/v2/plots/Sahori_S:37",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sahori_S"
            },
            "owner": "Sahori_S",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~Sahori_S/37/",
            "world_readable": true,
            "date_modified": "2024-05-13T22:20:02.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sahori_S/37/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "primary_education_modality"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "Sahori_S:20:d33d29"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Modalidad de la educación secundaria"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            84.21052631578948
                        ],
                        "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/~Sahori_S",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-02-26 20:27:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sahori_S",
                "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-13T00:06:34.280229Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sahori_S/36.embed",
            "fid": "Sahori_S:36",
            "filename": "Secundaria tipo",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/36/9_9LYXUVML9PTT9ZMWKGWDC1WC02QMJ7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/36/2_134J60020AAWY2ZY4M2XA9EO2QP2LD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/36/8_YEE9AP066BQMQ3LITI5TKQ1X5Y8KXL.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/36/9_9LYXUVML9PTT9ZMWKGWDC1WC02QMJ7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sahori_S:36",
                "plots": "https://api.plotly.com/v2/plots/Sahori_S:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sahori_S"
            },
            "owner": "Sahori_S",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 14,
            "web_url": "https://chart-studio.plotly.com/~Sahori_S/36/",
            "world_readable": true,
            "date_modified": "2024-05-13T22:20:02.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sahori_S/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "primary_education_school_type"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "Sahori_S:20:777861"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Tipo de educación secundaria"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            84.21052631578948
                        ],
                        "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/~Sahori_S",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-02-26 20:27:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sahori_S",
                "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-13T00:00:29.855631Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sahori_S/35.embed",
            "fid": "Sahori_S:35",
            "filename": "Dispositivo de estudio",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/35/9_35SSYYGCPT1NOLSYZ9WDVDY7WQQXLE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/35/2_19CFYY6MX0KA48Z1T0D734SFA48L56.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/35/8_Q2449ZID3EIEHE11WL0PSYBUJPVJ8K.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/35/9_35SSYYGCPT1NOLSYZ9WDVDY7WQQXLE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sahori_S:35",
                "plots": "https://api.plotly.com/v2/plots/Sahori_S:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sahori_S"
            },
            "owner": "Sahori_S",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 15,
            "web_url": "https://chart-studio.plotly.com/~Sahori_S/35/",
            "world_readable": true,
            "date_modified": "2024-05-13T22:20:02.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sahori_S/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "preferred_study_platform"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "Sahori_S:20:005553"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Dispositivo preferido para estudiar"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            264.2105263157895
                        ],
                        "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/~Sahori_S",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-02-26 20:27:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sahori_S",
                "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-12T23:57:40.480940Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sahori_S/34.embed",
            "fid": "Sahori_S:34",
            "filename": "Sistema opertivo del celular inteligente",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Sahori_S:34/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/34/2_R781AHEH5FPWSAKHMPDGFCZSLPITJU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/34/8_W1WB110E4OCYXOZ73H6THPB4DQPD4Y.png",
                "list-thumb": "https://api.plotly.com/v2/files/Sahori_S:34/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sahori_S:34",
                "plots": "https://api.plotly.com/v2/plots/Sahori_S:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sahori_S"
            },
            "owner": "Sahori_S",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~Sahori_S/34/",
            "world_readable": true,
            "date_modified": "2024-05-13T22:20:02.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sahori_S/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "technology_access_smartphone_os"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "Sahori_S:20:abeaec"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Sistema opertivo del celular inteligente"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            4.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            170.5263157894737
                        ],
                        "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/~Sahori_S",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-02-26 20:27:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sahori_S",
                "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-12T23:56:11.502891Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sahori_S/33.embed",
            "fid": "Sahori_S:33",
            "filename": "Sistema operativo de la tablet.a eectrónica",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/33/9_W60AQUNWF40Z5HXSMTFG5YBMN8V47D.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/33/2_PTNF7X9WX0LKEUAYWC9WYF0UOF7R0W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/33/8_V92TTVL7Q1W647887235225UJMIXQF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/33/9_W60AQUNWF40Z5HXSMTFG5YBMN8V47D.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sahori_S:33",
                "plots": "https://api.plotly.com/v2/plots/Sahori_S:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sahori_S"
            },
            "owner": "Sahori_S",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 14,
            "web_url": "https://chart-studio.plotly.com/~Sahori_S/33/",
            "world_readable": true,
            "date_modified": "2024-05-13T22:20:02.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sahori_S/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "technology_access_tablet_os"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "Sahori_S:20:132a4a"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Sistema operativo de la tableta electrónica"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            4.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            189.47368421052633
                        ],
                        "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/~Sahori_S",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-02-26 20:27:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sahori_S",
                "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-12T23:53:13.506696Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sahori_S/32.embed",
            "fid": "Sahori_S:32",
            "filename": "SO computadora",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/32/9_LX9TBJG71LWC3DONIRVCNPZP7K2U7W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/32/2_WCFRTU49EW2OFSIGY4ZBWHIZJS5KMS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/32/8_XOZ3P4956NU4SKR2RICHFT5FG3HDX7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/32/9_LX9TBJG71LWC3DONIRVCNPZP7K2U7W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sahori_S:32",
                "plots": "https://api.plotly.com/v2/plots/Sahori_S:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sahori_S"
            },
            "owner": "Sahori_S",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 16,
            "web_url": "https://chart-studio.plotly.com/~Sahori_S/32/",
            "world_readable": true,
            "date_modified": "2024-05-13T22:20:02.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sahori_S/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "technology_access_computer_os"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "Sahori_S:20:d2bb48"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Sistema operativo de la computadora"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            4.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            220
                        ],
                        "autorange": true
                    },
                    "ternary": {},
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Sahori_S",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-02-26 20:27:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sahori_S",
                "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-12T23:44:18.116899Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pulleyguy/11.embed",
            "fid": "pulleyguy:11",
            "filename": "Hot Spot2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/pulleyguy/11/9_6OJC9UPK9GPRO6OBJPDYUOE8SZTMV2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pulleyguy/11/2_N6TQG0LR1SCIMHAQ3PPUFDPH35RKH7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/pulleyguy/11/8_O0B5864LSBX0FIJGTSEKKWRB82SBCY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/pulleyguy/11/9_6OJC9UPK9GPRO6OBJPDYUOE8SZTMV2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pulleyguy:11",
                "plots": "https://api.plotly.com/v2/plots/pulleyguy:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=pulleyguy"
            },
            "owner": "pulleyguy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~pulleyguy/11/",
            "world_readable": true,
            "date_modified": "2024-04-22T05:05:07.115Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pulleyguy/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(245, 1, 1)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Dist form toe pos1",
                                "y": "axial stress pos1"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Axial Stress Pos 1",
                        "type": "scatter",
                        "xsrc": "pulleyguy:10:d97b26",
                        "ysrc": "pulleyguy:10:18e277",
                        "xaxis": "x",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6,
                            "color": "rgb(245, 3, 3)"
                        },
                        "visible": "legendonly",
                        "connectgaps": false
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Dist from toe",
                                "y": "Axial Stress"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Axial Stress Pos 2",
                        "type": "scatter",
                        "xsrc": "pulleyguy:10:6ed2d9",
                        "ysrc": "pulleyguy:10:5741dd",
                        "xaxis": "x3",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6,
                            "color": "rgb(245, 3, 3)"
                        },
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 24
                    },
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 34,
                            "family": "Balto"
                        },
                        "text": "Inner Shell Next To End Disc"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            -24.062240663900415,
                            0.06224066390041494
                        ],
                        "title": {
                            "font": {
                                "size": 28
                            },
                            "text": "Distance From Weld Toe 1 (mm)"
                        },
                        "anchor": "y3",
                        "domain": [
                            0,
                            0.45
                        ],
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(3, 3, 3)",
                        "overlaying": false
                    },
                    "legend": {
                        "x": 0.2306481481481482,
                        "y": 1.0429025844930415,
                        "font": {
                            "family": "Balto"
                        },
                        "title": {
                            "text": "<br>"
                        },
                        "valign": "top",
                        "xanchor": "left",
                        "yanchor": "top",
                        "orientation": "v"
                    },
                    "margin": {
                        "t": 100
                    },
                    "shapes": [
                        {
                            "x0": -24,
                            "x1": 0,
                            "y0": -22,
                            "y1": -75,
                            "line": {
                                "dash": "dash",
                                "color": "rgb(25, 24, 24)",
                                "width": 3
                            },
                            "type": "line",
                            "yref": "y2",
                            "opacity": 1,
                            "fillcolor": "rgb(10, 10, 10)"
                        },
                        {
                            "x0": -20,
                            "x1": 0,
                            "y0": -1.5,
                            "y1": -21.5,
                            "line": {
                                "dash": "dash",
                                "color": "rgb(25, 25, 25)",
                                "width": 3
                            },
                            "type": "line",
                            "xref": "x3",
                            "yref": "y3",
                            "opacity": 1,
                            "fillcolor": "rgb(5, 5, 5)"
                        }
                    ],
                    "xaxis3": {
                        "type": "linear",
                        "range": [
                            -61.435514192647744,
                            3.6755141926477437
                        ],
                        "title": {
                            "font": {
                                "size": 28
                            },
                            "text": "Distance From Weld Toe 2 (mm)"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.55,
                            1
                        ],
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(3, 3, 3)"
                    },
                    "yaxis2": {
                        "type": "linear",
                        "range": [
                            -86.48451460885957,
                            10.34451460885957
                        ],
                        "title": {
                            "font": {
                                "size": 28
                            },
                            "text": "Axial Stress Pos 2 (Mpa)"
                        },
                        "anchor": "x3",
                        "domain": [
                            0,
                            1
                        ],
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(3, 3, 3)"
                    },
                    "yaxis3": {
                        "type": "linear",
                        "range": [
                            -21.58356545961003,
                            -1.416434540389972
                        ],
                        "title": {
                            "font": {
                                "size": 28
                            },
                            "text": "Axial Stress Pos 1 (Mpa)"
                        },
                        "showline": true,
                        "autorange": true,
                        "linecolor": "rgb(3, 3, 3)"
                    },
                    "modebar": {
                        "orientation": "h"
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": -0.3456790123456839,
                            "y": -75.14844184810276,
                            "ax": -313,
                            "ay": -48,
                            "font": {
                                "size": 20
                            },
                            "text": "<b>Extrapolated Hot Spot Stress -74MPa</b>"
                        },
                        {
                            "x": -0.14403292181069957,
                            "y": -71.69149018289187,
                            "ax": -237,
                            "ay": -40,
                            "font": {
                                "size": 20
                            },
                            "text": "<b>Extrapolated Hot Spot Stress -21MPa</b>",
                            "xref": "x3",
                            "showarrow": true
                        }
                    ],
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pulleyguy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 04:44:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pulleyguy",
                "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-12T23:41:39.518306Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sahori_S/31.embed",
            "fid": "Sahori_S:31",
            "filename": "Industria deseada",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/31/9_C1VG8TTNPGA63R3CXHUM9BU5JQX5WZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/31/2_DQYV27N63D7416WJLIG8S194YLZ27D.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/31/8_D68BK68OWB3FHVCVTG2TTAIK17385P.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/31/9_C1VG8TTNPGA63R3CXHUM9BU5JQX5WZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sahori_S:31",
                "plots": "https://api.plotly.com/v2/plots/Sahori_S:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sahori_S"
            },
            "owner": "Sahori_S",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 11,
            "web_url": "https://chart-studio.plotly.com/~Sahori_S/31/",
            "world_readable": true,
            "date_modified": "2024-05-13T22:20:02.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sahori_S/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "desired_work_industry"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "Sahori_S:20:ed7b9f"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Industria en la que desea laborar"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            16.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            223.1578947368421
                        ],
                        "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/~Sahori_S",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-02-26 20:27:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sahori_S",
                "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-12T23:35:12.243128Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Jhigh1030_/1.embed",
            "fid": "Jhigh1030_:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Jhigh1030_/1/9_VBI3SZJC7HY32T4J5UN9Y1AZ196BKK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Jhigh1030_/1/2_W9H48LQS7LX45WWZL2A4JJQOWA51L5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Jhigh1030_/1/8_0W7DW0Z5AYE46PSZ555KHXY0WYBQCA.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Jhigh1030_/1/9_VBI3SZJC7HY32T4J5UN9Y1AZ196BKK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Jhigh1030_:1",
                "plots": "https://api.plotly.com/v2/plots/Jhigh1030_:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Jhigh1030_"
            },
            "owner": "Jhigh1030_",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Jhigh1030_/1/",
            "world_readable": true,
            "date_modified": "2024-04-12T23:35:12.254Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Jhigh1030_/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "latitude",
                                "lon": "longitude",
                                "text": "text"
                            }
                        },
                        "mode": "markers",
                        "name": "<br>",
                        "type": "scattermapbox",
                        "latsrc": "Jhigh1030_:0:d7f3f7",
                        "lonsrc": "Jhigh1030_:0:013a3a",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "size": "Revenue",
                                    "color": "turo_reviews"
                                }
                            },
                            "opacity": 0.7,
                            "sizeref": 33.16008230452675,
                            "sizesrc": "Jhigh1030_:0:67b1e4",
                            "colorbar": {
                                "x": 1.02,
                                "y": 0.5,
                                "xpad": 0,
                                "ypad": 10,
                                "ticks": "",
                                "title": {
                                    "side": "right",
                                    "text": "Number of Turo Reviews"
                                },
                                "xanchor": "left",
                                "thickness": 20,
                                "thicknessmode": "pixels"
                            },
                            "colorsrc": "Jhigh1030_:0:fc00cf",
                            "sizemode": "area",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#ffffe5"
                                ],
                                [
                                    0.125,
                                    "#f7fcb9"
                                ],
                                [
                                    0.25,
                                    "#d9f0a3"
                                ],
                                [
                                    0.375,
                                    "#addd8e"
                                ],
                                [
                                    0.5,
                                    "#78c679"
                                ],
                                [
                                    0.625,
                                    "#41ab5d"
                                ],
                                [
                                    0.75,
                                    "#238443"
                                ],
                                [
                                    0.875,
                                    "#006837"
                                ],
                                [
                                    1,
                                    "#004529"
                                ]
                            ],
                            "reversescale": true
                        },
                        "opacity": 1,
                        "textsrc": "Jhigh1030_:0:150e84",
                        "hoverlabel": {
                            "namelength": 0
                        },
                        "hovertemplate": "%{text}",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "<b>Top 2000 Turo Vehicles in North America by Revenue &amp; Reviews</b><br><a href=\"https://www.sharelytics.co/\">https://www.sharelytics.co/</a>"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "images": [
                        {
                            "x": 0.93,
                            "y": 0.1,
                            "sizex": 0.1,
                            "sizey": 0.1,
                            "source": "data:image/png;base64,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TScCRIAIEAEiQCLnGCACRIAIEAEiYDACJHKDO49NJwJEgAgQASJAIucYIAJEgAgQASJgMAIkcoM7j00nAkSACBABIkAi5xggAkSACBABImAwAiRygzuPTScCRIAIEAEiQCLnGCACRIAIEAEiYDACJHKDO49NJwJEgAgQASJAIucYIAJEgAgQASJgMAIkcoM7j00nAkSACBABIkAi5xggAkSACBABImAwAiRygzuPTScCRIAIEAEiQCLnGCACRIAIEAEiYDACJHKDO49NJwJEgAgQASJAIucYIAJEgAgQASJgMAIkcoM7j00nAkSACBABIkAi5xggAkSACBABImAwAiRygzuPTScCRIAIEAEiQCLnGCACRIAIEAEiYDACJHKDO49NJwJEgAgQASJAIucYIAJEgAgQASJgMAIkcoM7j00nAkSACBABIkAi5xggAkSACBABImAwAiRygzuPTScCRIAIEAEiQCLnGCACRIAIEAEiYDACJHKDO49NJwJEgAgQASJAIucYIAJEgAgQASJgMAIkcoM7j00nAkSACBABIkAi5xggAkSACBABImAwAiRygzuPTScCRIAIEAEiQCLnGNjrEJg0aZLMnj078LmHDRsmJ5xwQmA+ZthzCHz99dcyduzYwAZ07txZBgwYEJgvHTMMHz5c1q5dG/doLVu2lFGjRsWl8cJcBEjk5vYdW54iAjfeeKO88847gaUfffRRueyyywLzMcOeQ2Dq1Klyyy23BDbgwgsvlGeffTYwXzpmOOaYY+Svv/6Ke7T9999f5s+fH5fGC3MRIJGb23dp3/JYLCZ//vmnrFmzxvr322+/SUVFhTRu3Fj22Wcf69iqVSvrPBkwSOTJoFWz85LIg/uHRB6Mkek5SOSm92Catb+4uFjefPNNef3112XJkiWhnu7YY4+Vc845R8444ww59NBDA8uQyAMhMiYDiTy4q0jkwRiZnoNEbnoPpkn7S0tL5a233pIxY8YkmAGTecSzzjpLbr75ZjnqqKM8i/3888+yYMECWbZsmSxdutQ637p1a0J+mtYTIKlxCTAZf/XVV/LTTz/Jjz/+KIsWLZL169cntJOmdZrWEwZFGiWQyNOoM019lC+++EJuvfVW7Qs41WfCi/vBBx+UBg0aBFYxc+ZMufrqqxPykcgTIKnxCX/88Yccd9xxCe00icjhPnJLJBIR/EtFELDpntwg2G3u3LmpVMcyNRABEnlVOkX5cGM7ykXK1b+wgj/IWrVEMqJhS6R1vg8++ECGDBmyW54RL6tXXnlFDjvsMN/6SeS+8Bj1o+lEvm3bNu14veiii+Tpp59OqS+Ayfbt2+PKZmdnS5MmTeLSeGEuAiTyVPpOEXjx4qWydeZsKV22QiqKS0LXgll1tEF9qdvucMk++1Sp0+Zvey2pwwzarVs3X+ygSbVr106aNWsmiLQtV5MmBL39+uuv8ssvvwiWH7m1DWeFOTk5gb52ErkTMbPPTSfyzZs3a91CZ599tjUpNbt32PrdhQCJPAlkY0XFUrpilWx6YZIUzVsgsdKyJEonZo1kZkpWx2Mlb+AlUueQ1hLNyU7MlKYp8Il36dJFli9frn3C/v37y9ChQwVatZ+UlZUJAp78fOurV6/2q0JI5L7wGPUjidyo7mJjqwkBEnkYIJUGXrp8pRTO+Ei2fjBHyjcWhCkVOk+0fo7U+48OUv/CLpLZ/kiJ1ssKXdbUjLNmzZIrr7xS2/wHHnhABg4cqP3NK7GoqEjuvPNOeffddxOykMgTIEnbBBJ52nYtH8wHARK5Dzj4KabM5oUzP5EtU2ZI2a9rlE98R1yJWDQqsTp1REWi7ExXgSqRkhKxw1JiKj2mNG9Rk4GI0kIV4HHlnRe1muwj9U77u+QOvFhqt2jm/CntzkHiIHO39O3bVx555BF3cqhrL387iTwUfGmRiUSeFt3Ih0gSARK5D2AVWwpl4zPjpXDarAQCL1e+18LTT5ct53SV8oYNK4kcJN5y6FUSVaQNKW1+gKwf+V9SkZUlURXIkrn8J8meN0+y/m+xZGzcWEn4zmZEG+ZKkwfvkHodO4ioiUI6ii6SFs+JCPbWrVun9MhYVtapU6eEsiTyBEjSNoFEnrZdywfzQYBErgNHadUlS36WTeMmStHcbyTmWA6yIzdPitq3l4JevaRMkXSlJr6rHhD53wb2l6g6QkpbtJR1j4yWinr1duVQB2jnJcWSuWSp5Mz9X8lU65nrrF8nEUf0ezSrrmVqb9C7u9Ru1eJfZdPgbIeyaujIGoFpWAuc6jIbr3qri8hR/zw1CcOa5XXr1smmTZukefPmcvDBB8uBBx5oPVPdunWrtYewvv27776TFStWWPfbqCZ/iEDeb7/9pFWrVlYMQYsWLaRp06Zqzhd+0ofYAuyaFyS4T0ZGRmU2BBli2dKqVasEbcHyPqwKuOSSSyrzBJ0gLgI4/v777wLirV27tjRq1MjaoQ/r/9urv69aWNmRgqRC5AUFBQlR3V63xthE0KVbEKSGiPMw4qwDLiGMI1tQDwLb3IKJr3uLWfQL+sctwFW3hM2Zr556H+Xl5TmTkj7HfdCPCDbNz8+3niNLKSz77rtv5a6Lxx9/vNSBxbKKgl0e0bcIdMXYwzjENe6H58jNzZWDDjrIGjtVfa4qNnWPFCeRu2CHKX3bx5/LppcnS9nqdRbpWlkiUSlWA2Xz+d1l+4kn7jSnu8riMhSRO8rB3F5bBWNlff+d1Pv2W6m7bGkloWOZWmbbQyW3X0/J7nxS2mjneHkdcsghDhR2nmLb1YULFyakJ5OAKHhEwzulqkSOwLwXX3xRxo8fH7hZDTajufbaay1ycrYhmXOQ97Rp0+Ttt9+2NqsJU/bwww+Xu+66S2uR0JV/7bXXrPy635xpX375pTVhAOljXb5uj/o2bdrI559/7iyWcI4XMZ7pueee8wxwtAthQtdLTZSvv/56ixTs9DDHVIj8tNNOs1ZAhKkfeRAcefTRR8dlB/mG3YkQBd9//32LdB5++GF5/vnn4+pK5gIbG4E4bcEkEzscBkmq68ixagRxKBMmTEj4O/O6J/4me/fuHXpsuuvBnvAYe3jWMIKJNWJsevToEWofiTB11vQ8JHJHD8XUC3vz5OmyecJUKS/YXPkLvNrbOxwn+ZcPlh2YjftoPskSeeVN1B9IhtIMYHbPe+ctqaW0HVsQDJfbr4fk9e8lkWyHZm9nMPAILVIn2KXrgAOUpSNFuffeey0CtItD0wva+MIvah3bv1533XVJvaRBqljzi2MyggkOiO6ZZ55Jplhc3o4dOwowaNu2bVy6+2LixIlyzz33uJMTrrFdLpb+IXYB2pBOsPrg5Zdf1v1kpWGvfExw0LfJyhNPPCEXX3xx6GKpEPlJJ53k+Wy6G8+YMUMwLpyCr6t5rcBw5rPPManBxjX333+/vPTSS3Zy0kcsv4Q1xhZMJnQavf27fUzloymoGx+ocU+U7TqDjhibGHNYThpGYIUCgX/yySdhsmvzjBgxQgYPHhxnVdJmNDyRRL6rAyu2bpOCCW9KwT+mimCTFztdbZywuUtXKbi0t8SUCTBIUiZyR8VRReKNJk2UnHnzJVpctNMUX7uW5HTpJA2vHSS19lMzcGXiM1m8NJjLL7/83/55RS8iHzRokDUp0G3fGgZ7TCCCls/Z9cB8fs011yRFKHZZ3fGzzz6zzP2635AWlsjvu+8+i2j81urjc6+wBugE5Aazu/vrW7q8XmmYmFx11VVeP8elk8h3D5HDUtanTx9J9W/B2UlPPvmkZXFxprnP4bo699xzqzRu7DoxUXvjjTfsy7Q8ksiVyQ/R6AWvTJHC9+NnfmXK/1TQ4yLZ2qmzpyndPSqqg8hRJ+rJVmbNvBnTpI7SaCxR5J11QnvJ+88+ktVBaVwO3+XODOb8/9RTT8njjz+ubfDdd9+t3TJVm7kaEr2IvKpVJ7MtaFVNrO62whrw3nvviZfPHhohTNfVIaNHj7Ze8u66oFGdd9551fLyx4qEICsD7p8Kkffs2TP0Jz1h9odp2W1t6devX6B7wcYHdeC7AogHqG6NPCzmyWjk+B4BvmFQnfLQQw8J9orQCSxT6JNUNX9dnfCrJxNDoqujJqft9URetnK15I8ZJ0X/VBu8ODTxMuWv/evqYVJ8VNvQJI6Ori4itwaNCq7KUjPhpo+NlogKTrKldsvmkje4t+R06yyRzDp2slFHBKuccsopnm0GCcKM10oFdO1uCUvk559/vrWJDV6CCGxauXKlfPTRR76m+7AE5Efk8MfCvAztHv8yMzNl7dq18s033/gu1YNFAUThJfB3wuyNaH+YaMeOHeuVNSEdZGRrZ9B2oPU4pURNRIGXl9/41FNPFWw7CkJEYBY0d5hQ4TvWSVitKhUix/1AHt+qGBWv789j0gM8nf5odztRB8a1l2kb7onbb7/dCuyzywJ/p0kegW833HCD/XPlEXEII0eOrLzGCYLdTj75ZC1BbdiwwepX1K1zoYQlcgR4du/e3ZNUMTZPV6t3cIRvurCw0HqexYsX+7pb/LacHT58uLz66qtxz2pfYDIHyxWCSxHUBksRJi/wn0+aNMnOlnBE7AAC49JV9moihzl93YAbrN3anB1coshj/b33SYXyryYr1Urku27e6B8TlGY+Pa4pkXp1pdGwQZLbv2dcukkXMLHBB+oneHnCpOfWgPzKJPtbEJHjJYrPqup89wjimjJlitxxxx3a20KTQZBckOiIHMF/8PFdcMEF2pc16oTJGsF1XnEAmGyEiQCHxgJS8JObbrrJmlDAZw4SwbPjs7OISnZGtqMO+DZfeOEFbXV4Ed92220JZZDZ77OkeFGDNPwkVSK364QbQOfLR7DWY489ZmfzPPoFm3344Yfa7Vedle2OLVqr8hnTcePGCbRnnQArWGO8xheCTOGa0fm4veIqMKaOOOKIykmi876IVcHHlbw0a2CPSYuu/3744QdpiGXCaSp7JZHHlCZSsmipbBgxRnas2mW2Vh0cUy+nImXu2jhwkJS2bpNSl+8OIq+rorCbjUgMTIoqbbxBnx6SO6CXZDSq2lKSlB62ioUQDQ7f5+zZswNrggaBKFQQY1WWJ+lu5EfkmECAqBs3bqwrWpnm5SqA5uqllVYWVic6IgeJe+1+5ywL8gLB2Rqy87dPP/3UWpbjTNOdBxH55MmTfS0ozjqhDXbo0MGZVHkOKwu+B+8niIzX5YHGB1JwTxqcdVWVyBHIhomRW9CP8BN7uSrs/AhyxHbBbsE4+vjjj93JCdc1ichhVcHfmm5cIZYFFgIvUnU+mC6YECsFsHLCLV6WOmj806dP95w02PVgWSUm3m7BMjlMQNNV9i4iV7O98vxNUrxgsWz678nWB0+cHbv1xL/Lpr79pAxR0ykGk4UictUOZU+UiDJbWbu9qaPgHOvV1SQjqkx0kTK1CxzybC+S+rP/R3L+qY/4jUSjUr9nN2k4pJ9k7OtPNs5nrSnneFlA0/MyqeraCU0Vpjn4X/GiSXXduV23F5Hj5QFNHGtUgwQmRaz11b30wpj1dESeDHl6EQg0KuAUJH5EDi0nmS/UQUtD9L1b4BaYM2eO5Rpw/+a8hjkX5mmnydn+3V4OZ1+7j1UlcpjHEZGu60d8Sc/LbG63w2sp26hRowTkFyQ1icgRC6Az82NSDa3Xb0LlfE7EvLjN3lhfrttOGXEdsNi4Be8IrHwII7p4haDgzzD11uQ8aU/k2FK1bNVaKVm4SLbNmWudl6sd22BWl4p/bZdaqMyK+VcOkYqg71eDhHcRsZQr8i2vUJu/FEtErT8H+UZVvfuPHCHRXT7tHXkNrbXnkaLtUmftGmt3N2uzmNKynXl2lO0kcJC41Ry1WYyqMxJT1xAsS9umPkFoX+9MjfsffvKGQ/srM7tanqai200UaOWIfPaLjtY9F14qMHvCj4cNIVIRLyJP9nvkMP1Ba3BLGK0YJOEmP/jfw35qEpoqltm4BS9imCODxIvIoU3BIpHMZElnysX9sfb4zDPPDGqK9TuCwXQv7qDJTVWJHDeHJQRtdQt8/n5rvpepjZ28ns+93ttdt31dk4j8iiuu0FoR8E0DHdnaz+A+YpKOlQ1Oga8b8SNu8QrC9FsZ4a4DfYSJsVNgDdmd7jnnvfbEedoReYX6Qln5n/lK2/5Fts+dr75StlDKN+QnbLHqBLtYBU5s7NvfCmqLKp8fdl2DVpyxZYtE8Q9ppSWSUbjVWusdVTtr4RoBaNiNzdKqQdy7SH5PLAzLPPoIafrkSMlobK4fCNoQ/KpBfnNn3znP8ceOmXuQ+dNZBufVReTwoerWgEOrR3DX7hQv3ywig718nM72eBE54hOgYYcV+OS9njWsvx73+v7777WWBL9oZ5SrDiL3+7wudh6sX78+bpUgXu6VsHESqLCmEDkCEI888kitZQJBlrod5RIA2ZWg6xOvTYS8tlmGFQ6TVRyDBAGEzg2KMAmFP9/Llx9Unwm/pw2Rx0pKpfiHJbJt1qey7cv5FpnDfB1G4BvHP2uLVEsz3qmp7wlCDtNeXZ6IWuPebPzjktkuuU1IdHXt6TRs/YgPqsDMhmjqZAQvCATRuTfs8Kujuogcmiuikt0Cn+mll17qTq7Wa0Tuwk/uln83kXtp0smQGZ4B26bqlpshpgLryr1ERxrIm8xSQOT32ucALgy4dXTiZVbHhi9du3bVFUlIqylE7jWevEziCQ/iSsCGQQiMtKW1+p6CzuXjN4GARg1rSVBQpn2Pven4/wAAAP//mjARngAAGNlJREFU7V0HmBRFt72zwC6wxAUkh0UBQZEoCkqSIIr6oSJBnoKAgIIoiohkiZJBFBP6K0r0KaIoEpSsoPzkp4ASlbSkhSXuLuyr09Bjb3fVdM/szGwPe+/37U53VXXV7VMzfereulXtSRNCkS6pV+j0jNmU9M1SSj2SQHT1aqTfUUD6Fx78EuVr3TKga9160ZEjR2jp0qW0cOFC+u233xyrOXDgQOrRo4ej8osWLaLnnnvOUnbcuHHUvn17S7oq4bvvvpO2+eabb1KHDh1UlwUlfc+ePdSoUSNLXU899RSNHj3akm5OOHDgAN17773mZHryySdp7NixlnRVwltvvUXjx4+3ZBcuXJhq165tSfeV8MMPP1iymzVrRh9//LElXU84duyYtJ1WrVrRtGnT9GK2n5999hkNGDDAUq5x48Y0c+ZMS/rOnTsJupklT548tGXLFoqJiTFnSc/PnDlDt99+uyWvefPm9NFHH1nSnSTUqFGDTpw4ka5o8eLF6ddff02XZjz55ZdfqE2bNsYk7fjxxx+nKVOmWNKDmTBixAj64IMPlFVWrVpVw/qee+6h6tWrU3R0tLJsVsnwRDqRp6WmUsLrY+j80tVZpc+U91mgUxuK6/OsMj/SMxISEujHH3+kxYsX04oVK2xvZ968eVSvXj3bcsEi8u+//566d+9uaS9QIr9y5Qpt2rSJ/vnnHwJBYVBz+PBhAg7IMwrSkG+WcBP58OHD6cMPPzSrEbTzatWqEfpLJcEichWhot3NmzcTBiZGAblNnDjRmKQdP/PMMwRMnIqq3XATOQZRzz5rfZb07t2bXn31Vae3E1C5VPFM79q1q/Zbd1LBgw8+SE2aNKH69esTBihZUSKbyK9cpTOzF9DJCe9lxb6z3HPs/Y2o6LiBlvQbMQEPPBA1Ru8qwcP2p59+ooIFC6qKaOluI3Lc2xdffKFZJTJy9nkzpsxwE/lLL71EX375pUmL4J2Gi8ihsepe4OEArkZp2LAh7d2715ikHX/77bea1WjJUCS4hcjnz59Pr7zyikVL2b1bCgUh4dy5c5p3a9WqVX7VVrlyZa1v2rVrRzly5PDr2kguHNFEnnr8JCX0G0WXNm2P5D4Imu45a1alEv+ZFLT6IqGio0ePamT+zTffSNV96KGH6N1335Xm6YluIXJYInDn2+mr6+3kM9xE/sILL9DXX3/tRLWAyoSTyNevX09PPPGERc8777yTvvrqK2/6H3/8QbCYzVK+fHnyl4jcQuRz5syhfv36mW+J3nnnHXrkkUcs6aFKWLNmDY0ZM4a2b/fvGV+mTBl67bXXCL//qKioUKnnmnojmsiTd++lhNdGU/LeA64BNDMVyVG+DJVeENg8WmbqHYy2fRHIX3/95XOO0g1EfunSJerSpQutXh3cKaJwEzmsOFhzMsF8cUalbt26YZkjh55XRawN3LUHDx60qP3zzz9T6dKltfTJkyfTpEnWAfSgQYOkUy2WygwJbiFyeIRefvllg2bXDkeOHEkdO3a0pIcyAf0Azxrc/YhDgbXuVBC3gPn27NmzO70kIstFNpHv/IuO9R9DKfusP7SI7I0MKp2tSCEqu3xuBmsJ/eWwPOF+TUlJ8TZWp04dqlixovfc3wP8uO+//37pQxdz6rIAIr0NNxC53dwy5v5atmxJpUqV0ggkd+7cuvra5759+6TBWeEmclWgUrgsuWDNkevgwjsiCxY0BlMi6EpG9gjOLFasmF6Vo0+3EDkCTDGwNEvPnj2pf//+5uSwnSM2BNb5ypUrtSBYJ5Z6586d6Y033gibjpnREBN5ZqAeojaj8sZSubWhc2sGS20EZtWqVStddcF4QCAqGa5psyAISRaBq5fLbCJXRYxDP1ixsOzg4vUVneuWqHVVH/Tt25defPFFHfKQfQabyDF1A1e6WSpUqKBZiSq3uiq63VyP+dwtRL5hwwZq3bq1WT167LHHaOrUqZb0zEpAf8P9jlUGCAxVyfvvv08IirtRhYn8BurZqJwxVG6DOqLXLbcqI/JAH3zGe0JEe6dOnYxJ2rHdiDyzifztt99WLvHCsruaNWta7smc4BYih6cFQWJmCRcBBJvIcR+wTGGhmgVz6Ai4hGvdLNOnT6eHH37YnGx77hYiVw0uzfEBtjcUpgJYRQ3XO6YDZK53BL/JlkWGSb2QN5NliTyV0ugYXaXtlEJnxHEcRdHtlJ1uEp/ZyBNy4NHAFdHuEaHD75RKJ8RnIdH2bUKH4gHq4MmRneI3Lg6L7hlpREbksDxh3WREli9fTljuY5ann36aRo0aZU72nmc2kcMbIQvWGzJkiHQJkFdxw4FbiBwu/gYNGhg0u3aIFQRYtxzqSOJQELnqe4UlZ5gbN7vV8V2GdZgrVy4LDnYJbiFyEGOVKlWkpIh+9GeZF7wasjX8WMpWtGhRCySwri9evOhNv/vuu+mOO+7wnvs6UE0JBBJ46Ksdt+VlOSI/KwhzvSDv7+ky7QGVGjg7u9gap4Ig0ocohu6kHJQ7RIR+RuiwRZD3ArpE+z1XxNG/gpCMsmlR1IpyUQ2hSwFB6k7Fky2K4jctcVo808rJiBzK4OFXpEiRgPXCQ1VmHSH6FsFwKslsIoe1KtvsBgRSqVIlldrp0rGuHgMWs4R7jhwEAA+CeQMS6OXvBjvme3FyHgoiR0wHLFHzPYEcZEvOnGIuux+3EDl0wyZJ+G2Yxe73ZC4Pr1KvXr3Mydo8980335wu/dSpU4SVCUbBtJhsjb6xjPFYtgEO8nft2kXm2BLjdZF8HLFEniYCpZIWLqXT73xCV04lOuqDk4JAP6ELtN6TSheFNaySWEHg96bloA6CTGGpB1Ngec8Tra/0JIv/askpshqmRVM7oUMRhzp4smUTRG7dDUvdSubkqIgcS15ku4s50TIpKYlatGhhsY5wrV2gVWYTOXZ9k0WrO7V8QDCIzjUTDe7dKamoXKn+7uyGNlUBb7Di1q5d63OuH9dnREJB5NAHgxCZVSnTdcGCBdLd5WRlzWn4HsMSNgui9VWrAcxlzecyYkNf+NrZDXWoNjiCdwUDT6eR4KoVJQhUK1CgQDp1ZUSO9rAJj1OR3S+uhbfIqc5O23JLuYgl8ou/baWEviPoypmzRA52mQVxT6LztMGTIqjUXkDfLQSRdhF2eUyQLPM0ocNHgr4XeS6ns8JV2sA6fyAthroJMvc40CEqbx4R7LZAVZ1r0lVEDgsHJCBzzfpSHtHvmBuXkSGu+/333ylv3rzKKjKbyBFRO2PGDIt+2O700UcftaQbEzAdga1oZZYhymUGkWMnOhCPTOA1wP06eaDCugcpwhpDgJWTLV5DReSqqQvzPWL9MgYrHo/B1WcuZHOuL2szFvOXzIzXyojNCZGrPBGoG3POWN9t14+q9ejYQOfzzz83qqkdnz59WupGR5S62Xq3XCwSduzYQQ888IAlS9WepWCEJkQskSf0G0nnlqxyBDuIe7FwY//Hc0n8v2aJY5OAwoWLUCWxE1BcXBwdP36cdu38g04L1w7WLULyC/J8Pi031aNoBzSqXeLzH+bjB3jOeX0Bmg7ClVyxYiUqKpapJIgIzN3C/XP8eIJXBzwORqTloerC1W8nMVUqUMk50+2KZXq+ish1xbDdIiK1b7nlFj1J+YnoWrjT161bJy3jxKLMbCKfNWuWdEkP5lqxnle2dA7zjnPnzrV1OTq5fwAXTIsc9WGJEu5LJniowkuSP39+WbaWhgEKvgO61Ygdu2Ah2hFHqIgcSmGfcV0fleLYhETmRlaVl6VjcxlZvAjWQ8tISlaHMS1QIkcdn376qdYPxvr0Y2y2ggGWbDVFcnKytie9atmXKhgwMTGRsJe6WbAJDfa+L1mypDnLe47BFiLtZZ4p7G8gC8L0XhzhBxFL5AcaP+HYpZ4obPBpwqUOaxySTbiga9e5i9q276DtmYzRM0b///z9N82d/Tnt2L5NI1KQaBNhlXcXVjls4oxIiqDv1ymJdoo5cV2qirmgtu2epNJlymq7D12FDgcP0Py5c2jrln9dSRXTstFYyiuo3LcO+do8TIUH9tard+0nNj8BwcjmhY1KY30uNuRAoAu2WY2NjSX80LFt6aFDh7QXqWzdutV4SbpjWDGYOza779DXeOD/+eefhM1iEO0u24ELa9vhrsc8NayBEiVKWCwtECrqwB/mtAOpZ+PGjT4tb7jN8XADbhhkQm/o7ESwGgCxA4UKFbLoDusHeqM+xCcgAtss8JLg4ahjULZsWVsyRR2+1vUjHxYhsMV8KAZsZ8+e1bwKu3fv1khM9t1AwKIsDgDzynpf4gUlsgEELOW2bdtqexWgvXLlyjm6D+iqC7wDCNDyJXjZCNb6Z0RUc9Oos1u3bnTbbbfR5cuXNVcxXsZi3koVgWIgNWCCP9WUAFzeer/i+y0LzsO6bSx9lPUH9MH3Ax40/EbRp/ht4TsFD5M5CBDlIehzrG6QvUhGFSNw7UrSnht33XWX1hZ+3+fPn9eeBxiMywJG9euQb5571/NuhM+IJfL9dVrS1cvJjvpgt3Bkj/Gcp+PXneqlSpWmbs/3pPj48umux5fw/3Zsp48+eM87qishAs9GUR4xT50tXVl/T/YLHXp7krxu/ZwionXo8JHiR39tdyhjfYcP/UPDBg/0Rm7CzT85LS/dLILfVOKJiaaiU4dT7rrp12erymd2Oh5EWFscqu08Yc3igS5buoWXPsCa9VdAPMYXgsD6mj17tr/VaNt5mt9khakBp+QsaxAPNZklopc1LxtSeQH08qpPf1y827Zt0zaxUdXlbzr6FK5TDMR1wVapga5P/1sM3P2RCxcuaPsfyJY3oR4MPAP5Xpl1QB3+vJgE3hR9G1IEdDVt2tRcpaNzlft6//79midAdd+OKr9eCAMqBL/heyQTOyKXXWOXphoA2l0XSfkRS+SH/qcXXd6+yxHWGyhZI3I9OrxBw8bUsXMXqUsoJSWZJk8YT9u3XbP0couw9nGCyMX43VFbqkLrruug599dtx717G1db6vnvzf9bVq3ZrV+Sn3TYqmRcPGrJLZFYyoy+EWKyhOrKuK6dAycQGiYAw3GQ0K/QTwsYBHAHSsT1cswZGWNabCMja/Q9LUdqfE68zGmDj755JN0ybDsYT0HggP0gotTFiSlNwJrBFaJLr5cpnoZ2SfIVOb2lZVFGgKaEHUcyH2Z65S9sEP1cg/ztbJzf4kcdQwePNjSd3rd6AOsQMioYG4a7nVY004EsSHx8fFaUfSNbN93J/VgG1RsdCMTeErg0fA1WJRdZ0yDxY7+gjdEJfAmYCCisuZV16nS7faQUF0XaekRS+RJC5fQyfHv0tWk87aY/yJIdKywyEHkcKM3bX4/dXiqY7qRvV4JXEnTpkyi/2689u7rmOtE7ssa1q/19blK6DBe6KBLk2bNqVPnrvqp5fPzmZ/SksXfedP7iLn6JiLsziweMdcfU60KFXqlB8VUdbZUyVxHZp/DXY6tMDFvlhGBmw/WGebTfM2lupHIcd/YoQqDA3/eeIZXTWLuEPeregMX6s4sIkfbsBiHDh0asMcBUxzDhg2Tzp2Gm8gxMFHtEIZ3kmP6JxgCV7bTQQF+O5ivhoSKyFE3+hEDGSevEEZ5o2DJGr6rOXNiPY5vwUAGm7sg2NOfQaOxVlj8+J1jRYivZ4Hxmkg+jlgiT7twkZIW/EBJi5ZRyoFDlGZ6P7OxU7akXaZRKYl0QViAkOo1alKXbj0sc6fIOyGC3qZNnUx79/yFU8rviaLxOeKopCdjFvnmtGQalHxKqxP/ypaL11zrsg0yUlNTaPjQIbRv7x5v+WHRcXSn51+L3CNe0Ze9+E2Uu34dyiOs8egKYkQuBimRLBjtY44ZLma8/tGpwH2OuUO4vo1uV9X12Cd75syZqmxleqtWrdLNN/qyzpSViAzs+KUatMAigTdBttWssU64cbHjGKxxXVTLfJBvXr6keimGXpfq00m0s+paDFTgiZDtkma+BpY/9s5HdDQ2BFGJKlBRVV5P99ezoF+nisiHtTphwgS9WFA+0RaCBmVxF3oDGKBhn359CglucMSVBCLGF8H4uh5Ejk1bli1b5quYlocAQUxB4Xvjr8Bjh3uHFwwDGydeHRB4nz59NC+Qk0GDvzq5tXzEEjkAxVryK4lnKe2MmHsWxyoa2yfclq+LKNmdIggDEiseEt16PE81a9XWzvV/sMZX/LSc5s2epQUWIb26WNM5UVh5hfLl04sF9HlaPKBbiGVCl0U0JwRzWp2f7UYNGt6Xjn8x1li3dhV9+J7wNlyPno+JjqbF4jwul+FFGYLIo/LloWwFRGx9dI6AdHLzRYh6hTsP60pB8CdPniTMn+UT/YBgIkSv4k8WxOXm+3KqG+4fAX1w/8ISQqQ/oryxNAkBSuV8uCedtpFZ5TBYQVAaPA/oV0Q9Y/00Vo8gqBH3iGkRJ4OycN8DyBoudLPAM6Bacmcu6885yAz9rwdUAjtsmoSXsehBe/7UF8yy0AVBkggc1X+fIFIEzkE36JiRZXhmXfXANgxw8Id2sawU3xf9mYDvUFaUiCZypx2GaN/xk6bQvP/9ykuO+fMXoM5du1H8zeUpe7bsBHfODuE2mzv7My2CFnXDJfN8967UpVPHoGwtOWrsOJo1Z75XbVgFT7RtTzVq1qLsgphTxWBki4hWnz9nVrrRZ5vWj9GwQQO81/EBI8AIhB8BPEewlMtsGcLaxL7resBZ+DXjFrM6AlmCyNHJ/xUjx/6Dhwkr57C3z/HDKymsu9jYPJpFcOTwIS/Ro1CVyrfSyGFD6NZKFb3XZOQAVlWXHr1oz9693mrgWsca8nz58msDiGNHj6R7vWd8fDmaIQLfihf373WI3gb4gBFgBIKCAKY8ZOuib/Q1ykEBjysJKQJZhshhcS9ZtpxGjB5LZ4Ubz07yCZfNqOFDqVGD+kF18f24YiWNGTeBDh85aqcCFS9WlPr3fYWaNb3PtiwXYAQYgdAhgGkdzNWbrXG0iLn/SJ7qCB1qXHO4EMgyRK4Duu7n9TRo2HA6JqxjlZQsWYLemjieKt8a/ChwzHmtXL2Gho8cQ8dEYJ1Kioi5piED+9N9jRoGdZ5J1R6nMwKMgBoB1V7rwVo7rm6ZcxgBewSyHJGDSA+KAKIFC7+lzVu2UqLYqx3WOlzccXEFqE7tWtRKLF8qVvQme/QyUAKBGpiz37J1G506nSjc6cmaDgULFKTq1apS29aPi2AR6yv+MtAkX8oIMAIBIKB6NSaqClWQWwBq8iVZGIEsR+R6XyMiPDHxjCDR04QI4Zw5YyhORMwiKjpcQSvQ4YwYSEAHBNJguQR0yJ8/fDroePAnI8AIXEMASx+xGQsG99idDmuaZWLeLU9WhtMYgXAgkGWJPBzgchuMACMQWQhgQK3a3cx8J7DUVbsHmsvyOSMQSgSYyEOJLtfNCDACEYUA3lnt5DW6eOMeXibDwgi4AQEmcjf0AuvACDACrkAAEeh4M58vCcarSn3Vz3mMgL8IMJH7ixiXZwQYgRsWAV9b18Lljl3dZO/LvmEB4RuLCASYyCOim1hJRoARCAcCWCeOF6Nga1xsDYztYytWrKh8H304dOI2GAE7BJjI7RDifEaAEWAEGAFGwMUIMJG7uHNYNUaAEWAEGAFGwA4BJnI7hDifEWAEGAFGgBFwMQJM5C7uHFaNEWAEGAFGgBGwQ4CJ3A4hzmcEGAFGgBFgBFyMABO5izuHVWMEGAFGgBFgBOwQYCK3Q4jzGQFGgBFgBBgBFyPARO7izmHVGAFGgBFgBBgBOwSYyO0Q4nxGgBFgBBgBRsDFCDCRu7hzWDVGgBFgBBgBRsAOASZyO4Q4nxFgBBgBRoARcDECTOQu7hxWjRFgBBgBRoARsEOAidwOIc5nBBgBRoARYARcjAATuYs7h1VjBBgBRoARYATsEGAit0OI8xkBRoARYAQYARcjwETu4s5h1RgBRoARYAQYATsEmMjtEOJ8RoARYAQYAUbAxQgwkbu4c1g1RoARYAQYAUbADgEmcjuEOJ8RYAQYAUaAEXAxAkzkLu4cVo0RYAQYAUaAEbBDgIncDiHOZwQYAUaAEWAEXIwAE7mLO4dVYwQYAUaAEWAE7BBgIrdDiPMZAUaAEWAEGAEXI8BE7uLOYdUYAUaAEWAEGAE7BJjI7RDifEaAEWAEGAFGwMUIMJG7uHNYNUaAEWAEGAFGwA4BJnI7hDifEWAEGAFGgBFwMQJM5C7uHFaNEWAEGAFGgBGwQ4CJ3A4hzmcEGAFGgBFgBFyMABO5izuHVWMEGAFGgBFgBOwQYCK3Q4jzGQFGgBFgBBgBFyPARO7izmHVGAFGgBFgBBgBOwSYyO0Q4nxGgBFgBBgBRsDFCDCRu7hzWDVGgBFgBBgBRsAOASZyO4Q4nxFgBBgBRoARcDECTOQu7hxWjRFgBBgBRoARsEOAidwOIc5nBBgBRoARYARcjAATuYs7h1VjBBgBRoARYATsEPh/SZP8pLVsY6EAAAAASUVORK5CYII=",
                            "xanchor": "center"
                        }
                    ],
                    "mapbox": {
                        "zoom": 1.2201179695808784,
                        "pitch": 0,
                        "style": "light",
                        "center": {
                            "lat": 14.15593684134555,
                            "lon": -125.47519386181108
                        },
                        "bearing": 0
                    },
                    "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"
                    },
                    "clickmode": "event+select",
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Jhigh1030_",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 23:30:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Jhigh1030_",
                "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-12T23:32:23.738332Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Sahori_S/30.embed",
            "fid": "Sahori_S:30",
            "filename": "Industria actual",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Sahori_S:30/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/30/2_TVONH1AH3A5SC0KLXNUT2CGERYYDOJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Sahori_S/30/8_WPH91938QBBO4H75QSRTS3Z2C4C8QT.png",
                "list-thumb": "https://api.plotly.com/v2/files/Sahori_S:30/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Sahori_S:30",
                "plots": "https://api.plotly.com/v2/plots/Sahori_S:30",
                "parent": "https://api.plotly.com/v2/folders/home?user=Sahori_S"
            },
            "owner": "Sahori_S",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 21,
            "web_url": "https://chart-studio.plotly.com/~Sahori_S/30/",
            "world_readable": true,
            "date_modified": "2024-05-13T22:20:02.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Sahori_S/30/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "work_industry"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram",
                        "xsrc": "Sahori_S:20:3df934"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Industria para la que labora"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            22.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            80
                        ],
                        "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/~Sahori_S",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.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-02-26 20:27:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Sahori_S",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}