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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTI2KzE3JTNBNDMlM0EwNy4wNjcyNzclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yNisxOCUzQTI3JTNBNDkuMDE5NDQwJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-26T18:27:49.019440Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~alcajuro/8.embed",
            "fid": "alcajuro:8",
            "filename": "Plot 8",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/alcajuro/8/9_99PKCGO2EBQBIEOKO6S0VU7FP91JF8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/alcajuro/8/2_KUGY2YW7TTEI9SVDE5CQUCF739FUJQ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/alcajuro/8/8_S3YQOCRIDI80UBI6RN2HN92VMCJD8B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/alcajuro/8/9_99PKCGO2EBQBIEOKO6S0VU7FP91JF8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/alcajuro:8",
                "plots": "https://api.plotly.com/v2/plots/alcajuro:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=alcajuro"
            },
            "owner": "alcajuro",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~alcajuro/8/",
            "world_readable": true,
            "date_modified": "2024-04-26T18:33:27.890Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~alcajuro/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "0",
                                "y": "-3.04546e-012"
                            }
                        },
                        "mode": "lines",
                        "name": "<i>C</i><sub>1</sub>",
                        "type": "scatter",
                        "xsrc": "alcajuro:5:b90a59",
                        "ysrc": "alcajuro:5:e5d7af"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "0",
                                "y": "-4.37682e-012"
                            }
                        },
                        "mode": "lines",
                        "name": "<i>C</i><sub>2</sub>",
                        "type": "scatter",
                        "xsrc": "alcajuro:6:f66bb3",
                        "ysrc": "alcajuro:6:f06667"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "0",
                                "y": "-5.44522e-012"
                            }
                        },
                        "mode": "lines",
                        "name": "<i>C</i><sub>3</sub>",
                        "type": "scatter",
                        "xsrc": "alcajuro:7:667744",
                        "ysrc": "alcajuro:7:cba838",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            3.5
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "Tempo [s]"
                        },
                        "autorange": false,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.062138888902395994,
                            1.1806388888895998
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "Amplitude [A]"
                        },
                        "autorange": true,
                        "showticklabels": false
                    },
                    "legend": {
                        "font": {
                            "size": 18
                        }
                    },
                    "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/~alcajuro",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/64.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-26 18:08:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "alcajuro",
                "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-26T18:26:17.214644Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dadoff/3.embed",
            "fid": "dadoff:3",
            "filename": "eu.graph",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dadoff/3/9_3J4IAVU0BAZN6TNTXLESO4CQ4XQ5ZL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dadoff/3/2_VE5KF9B3WPQDFWHUBR5Z8BFKKRW0E8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dadoff/3/8_B1XI8LFUY6LGW2KXNPUFUM12K52V05.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dadoff/3/9_3J4IAVU0BAZN6TNTXLESO4CQ4XQ5ZL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dadoff:3",
                "plots": "https://api.plotly.com/v2/plots/dadoff:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=dadoff"
            },
            "owner": "dadoff",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 60,
            "web_url": "https://chart-studio.plotly.com/~dadoff/3/",
            "world_readable": true,
            "date_modified": "2024-04-28T09:51:14.422Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dadoff/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(32,96,153,1)",
                            "width": 1.88976377952756
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "dadoff:2:be7ac3",
                        "ysrc": "dadoff:2:7cd530",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(32,96,153,1)",
                                "width": 1.88976377952756
                            },
                            "size": 5.66929133858268,
                            "color": "rgba(32,96,153,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "dadoff:2:86d768",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "text": "Anno: 1979<br />Affluenza: 86",
                        "type": "scatter",
                        "xsrc": "dadoff:2:468280",
                        "ysrc": "dadoff:2:f39007",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "fillcolor": "rgba(173,216,230,0.5)",
                        "hoverinfo": "text",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.6118721461187,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 26.5670402656704,
                            "color": "rgba(32,96,153,1)",
                            "family": "Arial"
                        },
                        "text": "Affluenza nelle elezioni europee",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1976.956,
                            2021.044
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.6118721461187,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Anno"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "1980",
                            "1990",
                            "2000",
                            "2010",
                            "2020"
                        ],
                        "tickvals": [
                            1980,
                            1990,
                            2000,
                            2010,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": null,
                        "gridwidth": 0,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "1980",
                            "1990",
                            "2000",
                            "2010",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5,
                            105
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.6118721461187,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Affluenza (%)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "25",
                            "50",
                            "75",
                            "100"
                        ],
                        "tickvals": [
                            0,
                            25,
                            50,
                            75,
                            100
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "25",
                            "50",
                            "75",
                            "100"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.689497716895,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 100,
                        "l": 50,
                        "r": 50,
                        "t": 50
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 1,
                            "y": -0.3,
                            "font": {
                                "size": 10
                            },
                            "text": "Source: Ministero dell'Interno, © 2024 David Ruffini",
                            "xref": "paper",
                            "yref": "paper",
                            "xshift": 0,
                            "yshift": 0,
                            "xanchor": "right",
                            "yanchor": "auto",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dadoff",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.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-26 17:56:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dadoff",
                "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-26T18:20:39.848653Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dionchu/102.embed",
            "fid": "dionchu:102",
            "filename": "20240426_basis",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dionchu/102/9_Z79751EXHVC40FOTURXRN7TDZJGQ6E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dionchu/102/2_6DCI8OUNOUA2HURURE9L3F2CX3OHV2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dionchu/102/8_YSS26OP72CW4Y4SU9F0T75O0Y6IRJG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dionchu/102/9_Z79751EXHVC40FOTURXRN7TDZJGQ6E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dionchu:102",
                "plots": "https://api.plotly.com/v2/plots/dionchu:102",
                "parent": "https://api.plotly.com/v2/folders/home?user=dionchu"
            },
            "owner": "dionchu",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~dionchu/102/",
            "world_readable": true,
            "date_modified": "2024-04-26T18:20:39.861Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dionchu/102/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(167, 91, 162)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Aave Borrow</b><br>correlation 100.00%",
                        "type": "scatter",
                        "xsrc": "dionchu:101:afed2d",
                        "ysrc": "dionchu:101:616ca3"
                    },
                    {
                        "line": {
                            "color": "rgb(68, 170, 192)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>3mo Basis (ETH)</b><br>correlation 96.06%",
                        "type": "scatter",
                        "xsrc": "dionchu:101:afed2d",
                        "ysrc": "dionchu:101:84ce69",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(132, 137, 137)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Perp Funding</b><br>correlation 94.37%",
                        "type": "scatter",
                        "xsrc": "dionchu:101:afed2d",
                        "ysrc": "dionchu:101:3a8679",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "DeFi money markets vs. ETH derivatives funding rates"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            302
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0.977222222222222,
                            31.63277777777778
                        ],
                        "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/~dionchu",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-10-20 19:36:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dionchu",
                "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-26T18:17:26.954875Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dionchu/100.embed",
            "fid": "dionchu:100",
            "filename": "20240426",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dionchu/100/9_IQN6Z1X8RFHEQ7OWFPW7J2W4TI9ZGX.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dionchu/100/2_VTUIO0MBYGZUBPXFN4DH4XH5G59DVM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dionchu/100/8_UAZG3X7M4QU1FDCVHDH7TFFIW588QT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dionchu/100/9_IQN6Z1X8RFHEQ7OWFPW7J2W4TI9ZGX.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dionchu:100",
                "plots": "https://api.plotly.com/v2/plots/dionchu:100",
                "parent": "https://api.plotly.com/v2/folders/home?user=dionchu"
            },
            "owner": "dionchu",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~dionchu/100/",
            "world_readable": true,
            "date_modified": "2024-04-26T18:17:26.967Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dionchu/100/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "e5f816",
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Clearing Volume - wETH/wstETH",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:a64279",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(92, 58, 214)",
                            "opacity": 1
                        },
                        "opacity": 0.5,
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "uid": "fc1e4a",
                        "line": {
                            "color": "rgb(92, 58, 214)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "A"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Clearing Rate - wETH/wstETH<br>",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:1f5d3b",
                        "opacity": 1
                    },
                    {
                        "uid": "a767bc",
                        "line": {
                            "color": "rgb(92, 58, 214)",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Clearing Rate - USDC/sDAI",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:ef7dbd",
                        "xaxis": "x2",
                        "yaxis": "y3",
                        "stackgroup": null,
                        "connectgaps": false
                    },
                    {
                        "uid": "7f8dba",
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Clearing Volume - USDC/sDAI",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:6f83c4",
                        "xaxis": "x2",
                        "yaxis": "y4",
                        "marker": {
                            "color": "rgb(92, 58, 214)",
                            "opacity": 1
                        },
                        "opacity": 0.5,
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "uid": "d1c0cf",
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "F"
                            }
                        },
                        "name": "Clearing Volume - USDC/wstETH",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:1e14aa",
                        "xaxis": "x2",
                        "yaxis": "y4",
                        "marker": {
                            "color": "rgb(99, 209, 207)",
                            "opacity": 0.75
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "uid": "e60dcb",
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "G"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Clearing Rate - USDC/wstETH",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:72a7b3",
                        "xaxis": "x2",
                        "yaxis": "y3",
                        "marker": {
                            "color": "rgb(99, 209, 207)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "c172a0",
                        "line": {
                            "color": "rgb(99, 209, 207)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "I"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Clearing Rate - wETH/wstETH (12wk)",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:5656c8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "connectgaps": true
                    },
                    {
                        "uid": "778fcb",
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "H"
                            }
                        },
                        "mode": "lines",
                        "name": "Clearing Volume - wETH/wstETH (12wk)",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:a6e82e",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(99, 209, 207)",
                            "opacity": 0.75
                        },
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "J"
                            }
                        },
                        "name": "Clearing Volume - USDC/wSTBT",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:db4bfe",
                        "xaxis": "x2",
                        "yaxis": "y4",
                        "marker": {
                            "color": "rgb(99, 209, 207)",
                            "opacity": 0.5
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "P"
                            }
                        },
                        "name": "Clearing Volume - wETH/weETH 5mo",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:09e4ce",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(44, 188, 252)",
                            "opacity": 0.5
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "R"
                            }
                        },
                        "name": "<b>Clearing Volume - wETH/weETH</b>",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:eb70ef",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(180, 92, 252)",
                            "opacity": 0.5
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "Q"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<b>Clearing Rate - wETH/weETH 5mo</b>",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:64a9a8",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(44, 188, 252)"
                        },
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "S"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<b>Clearing Rate - wETH/weETH</b>",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:696841",
                        "marker": {
                            "color": "rgb(180, 92, 252)"
                        },
                        "opacity": 1,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(4, 156, 244)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "M"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Clearing Rate - USDC/wstETH High LTV",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:7e9db4",
                        "xaxis": "x2",
                        "yaxis": "y3",
                        "connectgaps": true,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "color": "rgb(244, 148, 68)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "O"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<b>Clearing Rate - USDC/wBTC</b>",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:d58ae3",
                        "xaxis": "x2",
                        "yaxis": "y3",
                        "stackgroup": null,
                        "connectgaps": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "L"
                            }
                        },
                        "mode": "markers",
                        "name": "Clearing Volume - USDC/wstETH High LTV",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:82957c",
                        "xaxis": "x2",
                        "yaxis": "y4",
                        "marker": {
                            "color": "rgb(4, 156, 244)",
                            "opacity": 0.5
                        },
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "N"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Clearing Volume - USDC/wBTC",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:edc911",
                        "xaxis": "x2",
                        "yaxis": "y4",
                        "marker": {
                            "color": "rgb(244, 148, 68)"
                        },
                        "opacity": 0.5,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "color": "rgb(180, 92, 252)",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "W"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<b>Clearing Rate - USDC/weETH</b>",
                        "type": "scatter",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:f49a07",
                        "xaxis": "x2",
                        "yaxis": "y3",
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "color": "rgb(180, 92, 252)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "V"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>Clearing Volume - USDC/weETH</b>",
                        "type": "bar",
                        "xsrc": "dionchu:99:761e6e",
                        "ysrc": "dionchu:99:235651",
                        "xaxis": "x2",
                        "yaxis": "y4",
                        "marker": {
                            "color": "rgb(180, 92, 252)",
                            "opacity": 0.5
                        },
                        "stackgroup": null,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "<br>"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            3.255142750704574,
                            37
                        ],
                        "ticks": "",
                        "title": {
                            "text": "<br>"
                        },
                        "anchor": "free",
                        "domain": [
                            0.55,
                            1
                        ],
                        "showline": false,
                        "autorange": false,
                        "overlaying": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                -0.6703160504028094,
                                10.670316050402809
                            ],
                            "yaxis": {},
                            "yaxis2": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.10971069182389953,
                            16.26103144654088
                        ],
                        "title": {
                            "text": "<br>"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": true,
                        "showline": false,
                        "tickmode": "linear",
                        "autorange": false,
                        "gridcolor": "rgb(238, 238, 238)",
                        "gridwidth": 1,
                        "overlaying": false,
                        "tickformat": ""
                    },
                    "images": [
                        {
                            "x": 0.5,
                            "y": 0.5,
                            "layer": "above",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABdwAAAXcCAYAAAA4NUxkAAAACXBIWXMAAC4jAAAuIwF4pT92AAA1LklEQVR4nOzdPYildxmH4WfCRHSXJbu4EASVhYUQU2hhikQEbZZgtLOZQkSL+LGlFkL6BTttkiKNIBZbiRammT5K0FbQbZLWxtZuLE5ACIr7cc/5n/fsdcGpBub9TTNw7nmYc3JxcTEAAAAAAMCTeWb1AAAAAAAAOAaCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAInK4e8LBOzs4v+xG3ZubVmXlpZl746PX8zFyfmU9d9sMBAAAAAA7cv2bmnzPzj5n528z8fWb+OjN/nJkPLvPBF/fvXOa3z2wmuF+Ck5l5ZWa+MzOvzy64AwAAAADw331yZj7z0etLH/vaBzPz7sz8Zmb+NDMXe112IJ7GfylzY2benJkHM/PezNwdsR0AAAAA4Encml1rfW927fXN2bXYp8rTFNxvzszPZ+bDmbk3M7fXzgEAAAAAOEq3Z9dgP5xdk725ds7+PA3B/ZnZ/WXlwcz8bGaurZ0DAAAAAPBUuDa7Jvtgdo326Hv0sf+AL87M+zPz1uw+/BQAAAAAgP26PrtG+/7smu3ROubg/r2Z+cvMfHnxDgAAAAAAdq32z7Nrt0fpGIP7szPzzsz8amauLN4CAAAAAMB/XJ1du31ndi33qBxbcL8yM7+bmTcW7wAAAAAA4H97Y2Z+P0d2NH1Mwf3KzLw7M6+vHgIAAAAAwP/1jZn5wxxRdD+W4P7szPx2Zr62eggAAAAAAA/t67Nru59YvCNxLMH9lzPz2uoRAAAAAAA8stdm5herRxSOIbh/d2burh4BAAAAAMBjuzu71rtpWw/uX5iZt1ePAAAAAADgib09u+a7WVsO7s/MzK9n5urqIQAAAAAAPLGrs2u+m+3Wmx0+Mz+cmZdXjwAAAAAAIPPy7NrvJm01uN+cmXurRwAAAAAAkLs3M59ePeJxbDW4/2RmbqweAQAAAABA7sbM/HT1iMexxeB+fXafWAsAAAAAwHG6O7sWvClbDO4/mpnnVo8AAAAAAODSPDczP1494lFtMbh/f/UAAAAAAAAu3Q9mYw17U2Nn5pWZeWH1CAAAAAAALt2tmfnq6hGPYmvB/Wz1AAAAAAAA9ubbqwc8iq0F92+tHgAAAAAAwN58c/WAR7Gl4P65mbm9egQAAAAAAHtze2Y+u3rEw9pScH919QAAAAAAAPbuK6sHPKwtBfcvrh4AAAAAAMDebaYNbym4v7h6AAAAAAAAe/fS6gEPa0vB/dbqAQAAAAAA7N3nVw94WFsK7s+vHgAAAAAAwN5tpg1vKbhfWz0AAAAAAIC920wb3lJwv7p6AAAAAAAAe7eZNryl4H66egAAAAAAAHu3mTa8peAOAAAAAAAHS3AHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQOB09QDYoov7d1ZPAACA5U7OzldPWMr7AuCYPe2/4+FxuXAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACJyuHgBbdHJ2vnoCAACwmPcFAMDHuXAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAicrh4AAHDoLu7fWT0B4CCdnJ2vngAAcFBcuAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAETlcPAAA4dCdn56snAAAAsAEu3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAIHT1QMAAA7Nxf07qycAHKSTs/PVEwAADpoLdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAIDA6eoBAACH5uTsfPUEAAAANsiFOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAIHC6egAAwKG5uH9n9QSAg3Rydr56AgDAQXPhDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABA4XT0AAODQnJydr54AAADABrlwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAAAAAcEdAAAAAAACgjsAAAAAAAQEdwAAAAAACAjuAAAAAAAQENwBAAAAACAguAMAAAAAQEBwBwAAAACAgOAOAAAAAAABwR0AAAAAAAKCOwAAAAAABAR3AAAAAAAICO4AAAAAABAQ3AEAAAAAICC4AwAAAABAQHAHAAAAAICA4A4AAAAAAAHBHQAAAAAAAoI7AAAAAAAEBHcAAAAAAAgI7gAAAAAAEBDcAQAAAAAgILgDAAAAAEBAcAcAAAAAgIDgDgAAAPDv9u7Y1csqAOP4E/Un9AdY2NDU0CAtzo3RHxA0FOQeBUJLU1FtCZGFjUGTRIubRS41FJJB3LKaJAlRUxBvt+HVMbz3+vg7nvd+PnD2h3f8vnAOABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFgjsAAAAAABQI7gAAAAAAUCC4AwAAAABAgeAOAAAAAAAFMwX37dEDAAAAAADYuNujB+zWTMH9+ugBAAAAAABs3D+jB+zWTMH92ugBAAAAAABs3DRteKbgfmn0AAAAAAAANm6aNjxTcP999AAAAAAAADbuj9EDdmum4P7z6AEAAAAAAGzchdEDdmum4P7D6AEAAAAAAGzcNG14puB+bvQAAAAAAAA2bpo2PFNw/zPJ1ugRAAAAAABszFaWNjyFmYJ7knw5egAAAAAAABvz1egBezFbcP989AAAAAAAADbmi9ED9mK24H4uyS+jRwAAAAAA8MBdTPLN6BF7MVtwT5JTowcAAAAAAPDAnUzy7+gRezFjcD+R5OroEQAAAAAAPDBXk3w4esRezRjcr2SJ7gAAAAAArNOJLC14KjMG9yT5IBN+bAAAAAAA7ulKkvdHj9iPWYP7X0mOjx4BAAAAAEDd8SSXR4/Yj1mDe5J8lOS70SMAAAAAAKj5Pkv7ndLMwX07yUtJboweAgAAAADAfbuRpflujx6yXzMH9yS5kOTY6BEAAAAAANy3Y0l+Gj3ifswe3JPksySfjh4BAAAAAMC+fZKl9U5tDcE9SV5Lcmb0CAAAAAAA9uxMVnKTyVqC+60kLyQ5O3gHAAAAAAC7dzZL2701eEfFWoJ7slyo/3yS06OHAAAAAABwT6ezNN0bo4e0rCm4J8nNJC8mOTl6CAAAAAAA/+vjLC335ughTWsL7kmyneSVJC9nRX9GAAAAAABW4EaWdvtqlpa7KmsM7nedSnIkyY+DdwAAAAAAsLTaI1na7SqtObgnyfkkzyZ5I8n1wVsAAAAAAA6i60nezNJqzw/e8kCtPbgnye0k7yY5nOS9JNfGzgEAAAAAOBCuZWmyh5O8k6XVrtpBCO53XUryepJDSd5KsjV0DQAAAADAOm1labCHsjTZS0PXbNBBCu53/Z3k7SRPJTma5ESSiyMHAQAAAABM7mKW1no0S3t9O0uLPVAeGz1goJ0kX985SfJkkueSPJPk6SRPJHn8znl0xEAAAAAAgIfIdpLLd85vSS5keQj12yS/Dtz10HhkZ2dn9AYAAAAAAJjeQbxSBgAAAAAA6gR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKBAcAcAAAAAgALBHQAAAAAACgR3AAAAAAAoENwBAAAAAKDgP46JziHWmXq4AAAAAElFTkSuQmCC",
                            "visible": false,
                            "xanchor": "center",
                            "yanchor": "middle"
                        }
                    ],
                    "legend": {
                        "x": 0.37689872425790677,
                        "y": 2.735632183908046,
                        "valign": "top",
                        "xanchor": "right",
                        "yanchor": "bottom",
                        "itemsizing": "trace",
                        "traceorder": "normal",
                        "orientation": "h"
                    },
                    "xaxis2": {
                        "side": "bottom",
                        "type": "category",
                        "range": [
                            0.3765865450280672,
                            37
                        ],
                        "title": {
                            "text": "<br>"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            0.45
                        ],
                        "autorange": false,
                        "overlaying": false,
                        "showspikes": false
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -9.826567562416649,
                            1016.588526777206
                        ],
                        "title": {
                            "text": "ETH Volume"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": false,
                        "autorange": false,
                        "overlaying": "y"
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -0.0756603773584906,
                            20
                        ],
                        "title": {
                            "text": "Clearing Rate"
                        },
                        "anchor": "x2",
                        "domain": [
                            0,
                            1
                        ],
                        "showgrid": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "zerolinecolor": "rgb(234, 234, 234)",
                        "zerolinewidth": 1
                    },
                    "yaxis4": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -37735.849056603765,
                            3000000
                        ],
                        "title": {
                            "text": "USDC Volume"
                        },
                        "anchor": "x2",
                        "showgrid": false,
                        "showline": false,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": "y3"
                    },
                    "barmode": "stack",
                    "autosize": true,
                    "dragmode": "pan",
                    "showlegend": false,
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dionchu",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-10-20 19:36:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dionchu",
                "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-26T18:14:35.849622Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~MattUCSC/7.embed",
            "fid": "MattUCSC:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/MattUCSC/7/9_0NAYTXIGYZV8JZAYHUANKC918QBJHZ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/MattUCSC/7/2_EROINZDVQH3CMIIP2FXOAOU241GL6Y.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/MattUCSC/7/8_L4Q5LS0JCUS4JPJGGOFTT10V21PAEU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/MattUCSC/7/9_0NAYTXIGYZV8JZAYHUANKC918QBJHZ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/MattUCSC:7",
                "plots": "https://api.plotly.com/v2/plots/MattUCSC:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=MattUCSC"
            },
            "owner": "MattUCSC",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~MattUCSC/7/",
            "world_readable": true,
            "date_modified": "2024-04-26T18:16:17.668Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~MattUCSC/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "atotal"
                            }
                        },
                        "mode": "lines",
                        "type": "pie",
                        "xsrc": "MattUCSC:6:5026a4",
                        "ysrc": "MattUCSC:6:86af42"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "ax"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "MattUCSC:6:5026a4",
                        "ysrc": "MattUCSC:6:3a5628",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "ay"
                            }
                        },
                        "mode": "lines",
                        "type": "pie",
                        "xsrc": "MattUCSC:6:5026a4",
                        "ysrc": "MattUCSC:6:462b44",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "time",
                                "y": "az"
                            }
                        },
                        "mode": "lines",
                        "type": "pie",
                        "xsrc": "MattUCSC:6:5026a4",
                        "ysrc": "MattUCSC:6:7b71c1",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Acceleration aX vs Time"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            6.493975415608239,
                            8.11422392894892
                        ],
                        "title": {
                            "text": "time (s)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -87.34166666666667,
                            109.53591075359995
                        ],
                        "title": {
                            "text": "Acceleration aX (m/s^2)"
                        },
                        "autorange": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~MattUCSC",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/92.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-26 16:14:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "MattUCSC",
                "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-26T18:09:07.104397Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~alcajuro/4.embed",
            "fid": "alcajuro:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/alcajuro/4/9_ODW2QOH4QKU8L21039WMDYQU83VTW4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/alcajuro/4/2_92UYW5RUWP7QW37GQKUUROLAFRP8V0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/alcajuro/4/8_BQBI830Y1N91C92EY3WCAW77JOWW99.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/alcajuro/4/9_ODW2QOH4QKU8L21039WMDYQU83VTW4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/alcajuro:4",
                "plots": "https://api.plotly.com/v2/plots/alcajuro:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=alcajuro"
            },
            "owner": "alcajuro",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~alcajuro/4/",
            "world_readable": true,
            "date_modified": "2024-04-26T18:39:46.077Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~alcajuro/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "0",
                                "y": "-8.65825e-015"
                            }
                        },
                        "mode": "lines",
                        "name": "<i>V</i><sub>in</sub>",
                        "type": "scatter",
                        "xsrc": "alcajuro:0:955ffc",
                        "ysrc": "alcajuro:0:55b9b9",
                        "visible": true
                    },
                    {
                        "line": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "0",
                                "y": "3.035460"
                            }
                        },
                        "mode": "lines",
                        "name": "<i>C</i><sub>1</sub>",
                        "type": "scatter",
                        "xsrc": "alcajuro:1:f752d7",
                        "ysrc": "alcajuro:1:8c2f92",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(0, 255, 0)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "0",
                                "y": "4.366820"
                            }
                        },
                        "mode": "lines",
                        "name": "<i>C</i><sub>2</sub>",
                        "type": "scatter",
                        "xsrc": "alcajuro:2:ea92d5",
                        "ysrc": "alcajuro:2:9bf204",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 255)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "0",
                                "y": "5.435220"
                            }
                        },
                        "mode": "lines",
                        "name": "<i>C</i><sub>3</sub>",
                        "type": "scatter",
                        "xsrc": "alcajuro:3:6eb0d9",
                        "ysrc": "alcajuro:3:5f4411",
                        "xaxis": "x",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            3.5
                        ],
                        "title": {
                            "font": {
                                "size": 18,
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "<b>Tempo [s]</b>"
                        },
                        "autorange": false,
                        "gridcolor": "rgba(0, 0, 0, 0.5)",
                        "fixedrange": false,
                        "showspikes": false,
                        "zerolinecolor": "rgba(0, 0, 0, 0.5)",
                        "zerolinewidth": 1,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -7.855544444444444,
                            7.855544444444444
                        ],
                        "title": {
                            "font": {
                                "size": 18,
                                "color": "rgb(0, 0, 0)"
                            },
                            "text": "<b>Amplitude [V]</b>"
                        },
                        "autorange": true,
                        "gridcolor": "rgba(0, 0, 0, 0.5)",
                        "showspikes": false,
                        "zerolinecolor": "rgba(0, 0, 0, 0.5)",
                        "zerolinewidth": 1,
                        "showticklabels": false
                    },
                    "legend": {
                        "font": {
                            "size": 18
                        },
                        "title": {
                            "font": {
                                "size": 1
                            },
                            "text": "<br>"
                        }
                    },
                    "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/~alcajuro",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/64.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-26 18:08:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "alcajuro",
                "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-26T18:01:39.476113Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dadoff/1.embed",
            "fid": "dadoff:1",
            "filename": "your-filename",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dadoff/1/9_9TWM54M8XTBYBZ7LOBJ4FMRJ3EQ7KQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dadoff/1/2_FBP07HA7BLS0C0ELYGF06O3TBX49IR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dadoff/1/8_J3VP946OM5PB0VC6SRVHXH6PLVI49I.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dadoff/1/9_9TWM54M8XTBYBZ7LOBJ4FMRJ3EQ7KQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dadoff:1",
                "plots": "https://api.plotly.com/v2/plots/dadoff:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=dadoff"
            },
            "owner": "dadoff",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 76,
            "web_url": "https://chart-studio.plotly.com/~dadoff/1/",
            "world_readable": true,
            "date_modified": "2024-04-28T09:51:02.000Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dadoff/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(32,96,153,1)",
                            "width": 1.88976377952756
                        },
                        "mode": "markers+lines",
                        "type": "scatter",
                        "xsrc": "dadoff:0:05f480",
                        "ysrc": "dadoff:0:96d4bf",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(32,96,153,1)",
                                "width": 1.88976377952756
                            },
                            "size": 5.66929133858268,
                            "color": "rgba(32,96,153,1)",
                            "symbol": "circle",
                            "opacity": 1,
                            "autocolorscale": false
                        },
                        "hoveron": "points",
                        "textsrc": "dadoff:0:0bb1d4",
                        "hoverinfo": "text",
                        "showlegend": false
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 1.88976377952756
                        },
                        "mode": "lines",
                        "text": "Anno: 1948<br />Affluenza: 92",
                        "type": "scatter",
                        "xsrc": "dadoff:0:b12f4e",
                        "ysrc": "dadoff:0:df3450",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "fillcolor": "rgba(173,216,230,0.5)",
                        "hoverinfo": "text",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.6118721461187,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 17.5342465753425,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "Affluenza nelle elezioni politiche",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1944.2186,
                            2025.7814
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.6118721461187,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Anno"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "1960",
                            "1980",
                            "2000",
                            "2020"
                        ],
                        "tickvals": [
                            1960,
                            1980,
                            2000,
                            2020
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": null,
                        "gridwidth": 0,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "1960",
                            "1980",
                            "2000",
                            "2020"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -5,
                            105
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.6118721461187,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Affluenza (%)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0",
                            "25",
                            "50",
                            "75",
                            "100"
                        ],
                        "tickvals": [
                            0,
                            25,
                            50,
                            75,
                            100
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0",
                            "25",
                            "50",
                            "75",
                            "100"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.689497716895,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 100,
                        "l": 50,
                        "r": 50,
                        "t": 50
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 1,
                            "y": -0.3,
                            "font": {
                                "size": 10
                            },
                            "text": "Source: Ministero dell'Interno, © 2024 David Ruffini",
                            "xref": "paper",
                            "yref": "paper",
                            "xshift": 0,
                            "yshift": 0,
                            "xanchor": "right",
                            "yanchor": "auto",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dadoff",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/90.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-26 17:56:54",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dadoff",
                "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-26T18:01:20.586619Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~radamski/2.embed",
            "fid": "radamski:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/radamski/2/9_4BOZMK2B1NYFLJQMKKWMYVHACELXT4.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/radamski/2/2_5LBX2B1PS1I75WGJCN4SSCK542ZS7T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/radamski/2/8_HOHCFUDN5WCRVALA5LCTAMGXNBW0SV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/radamski/2/9_4BOZMK2B1NYFLJQMKKWMYVHACELXT4.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/radamski:2",
                "plots": "https://api.plotly.com/v2/plots/radamski:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=radamski"
            },
            "owner": "radamski",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~radamski/2/",
            "world_readable": true,
            "date_modified": "2024-04-26T18:11:14.396Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~radamski/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "BeiDou P50",
                                "text": ""
                            }
                        },
                        "mode": "lines",
                        "name": "Beidou P50 - YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:e0f7f3",
                        "visible": "legendonly",
                        "showlegend": true,
                        "legendgroup": 1
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "BeiDou P50"
                            }
                        },
                        "mode": "lines",
                        "name": "Beidou P50 - YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:cb53d6",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "Galileo P50"
                            }
                        },
                        "mode": "lines",
                        "name": "Gal P50 - YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:93dda2",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "Galileo P50"
                            }
                        },
                        "mode": "lines",
                        "name": "Gal P50 - YVR</b>",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:6410d9",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GPS-Navstar P50"
                            }
                        },
                        "mode": "lines",
                        "name": "GPS P50 - YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:909179",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GPS-Navstar P50"
                            }
                        },
                        "mode": "lines",
                        "name": "GPS P50 - YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:00b92e",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GLONASS P50"
                            }
                        },
                        "mode": "lines",
                        "name": "GLONASS P50 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:63e6ef",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GLONASS P50"
                            }
                        },
                        "mode": "lines",
                        "name": "GLONASS P50 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:f7c420",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "QZSS P50"
                            }
                        },
                        "mode": "lines",
                        "name": "QZSS P50 - YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:8d9b49",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "QZSS P50"
                            }
                        },
                        "mode": "lines",
                        "name": "QZSS P50 - YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:f6ccbb",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "BeiDou P68"
                            }
                        },
                        "mode": "lines",
                        "name": "Beidou P68 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:98e065",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "BeiDou P68"
                            }
                        },
                        "mode": "lines",
                        "name": "Beidou P68 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:5a3c52",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "Galileo P68"
                            }
                        },
                        "mode": "lines",
                        "name": "Galileo P68 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:d3d8b9",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "Galileo P68"
                            }
                        },
                        "mode": "lines",
                        "name": "Galileo P68 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:bca775",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GPS-Navstar P68"
                            }
                        },
                        "mode": "lines",
                        "name": "GPS P68 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:b77516",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GPS-Navstar P68"
                            }
                        },
                        "mode": "lines",
                        "name": "GPS P68 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:2f4d3a",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GLONASS P68"
                            }
                        },
                        "mode": "lines",
                        "name": "GLONASS P68 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:72a143",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GLONASS P68"
                            }
                        },
                        "mode": "lines",
                        "name": "GLONASS P68 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:a26554",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "QZSS P68"
                            }
                        },
                        "mode": "lines",
                        "name": "QZSS P68 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:d86aa2",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "QZSS P68"
                            }
                        },
                        "mode": "lines",
                        "name": "QZSS P68 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:cc559b",
                        "visible": "legendonly",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "BeiDou P95"
                            }
                        },
                        "mode": "lines",
                        "name": "BeiDou P95 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:435845",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "BeiDou P95"
                            }
                        },
                        "mode": "lines",
                        "name": "BeiDou P95 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:7d8aa0",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GLONASS P95"
                            }
                        },
                        "mode": "lines",
                        "name": "GLONASS P95 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:ff7901",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GLONASS P95"
                            }
                        },
                        "mode": "lines",
                        "name": "GLONASS P95 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:089e8a",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GPS-Navstar P95"
                            }
                        },
                        "mode": "lines",
                        "name": "GPS P95 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:309647",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "GPS-Navstar P95"
                            }
                        },
                        "mode": "lines",
                        "name": "GPS P95 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:a468a3",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "Galileo P95"
                            }
                        },
                        "mode": "lines",
                        "name": "Galileo P95 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:3f48fe",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "Galileo P95"
                            }
                        },
                        "mode": "lines",
                        "name": "Galileo P95 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:80f441",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "QZSS P95"
                            }
                        },
                        "mode": "lines",
                        "name": "QZSS P95 YYZ",
                        "type": "scatter",
                        "xsrc": "radamski:0:60e27f",
                        "ysrc": "radamski:0:b7e8c7",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Hours since start",
                                "y": "QZSS P95"
                            }
                        },
                        "mode": "lines",
                        "name": "QZSS P95 YVR",
                        "type": "scatter",
                        "xsrc": "radamski:1:249f8b",
                        "ysrc": "radamski:1:cd2aa1",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            171
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -3.031242266094103,
                            62.70144751109215
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 1.0551330798479088,
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "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/~radamski",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/0.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-26 18:00:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "radamski",
                "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-26T17:43:57.712991Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Yonem/23.embed",
            "fid": "Yonem:23",
            "filename": "BRAGR0043_plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Yonem/23/9_FZPR3U9C812CYYNJWIRM112ZZOB1SR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Yonem/23/2_NN50JRIVC3HODMKAHSNABMDROV5FS8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Yonem/23/8_04X321YR64BX8ABO7175DQ3T85SG0Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Yonem/23/9_FZPR3U9C812CYYNJWIRM112ZZOB1SR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Yonem:23",
                "plots": "https://api.plotly.com/v2/plots/Yonem:23",
                "parent": "https://api.plotly.com/v2/folders/home?user=Yonem"
            },
            "owner": "Yonem",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~Yonem/23/",
            "world_readable": true,
            "date_modified": "2024-04-26T19:22:31.188Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Yonem/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "date",
                                "y": "ROML PROD"
                            }
                        },
                        "mode": "lines",
                        "name": "ROML PROD",
                        "type": "scatter",
                        "xsrc": "Yonem:22:b66400",
                        "ysrc": "Yonem:22:7a98a0"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "date",
                                "y": "dessaz usando o X13 do python(sem calendario e sem parametros)"
                            }
                        },
                        "mode": "lines",
                        "name": "Python(sem parâmetro e calendário)",
                        "type": "scatter",
                        "xsrc": "Yonem:22:b66400",
                        "ysrc": "Yonem:22:ce0eab",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "date",
                                "y": "dessaz usando o X13 do R(com parametros e calendario)"
                            }
                        },
                        "mode": "lines",
                        "name": "R(com parâmetro e calendário)",
                        "type": "scatter",
                        "xsrc": "Yonem:22:b66400",
                        "ysrc": "Yonem:22:6c9426",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "date",
                                "y": "dessaz usando o X13 do R(com parametros e sem calendario)"
                            }
                        },
                        "mode": "lines",
                        "name": "R(com parâmetro e sem calendário)",
                        "type": "scatter",
                        "xsrc": "Yonem:22:b66400",
                        "ysrc": "Yonem:22:54a994",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "date",
                                "y": "dessaz usando o X13 do R(sem parametros e sem calendario)"
                            }
                        },
                        "mode": "lines",
                        "name": "R(sem parâmetro e calendário)",
                        "type": "scatter",
                        "xsrc": "Yonem:22:b66400",
                        "ysrc": "Yonem:22:9f1a31",
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "1) BRAGR0043 (BRA - IC-BR - Agropecuária)"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "1998-02-01",
                            "2050-12-01"
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            28.298613760661297,
                            250.1459676968073
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0,
                        "y": -0.1,
                        "valign": "top",
                        "xanchor": "auto",
                        "yanchor": "auto",
                        "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Yonem",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-26 12:25:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Yonem",
                "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-26T17:43:07.067277Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~artim/2.embed",
            "fid": "artim:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/artim/2/9_T0QPYK2CD1UCVSAIFTZO3ZCATP4QXD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/artim/2/2_LTT2LTR0NI691CD9AKO9W1MDJ8M0Q3.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/artim/2/8_HYJUPB8GL1F9C6ENITB340V9RH0GQY.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/artim/2/9_T0QPYK2CD1UCVSAIFTZO3ZCATP4QXD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/artim:2",
                "plots": "https://api.plotly.com/v2/plots/artim:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=artim"
            },
            "owner": "artim",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~artim/2/",
            "world_readable": true,
            "date_modified": "2024-05-03T19:47:30.396Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~artim/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "31c596",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "artim:0:a9874f",
                        "ysrc": "artim:0:effd9c"
                    },
                    {
                        "uid": "96cb2f",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "31c596",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.10794813084500855,
                                        "value": 2.363893687846962
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 11180339.887498949,
                                        "value": 3.0549363634996047e-149
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "92d669",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "31c596",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "a",
                                        "error": 2.2934250577082542,
                                        "value": -0.13288945855917517
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 20.95753650979234,
                                        "value": 9.303486099428733
                                    },
                                    {
                                        "hold": false,
                                        "name": "c",
                                        "error": 47.76576281458452,
                                        "value": -28.795289229771843
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "a*x^2 + b*x + c",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            4.138201409495549,
                            4.928798590504451
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            7.456284508560094,
                            13.922140086305209
                        ],
                        "autorange": true,
                        "showspikes": true
                    },
                    "legend": {
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "autosize": true,
                    "dragmode": "lasso",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~artim",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/36.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-22 19:33:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "artim",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}