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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTA1KzExJTNBNTUlM0EyMS43Mzc4MzAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wNSsxMyUzQTA0JTNBNDkuMDQ2NDI1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-05T13:04:49.046425Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~agozsonmez/5.embed",
            "fid": "agozsonmez:5",
            "filename": "600V-3.8k_HV_DC_ICU",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/agozsonmez/5/9_NUJFX6NHTKXKLZES2JHRHDF0FU3JZB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/agozsonmez/5/2_EFS0B513M4DOSJ10W17ZQEG1LSLLVY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/agozsonmez/5/8_549A6IXUTQMSC97HOCFI93IHQO3J71.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/agozsonmez/5/9_NUJFX6NHTKXKLZES2JHRHDF0FU3JZB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/agozsonmez:5",
                "plots": "https://api.plotly.com/v2/plots/agozsonmez:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=agozsonmez"
            },
            "owner": "agozsonmez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~agozsonmez/5/",
            "world_readable": true,
            "date_modified": "2024-04-05T13:16:10.332Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~agozsonmez/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "name": "ambient inside ICU",
                        "type": "scatter",
                        "xsrc": "agozsonmez:4:f4e0fb",
                        "ysrc": "agozsonmez:4:694dcf",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "chassis",
                        "type": "scatter",
                        "xsrc": "agozsonmez:4:f4e0fb",
                        "ysrc": "agozsonmez:4:26f82a",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "contactor1",
                        "type": "scatter",
                        "xsrc": "agozsonmez:4:f4e0fb",
                        "ysrc": "agozsonmez:4:6b73c0",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "markers",
                        "name": "contactor2",
                        "type": "scatter",
                        "xsrc": "agozsonmez:4:f4e0fb",
                        "ysrc": "agozsonmez:4:8b9251",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "ambient",
                        "type": "scatter",
                        "xsrc": "agozsonmez:4:f4e0fb",
                        "ysrc": "agozsonmez:4:b399d8",
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -13.427249166975194,
                            244.4272491669752
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            20.85510233929518,
                            25.012120660704824
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 1.0259076262083782,
                        "y": 1
                    },
                    "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/~agozsonmez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/80.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-02-18 10:21:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "agozsonmez",
                "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-05T13:00:57.661526Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~ahmetkudu314/1.embed",
            "fid": "ahmetkudu314:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/ahmetkudu314/1/9_0QMBMPS2T8RXKEI1O92MF792EG6TGD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/ahmetkudu314/1/2_KDC4I0AMPGYHRI7VERA8DEJVAT8GK2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/ahmetkudu314/1/8_5K5ECZ7WY6S8PWLZ82Q1I4TO2NHVAW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/ahmetkudu314/1/9_0QMBMPS2T8RXKEI1O92MF792EG6TGD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/ahmetkudu314:1",
                "plots": "https://api.plotly.com/v2/plots/ahmetkudu314:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=ahmetkudu314"
            },
            "owner": "ahmetkudu314",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~ahmetkudu314/1/",
            "world_readable": true,
            "date_modified": "2024-04-05T13:00:57.672Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~ahmetkudu314/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "caabe3",
                        "fill": "none",
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "markers",
                        "name": "JohnsonJohnson",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "ahmetkudu314:0:b102c0",
                        "ysrc": "ahmetkudu314:0:61ce5b",
                        "index": 0,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "#444",
                                "width": 0
                            },
                            "size": 6,
                            "color": "#1f77b4",
                            "symbol": "circle",
                            "opacity": 1,
                            "maxdisplayed": 0
                        },
                        "error_x": {
                            "visible": false
                        },
                        "error_y": {
                            "visible": false
                        },
                        "hoveron": "points",
                        "opacity": 1,
                        "visible": true,
                        "hoverinfo": "x+y+z+text",
                        "showlegend": true,
                        "legendgroup": "",
                        "selectedpoints": [
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "#444",
                        "family": "\"Open Sans\", verdana, arial, sans-serif"
                    },
                    "smith": false,
                    "title": {
                        "font": {
                            "size": 17,
                            "color": "#444",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "text": "Quarterly Earnings per Johnson & Johnson Share"
                    },
                    "width": 853,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "color": "#444",
                        "range": [
                            1958.7069133398247,
                            1982.0430866601753
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#444",
                                "family": "\"Open Sans\", verdana, arial, sans-serif"
                            },
                            "text": "Time"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 12,
                            "color": "#444",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(238, 238, 238)",
                        "gridwidth": 1,
                        "rangemode": "normal",
                        "tickangle": "auto",
                        "fixedrange": false,
                        "tickformat": "",
                        "tickprefix": "",
                        "ticksuffix": "",
                        "hoverformat": "",
                        "showexponent": "all",
                        "zerolinecolor": "#444",
                        "zerolinewidth": 1,
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "color": "#444",
                        "range": [
                            -0.6865749235474006,
                            17.3265749235474
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#444",
                                "family": "\"Open Sans\", verdana, arial, sans-serif"
                            },
                            "text": "Johnson & Johnson"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 12,
                            "color": "#444",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "tickmode": "auto",
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(238, 238, 238)",
                        "gridwidth": 1,
                        "rangemode": "normal",
                        "tickangle": "auto",
                        "fixedrange": false,
                        "tickformat": "",
                        "tickprefix": "",
                        "ticksuffix": "",
                        "hoverformat": "",
                        "showexponent": "all",
                        "zerolinecolor": "#444",
                        "zerolinewidth": 1,
                        "exponentformat": "B",
                        "showticklabels": true
                    },
                    "height": 478.938,
                    "margin": {
                        "b": 80,
                        "l": 80,
                        "r": 80,
                        "t": 100,
                        "pad": 0,
                        "autoexpand": true
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "turntable",
                    "clickmode": "none",
                    "hovermode": "closest",
                    "separators": ".,",
                    "showlegend": false,
                    "annotations": [],
                    "hidesources": false,
                    "plot_bgcolor": "#fff",
                    "paper_bgcolor": "#fff"
                }
            },
            "height": 478,
            "width": 853,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~ahmetkudu314",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/94.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-05 13:00:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "ahmetkudu314",
                "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-05T12:52:09.113233Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~NRamo/31.embed",
            "fid": "NRamo:31",
            "filename": "xoh =5 Turbulence profile attempt",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/NRamo/31/9_WCKVTB3KNC7BGJFY9JC08XGSSOSWWK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/NRamo/31/2_1JRIZ4TYT3MZ5LDNY5WY6EYS577J5G.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/NRamo/31/8_OGUOGRGG2AQFVK9XXNMZCA12CSY7N8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/NRamo/31/9_WCKVTB3KNC7BGJFY9JC08XGSSOSWWK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/NRamo:31",
                "plots": "https://api.plotly.com/v2/plots/NRamo:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=NRamo"
            },
            "owner": "NRamo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~NRamo/31/",
            "world_readable": true,
            "date_modified": "2024-04-09T17:56:35.396Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~NRamo/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "NRamo:30:02856e",
                        "ysrc": "NRamo:30:476e8f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "NRamo:29:c632b0",
                        "ysrc": "NRamo:29:899d88",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "0.3% inlet",
                        "type": "scatter",
                        "xsrc": "NRamo:41:9e4ad8",
                        "ysrc": "NRamo:41:438db8",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.024154584256845718,
                            0.17407407407407427
                        ],
                        "domain": [
                            0,
                            0.25
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1.1206501831501832,
                            1.1206501831501832
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "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/~NRamo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/29.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-05 15:51:13",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "NRamo",
                "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-05T12:49:30.477387Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~rcoursin/25.embed",
            "fid": "rcoursin:25",
            "filename": "Plot 25",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/rcoursin:25/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/rcoursin/25/2_R5LCV8GWGRH3LZ6YLCCJNCGGQH5G3T.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/rcoursin/25/8_ZD6E2PF31IRE7V833YZ98D8Q8L199E.png",
                "list-thumb": "https://api.plotly.com/v2/files/rcoursin:25/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/rcoursin:25",
                "plots": "https://api.plotly.com/v2/plots/rcoursin:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=rcoursin"
            },
            "owner": "rcoursin",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 129,
            "web_url": "https://chart-studio.plotly.com/~rcoursin/25/",
            "world_readable": true,
            "date_modified": "2024-10-29T15:35:28.861Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~rcoursin/25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.14.x",
                                "y": "data.14.y"
                            }
                        },
                        "name": "Justin Trudeau",
                        "text": "Justin Trudeau",
                        "type": "bar",
                        "xsrc": "rcoursin:24:64e654",
                        "ysrc": "rcoursin:24:ec6685",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.12.x",
                                "y": "data.12.y"
                            }
                        },
                        "name": "Stephen Harper",
                        "text": "Stephen Harper",
                        "type": "bar",
                        "xsrc": "rcoursin:24:d2cb10",
                        "ysrc": "rcoursin:24:eeacaf",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.4.x",
                                "y": "data.4.y"
                            }
                        },
                        "name": "Joe Biden",
                        "text": "Joe Biden",
                        "type": "bar",
                        "xsrc": "rcoursin:24:184c3b",
                        "ysrc": "rcoursin:24:474b62",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.1.x",
                                "y": "data.1.y"
                            }
                        },
                        "name": "Mme Dupré",
                        "text": "Mme Dupré",
                        "type": "bar",
                        "xsrc": "rcoursin:24:259eb8",
                        "ysrc": "rcoursin:24:f00f39",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.3.x",
                                "y": "data.3.y"
                            }
                        },
                        "name": "Dupré Latour",
                        "text": "Dupré Latour",
                        "type": "bar",
                        "xsrc": "rcoursin:24:eb0d7e",
                        "ysrc": "rcoursin:24:61e786",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.7.x",
                                "y": "data.7.y"
                            }
                        },
                        "name": "Mme Houzeau",
                        "text": "Mme Houzeau",
                        "type": "bar",
                        "xsrc": "rcoursin:24:3cc761",
                        "ysrc": "rcoursin:24:7d2d0a",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.8.x",
                                "y": "data.8.y"
                            }
                        },
                        "name": "Annie Pullen Sansfaçon",
                        "text": "Annie Pullen Sansfaçon",
                        "type": "bar",
                        "xsrc": "rcoursin:24:b72814",
                        "ysrc": "rcoursin:24:0c2f2d",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.9.x",
                                "y": "data.9.y"
                            }
                        },
                        "name": "Sam Lajeunesse",
                        "text": "Sam Lajeunesse",
                        "type": "bar",
                        "xsrc": "rcoursin:24:ce4d58",
                        "ysrc": "rcoursin:24:9cbef7",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.13.x",
                                "y": "data.13.y"
                            }
                        },
                        "name": "Arif Virani",
                        "text": "Arif Virani",
                        "type": "bar",
                        "xsrc": "rcoursin:24:9a6347",
                        "ysrc": "rcoursin:24:268e2c",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.6.x",
                                "y": "data.6.y"
                            }
                        },
                        "name": "Ben Sulayem",
                        "text": "Ben Sulayem",
                        "type": "bar",
                        "xsrc": "rcoursin:24:f85855",
                        "ysrc": "rcoursin:24:58f7b3",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.15.x",
                                "y": "data.15.y"
                            }
                        },
                        "name": "Pierre Poilievre",
                        "text": "Pierre Poilievre",
                        "type": "bar",
                        "xsrc": "rcoursin:24:c0d4f2",
                        "ysrc": "rcoursin:24:fde9af",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.11.x",
                                "y": "data.11.y"
                            }
                        },
                        "name": "Donald Trump",
                        "text": "Donald Trump",
                        "type": "bar",
                        "xsrc": "rcoursin:24:382cbe",
                        "ysrc": "rcoursin:24:27056d",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.0.x",
                                "y": "data.0.y"
                            }
                        },
                        "name": "Catherine Piché",
                        "text": "Catherine Piché",
                        "type": "bar",
                        "xsrc": "rcoursin:24:07c753",
                        "ysrc": "rcoursin:24:42a239",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.2.x",
                                "y": "data.2.y"
                            }
                        },
                        "name": "Fernando Alonso",
                        "text": "Fernando Alonso",
                        "type": "bar",
                        "xsrc": "rcoursin:24:62de47",
                        "ysrc": "rcoursin:24:5261ac",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.5.x",
                                "y": "data.5.y"
                            }
                        },
                        "name": "Mohammed Ben Sulayem",
                        "text": "Mohammed Ben Sulayem",
                        "type": "bar",
                        "xsrc": "rcoursin:24:0f1480",
                        "ysrc": "rcoursin:24:d69d0d",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.10.x",
                                "y": "data.10.y"
                            }
                        },
                        "name": "Christian Lépine",
                        "text": "Christian Lépine",
                        "type": "bar",
                        "xsrc": "rcoursin:24:4f1322",
                        "ysrc": "rcoursin:24:0106bc",
                        "textfont": {
                            "size": 12,
                            "family": "sans serif"
                        },
                        "hoverinfo": "text+y",
                        "showlegend": false,
                        "textposition": "auto"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 16,
                            "color": "#7f7f7f",
                            "family": "Arial"
                        },
                        "text": "Individus les plus souvent mentionnés<br>dans les médias du Québec"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            0.5
                        ],
                        "title": {
                            "font": {
                                "size": 12,
                                "color": "#7f7f7f",
                                "family": "Arial"
                            },
                            "text": "Période"
                        },
                        "tickfont": {
                            "size": 16
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            60
                        ],
                        "title": {
                            "font": {
                                "size": 12,
                                "color": "#7f7f7f",
                                "family": "Arial"
                            },
                            "text": "Nombre de mentions"
                        },
                        "tickfont": {
                            "size": 16
                        },
                        "autorange": true
                    },
                    "margin": {
                        "b": 60,
                        "l": 60,
                        "r": 60,
                        "t": 80,
                        "pad": 0
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~rcoursin",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/13.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-02-05 16:11:45",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "rcoursin",
                "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-05T12:47:14.533477Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~marvell/3.embed",
            "fid": "marvell:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/marvell/3/9_9TGFEQKI3NHX5VP7B9UG9JIQKWTRIR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/marvell/3/2_HCG73BTLS2J4L2DR4WUM6ZHT2P4YJ1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marvell/3/8_WDFGYNCAKB8NUB8K81BPJER0UOJU9K.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/marvell/3/9_9TGFEQKI3NHX5VP7B9UG9JIQKWTRIR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/marvell:3",
                "plots": "https://api.plotly.com/v2/plots/marvell:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=marvell"
            },
            "owner": "marvell",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~marvell/3/",
            "world_readable": true,
            "date_modified": "2024-04-05T12:47:14.544Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~marvell/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "A"
                            }
                        },
                        "type": "bar",
                        "xsrc": "marvell:1:a1791c",
                        "ysrc": "marvell:1:a1791c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Least Used Features"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            26.315789473684212
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            13.5,
                            25.5
                        ],
                        "autorange": 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/~marvell",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-05 11:53:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "marvell",
                "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-05T12:29:21.760086Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mregelsberger/2.embed",
            "fid": "mregelsberger:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/mregelsberger/2/9_9CNP5ZTX91WBSP7YH5EA4S7SAS41MT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mregelsberger/2/2_BJ49LSMT66PVXU96NWO201H3H77LAF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mregelsberger/2/8_763Z4PB8CH3JU40KHKZF1N9EN8DC68.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mregelsberger/2/9_9CNP5ZTX91WBSP7YH5EA4S7SAS41MT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mregelsberger:2",
                "plots": "https://api.plotly.com/v2/plots/mregelsberger:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=mregelsberger"
            },
            "owner": "mregelsberger",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~mregelsberger/2/",
            "world_readable": true,
            "date_modified": "2024-04-05T12:29:21.771Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mregelsberger/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C-Meter (Carrier)",
                                "y": "ave_Q/m",
                                "z": "run MICR_ave"
                            }
                        },
                        "mode": "markers",
                        "type": "mesh3d",
                        "xsrc": "mregelsberger:1:53b058",
                        "ysrc": "mregelsberger:1:b10eae",
                        "zsrc": "mregelsberger:1:f69131",
                        "opacity": 0.76,
                        "showscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "ticks": "",
                            "mirror": false,
                            "showline": true
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.6065127634552794,
                                "y": 1.8332073473780972,
                                "z": 0.2454728190662384
                            },
                            "center": {
                                "x": 0.5647124378388706,
                                "y": 0.9618536826339954,
                                "z": -0.05687279363438458
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "pan",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "x": 0.42,
                        "text": "ave MICR-Signal"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "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"
                    },
                    "uniformtext": {
                        "mode": "show"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mregelsberger",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-04 19:47:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mregelsberger",
                "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-05T12:20:04.585170Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lviktor/82.embed",
            "fid": "lviktor:82",
            "filename": "Imports   4407 .html",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lviktor/82/9_C092MK0T3FBBGVP4JCWP27TA2JJTRL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lviktor/82/2_3D24PBOV6LXOYNVN8L2ETBS6SFCSD2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lviktor/82/8_RH09SKCSFH1ZLCJ1HRD6HG1HJWZ22R.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lviktor/82/9_C092MK0T3FBBGVP4JCWP27TA2JJTRL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lviktor:82",
                "plots": "https://api.plotly.com/v2/plots/lviktor:82",
                "parent": "https://api.plotly.com/v2/folders/home?user=lviktor"
            },
            "owner": "lviktor",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~lviktor/82/",
            "world_readable": true,
            "date_modified": "2024-04-08T07:44:56.061Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lviktor/82/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "choropleth",
                        "zsrc": "lviktor:110:2e7d59",
                        "geojson": "https://raw.githubusercontent.com/python-visualization/folium/master/examples/data/world-countries.json",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgba(228, 26, 28, 0.5)"
                            ],
                            [
                                0.022727272727272728,
                                "rgba(55, 126, 184, 0.5)"
                            ],
                            [
                                0.045454545454545456,
                                "rgba(77, 175, 74, 0.5)"
                            ],
                            [
                                0.06818181818181818,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.09090909090909091,
                                "rgba(152, 78, 163, 0.5)"
                            ],
                            [
                                0.11363636363636363,
                                "rgba(255, 255, 51, 0.5)"
                            ],
                            [
                                0.13636363636363635,
                                "rgba(166, 86, 40, 0.5)"
                            ],
                            [
                                0.1590909090909091,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.18181818181818182,
                                "rgba(153, 153, 153, 0.5)"
                            ],
                            [
                                0.20454545454545456,
                                "rgba(102, 194, 165, 0.5)"
                            ],
                            [
                                0.22727272727272727,
                                "rgba(140, 86, 75, 0.5)"
                            ],
                            [
                                0.25,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.2727272727272727,
                                "rgba(251, 154, 153, 0.5)"
                            ],
                            [
                                0.29545454545454547,
                                "rgba(227, 26, 28, 0.5)"
                            ],
                            [
                                0.3181818181818182,
                                "rgba(253, 191, 111, 0.5)"
                            ],
                            [
                                0.3409090909090909,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.36363636363636365,
                                "rgba(202, 178, 214, 0.5)"
                            ],
                            [
                                0.38636363636363635,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                0.4090909090909091,
                                "rgba(255, 255, 153, 0.5)"
                            ],
                            [
                                0.4318181818181818,
                                "rgba(177, 89, 40, 0.5)"
                            ],
                            [
                                0.45454545454545453,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.4772727272727273,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.5,
                                "rgba(166, 206, 227, 0.5)"
                            ],
                            [
                                0.5227272727272727,
                                "rgba(31, 120, 180, 0.5)"
                            ],
                            [
                                0.5454545454545454,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.5681818181818182,
                                "rgba(51, 160, 44, 0.5)"
                            ],
                            [
                                0.5909090909090909,
                                "rgba(251, 154, 153, 0.5)"
                            ],
                            [
                                0.6136363636363636,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.6363636363636364,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                0.6590909090909091,
                                "rgba(128, 26, 28, 0.5)"
                            ],
                            [
                                0.6818181818181818,
                                "rgba(55, 126, 184, 0.5)"
                            ],
                            [
                                0.7045454545454546,
                                "rgba(152, 78, 163, 0.5)"
                            ],
                            [
                                0.7272727272727273,
                                "rgba(247, 129, 191, 0.5)"
                            ],
                            [
                                0.75,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.7727272727272727,
                                "rgba(255, 255, 255, 0.5)"
                            ],
                            [
                                0.7954545454545454,
                                "rgba(253, 191, 111, 0.5)"
                            ],
                            [
                                0.8181818181818182,
                                "rgba(178, 223, 138, 0.5)"
                            ],
                            [
                                0.8409090909090909,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.8636363636363636,
                                "rgba(202, 178, 214, 0.5)"
                            ],
                            [
                                0.8863636363636364,
                                "rgba(102, 194, 165, 0.5)"
                            ],
                            [
                                0.9090909090909091,
                                "rgba(255, 127, 0, 0.5)"
                            ],
                            [
                                0.9318181818181818,
                                "rgba(140, 86, 75, 0.5)"
                            ],
                            [
                                0.9545454545454546,
                                "rgba(177, 89, 40, 0.5)"
                            ],
                            [
                                0.9772727272727273,
                                "rgba(106, 61, 154, 0.5)"
                            ],
                            [
                                1.0,
                                "rgba(255, 255, 153, 0.5)"
                            ]
                        ],
                        "locationssrc": "lviktor:110:84ea0c"
                    },
                    {
                        "mode": "markers",
                        "name": "DNK Tot.: 634909 Tons",
                        "text": "DNK Tot.: 634909 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:3fe125",
                        "lonsrc": "lviktor:110:761f46",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6.34909,
                            "color": "rgb(140, 86, 75)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SRB Tot.: 206472 Tons",
                        "text": "SRB Tot.: 206472 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:0d6f82",
                        "lonsrc": "lviktor:110:be29d1",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.0647200000000003,
                            "color": "rgb(178, 223, 138)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "EST Tot.: 704732 Tons",
                        "text": "EST Tot.: 704732 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:097ad5",
                        "lonsrc": "lviktor:110:da1a47",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 7.047320000000001,
                            "color": "rgb(178, 223, 138)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "NOR Tot.: 449410 Tons",
                        "text": "NOR Tot.: 449410 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:b9fa8b",
                        "lonsrc": "lviktor:110:9a01a3",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 4.4941,
                            "color": "rgb(55, 126, 184)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SWE Tot.: 314390 Tons",
                        "text": "SWE Tot.: 314390 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:29abb8",
                        "lonsrc": "lviktor:110:602cdd",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3.1439000000000004,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "PRT Tot.: 125760 Tons",
                        "text": "PRT Tot.: 125760 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:b76be4",
                        "lonsrc": "lviktor:110:abb2c7",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.2576,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "GBR Tot.: 3379192 Tons",
                        "text": "GBR Tot.: 3379192 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:771c04",
                        "lonsrc": "lviktor:110:aee919",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 33.791920000000005,
                            "color": "rgb(106, 61, 154)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "POL Tot.: 843225 Tons",
                        "text": "POL Tot.: 843225 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:76186d",
                        "lonsrc": "lviktor:110:7696eb",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 8.432250000000002,
                            "color": "rgb(152, 78, 163)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "AUT Tot.: 1113716 Tons",
                        "text": "AUT Tot.: 1113716 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:64b9be",
                        "lonsrc": "lviktor:110:2f6027",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 11.137160000000002,
                            "color": "rgb(77, 175, 74)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "HUN Tot.: 143970 Tons",
                        "text": "HUN Tot.: 143970 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:390d23",
                        "lonsrc": "lviktor:110:62b9aa",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.4397000000000002,
                            "color": "rgb(202, 178, 214)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "GRC Tot.: 170558 Tons",
                        "text": "GRC Tot.: 170558 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:7a91f6",
                        "lonsrc": "lviktor:110:138576",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.70558,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LUX Tot.: 76662 Tons",
                        "text": "LUX Tot.: 76662 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:86843e",
                        "lonsrc": "lviktor:110:3fb8f8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.7666200000000001,
                            "color": "rgb(31, 120, 180)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "FRA Tot.: 1494248 Tons",
                        "text": "FRA Tot.: 1494248 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:f5acb7",
                        "lonsrc": "lviktor:110:38425c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 14.942480000000002,
                            "color": "rgb(227, 26, 28)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "IRL Tot.: 20897 Tons",
                        "text": "IRL Tot.: 20897 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:ceed32",
                        "lonsrc": "lviktor:110:5db64c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 0.20897000000000002,
                            "color": "rgb(255, 255, 153)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "BEL Tot.: 1671958 Tons",
                        "text": "BEL Tot.: 1671958 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:a8db56",
                        "lonsrc": "lviktor:110:f9a490",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 16.71958,
                            "color": "rgb(152, 78, 163)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "CZE Tot.: 345102 Tons",
                        "text": "CZE Tot.: 345102 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:173be7",
                        "lonsrc": "lviktor:110:1f208f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3.45102,
                            "color": "rgb(102, 194, 165)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ESP Tot.: 628801 Tons",
                        "text": "ESP Tot.: 628801 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:516562",
                        "lonsrc": "lviktor:110:0d327d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6.288010000000001,
                            "color": "rgb(102, 194, 165)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "BIH Tot.: 101528 Tons",
                        "text": "BIH Tot.: 101528 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:325bf8",
                        "lonsrc": "lviktor:110:04ce62",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.0152800000000002,
                            "color": "rgb(255, 255, 51)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ROU Tot.: 212461 Tons",
                        "text": "ROU Tot.: 212461 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:9fbd88",
                        "lonsrc": "lviktor:110:1742ae",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.12461,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "HRV Tot.: 247662 Tons",
                        "text": "HRV Tot.: 247662 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:8c37fe",
                        "lonsrc": "lviktor:110:973a94",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.47662,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "NLD Tot.: 1864184 Tons",
                        "text": "NLD Tot.: 1864184 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:bf8ab4",
                        "lonsrc": "lviktor:110:604b52",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 18.641840000000002,
                            "color": "rgb(128, 26, 28)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SVK Tot.: 214662 Tons",
                        "text": "SVK Tot.: 214662 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:2f7102",
                        "lonsrc": "lviktor:110:e84593",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 2.14662,
                            "color": "rgb(255, 127, 0)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "ITA Tot.: 3219120 Tons",
                        "text": "ITA Tot.: 3219120 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:48d8d7",
                        "lonsrc": "lviktor:110:5c8e62",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 32.1912,
                            "color": "rgb(177, 89, 40)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LVA Tot.: 528315 Tons",
                        "text": "LVA Tot.: 528315 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:e5f8d2",
                        "lonsrc": "lviktor:110:c07649",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5.28315,
                            "color": "rgb(247, 129, 191)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "SVN Tot.: 359544 Tons",
                        "text": "SVN Tot.: 359544 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:02023b",
                        "lonsrc": "lviktor:110:b1e370",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 3.5954400000000004,
                            "color": "rgb(202, 178, 214)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "LTU Tot.: 612042 Tons",
                        "text": "LTU Tot.: 612042 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:00b989",
                        "lonsrc": "lviktor:110:308582",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6.12042,
                            "color": "rgb(166, 206, 227)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "DEU Tot.: 2357920 Tons",
                        "text": "DEU Tot.: 2357920 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:8dffd3",
                        "lonsrc": "lviktor:110:498e00",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 23.5792,
                            "color": "rgb(253, 191, 111)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "FIN Tot.: 181929 Tons",
                        "text": "FIN Tot.: 181929 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:f9ff3d",
                        "lonsrc": "lviktor:110:51ca04",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.81929,
                            "color": "rgb(251, 154, 153)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "mode": "markers",
                        "name": "CHE Tot.: 186959 Tons",
                        "text": "CHE Tot.: 186959 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:0b9825",
                        "lonsrc": "lviktor:110:426c4e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 1.86959,
                            "color": "rgb(140, 86, 75)",
                            "opacity": 1
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 3.44341
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Sweden: 344341 Tons",
                        "text": "DNK to Sweden: 344341 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:c1061f",
                        "lonsrc": "lviktor:110:c62e8f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 21.10539668854898,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:d699b1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.6435200000000001
                        },
                        "mode": "lines+markers",
                        "name": "DNK to Finland: 64352 Tons",
                        "text": "DNK to Finland: 64352 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:df29b6",
                        "lonsrc": "lviktor:110:9dc0af",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 38.254065460816435,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:61390c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 1.4781900000000001
                        },
                        "mode": "lines+markers",
                        "name": "SRB to Bosnia and Herzegovina: 147819 Tons",
                        "text": "SRB to Bosnia and Herzegovina: 147819 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:113155",
                        "lonsrc": "lviktor:110:d607e9",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -90.86154719745008,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:602ace"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 2.18831
                        },
                        "mode": "lines+markers",
                        "name": "EST to Finland: 218831 Tons",
                        "text": "EST to Finland: 218831 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:65ab9c",
                        "lonsrc": "lviktor:110:dc651a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 4.578125097358651,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:69bca5"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 0.97477
                        },
                        "mode": "lines+markers",
                        "name": "EST to Latvia: 97477 Tons",
                        "text": "EST to Latvia: 97477 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:79dc95",
                        "lonsrc": "lviktor:110:3fe904",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -179.73393905188595,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:82739f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(178, 223, 138)",
                            "width": 0.51692
                        },
                        "mode": "lines+markers",
                        "name": "EST to Sweden: 51692 Tons",
                        "text": "EST to Sweden: 51692 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:18cef7",
                        "lonsrc": "lviktor:110:719f07",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -51.260597076873665,
                            "color": "rgb(178, 223, 138)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:909b96"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(55, 126, 184)",
                            "width": 4.136150000000001
                        },
                        "mode": "lines+markers",
                        "name": "NOR to Sweden: 413615 Tons",
                        "text": "NOR to Sweden: 413615 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:fb8eb9",
                        "lonsrc": "lviktor:110:1b0fed",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 87.79232230767292,
                            "color": "rgb(55, 126, 184)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:f45fd1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 2.43203
                        },
                        "mode": "lines+markers",
                        "name": "SWE to Norway: 243203 Tons",
                        "text": "SWE to Norway: 243203 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:1ece7e",
                        "lonsrc": "lviktor:110:c6e135",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -87.7923223076729,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:4a296c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 11.87448
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Sweden: 1187448 Tons",
                        "text": "GBR to Sweden: 1187448 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:0d86e3",
                        "lonsrc": "lviktor:110:0d4eef",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 41.38578760290835,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:6d0993"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 7.298430000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Latvia: 729843 Tons",
                        "text": "GBR to Latvia: 729843 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:aecf3c",
                        "lonsrc": "lviktor:110:3e61f5",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 67.9082267633226,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:b916e0"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 3.6234
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Finland: 362340 Tons",
                        "text": "GBR to Finland: 362340 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:b16e7a",
                        "lonsrc": "lviktor:110:b40b21",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 43.726528351384985,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:a11ff9"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 2.5227600000000003
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Ireland: 252276 Tons",
                        "text": "GBR to Ireland: 252276 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:eb7c6b",
                        "lonsrc": "lviktor:110:63594b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -100.27927028869813,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:0e86cd"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 2.63906
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Germany: 263906 Tons",
                        "text": "GBR to Germany: 263906 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:90a948",
                        "lonsrc": "lviktor:110:71c60e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 105.50772521887268,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:5fa0e1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 0.67037
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Estonia: 67037 Tons",
                        "text": "GBR to Estonia: 67037 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:20a47b",
                        "lonsrc": "lviktor:110:f40e40",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 61.94952174192892,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:a7f228"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 0.5335300000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to Norway: 53353 Tons",
                        "text": "GBR to Norway: 53353 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:6a0909",
                        "lonsrc": "lviktor:110:8482f0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 33.499584594974095,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:2d8cb2"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(106, 61, 154)",
                            "width": 0.6242300000000001
                        },
                        "mode": "lines+markers",
                        "name": "GBR to France: 62423 Tons",
                        "text": "GBR to France: 62423 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:99a00e",
                        "lonsrc": "lviktor:110:5bebc4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 160.62647944713524,
                            "color": "rgb(106, 61, 154)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:480b59"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.8141300000000002
                        },
                        "mode": "lines+markers",
                        "name": "POL to Germany: 181413 Tons",
                        "text": "POL to Germany: 181413 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:a9c927",
                        "lonsrc": "lviktor:110:283fa6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -94.24163714076593,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:61ea6d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.6626800000000002
                        },
                        "mode": "lines+markers",
                        "name": "POL to Sweden: 166268 Tons",
                        "text": "POL to Sweden: 166268 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:06a427",
                        "lonsrc": "lviktor:110:f25d0c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -13.155982970555158,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:ab2b90"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.2651700000000001
                        },
                        "mode": "lines+markers",
                        "name": "POL to Ukraine: 126517 Tons",
                        "text": "POL to Ukraine: 126517 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:e454d2",
                        "lonsrc": "lviktor:110:713dc2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 106.74469357464972,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:e6c823"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.8648500000000001
                        },
                        "mode": "lines+markers",
                        "name": "POL to Belarus: 86485 Tons",
                        "text": "POL to Belarus: 86485 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:36b782",
                        "lonsrc": "lviktor:110:7b59dd",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 69.71666108654608,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:ff0ab6"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.52442
                        },
                        "mode": "lines+markers",
                        "name": "POL to Finland: 52442 Tons",
                        "text": "POL to Finland: 52442 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:cf419b",
                        "lonsrc": "lviktor:110:f95f95",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 12.320223639785382,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:38c817"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 4.94252
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Germany: 494252 Tons",
                        "text": "AUT to Germany: 494252 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:92b81e",
                        "lonsrc": "lviktor:110:e83ec6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -32.838568384491424,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:a77c67"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 2.16468
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Czech Republic: 216468 Tons",
                        "text": "AUT to Czech Republic: 216468 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:ec38ba",
                        "lonsrc": "lviktor:110:43d407",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 20.231308838025228,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:05dc24"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(77, 175, 74)",
                            "width": 0.79776
                        },
                        "mode": "lines+markers",
                        "name": "AUT to Finland: 79776 Tons",
                        "text": "AUT to Finland: 79776 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:dfa4be",
                        "lonsrc": "lviktor:110:97d736",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 17.216915172171213,
                            "color": "rgb(77, 175, 74)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:c0d805"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 1.30265
                        },
                        "mode": "lines+markers",
                        "name": "HUN to Ukraine: 130265 Tons",
                        "text": "HUN to Ukraine: 130265 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:0f7541",
                        "lonsrc": "lviktor:110:5f55d2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 72.9775625675577,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:12bd56"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 3.8207700000000004
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Germany: 382077 Tons",
                        "text": "FRA to Germany: 382077 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:798c62",
                        "lonsrc": "lviktor:110:753ddf",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 44.150895851293,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:911721"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 2.2650200000000003
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Finland: 226502 Tons",
                        "text": "FRA to Finland: 226502 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:7301fa",
                        "lonsrc": "lviktor:110:8ec60b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 27.93337048742663,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:ffb85f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 1.5758100000000002
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Sweden: 157581 Tons",
                        "text": "FRA to Sweden: 157581 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:2fdd01",
                        "lonsrc": "lviktor:110:c18d98",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 20.378851440050994,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:97653d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 1.7578300000000002
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Belgium: 175783 Tons",
                        "text": "FRA to Belgium: 175783 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:55fb40",
                        "lonsrc": "lviktor:110:bca7f0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 19.92606228040455,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:7a011d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(227, 26, 28)",
                            "width": 0.6033000000000001
                        },
                        "mode": "lines+markers",
                        "name": "FRA to Latvia: 60330 Tons",
                        "text": "FRA to Latvia: 60330 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:3e5bfd",
                        "lonsrc": "lviktor:110:04a4ce",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 43.79482629696338,
                            "color": "rgb(227, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:ecfa7c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 4.08973
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Germany: 408973 Tons",
                        "text": "BEL to Germany: 408973 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:011b4d",
                        "lonsrc": "lviktor:110:f3d5ab",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 79.5659832094671,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:7fb045"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 2.34341
                        },
                        "mode": "lines+markers",
                        "name": "BEL to France: 234341 Tons",
                        "text": "BEL to France: 234341 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:601b95",
                        "lonsrc": "lviktor:110:0931f0",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -158.0804610558197,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:d55a05"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 2.2992500000000002
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Netherlands: 229925 Tons",
                        "text": "BEL to Netherlands: 229925 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:a70967",
                        "lonsrc": "lviktor:110:9d78d4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 19.480508609393922,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:86b69b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 1.23387
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Sweden: 123387 Tons",
                        "text": "BEL to Sweden: 123387 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:eb3dcb",
                        "lonsrc": "lviktor:110:9902b4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 22.54474757872046,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:27d5f4"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.5802400000000001
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Finland: 58024 Tons",
                        "text": "BEL to Finland: 58024 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:9e0018",
                        "lonsrc": "lviktor:110:9ed8f4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 32.09381879461242,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:86fda0"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(152, 78, 163)",
                            "width": 0.89897
                        },
                        "mode": "lines+markers",
                        "name": "BEL to Latvia: 89897 Tons",
                        "text": "BEL to Latvia: 89897 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:dc7e42",
                        "lonsrc": "lviktor:110:2e2e0d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 54.09705263004702,
                            "color": "rgb(152, 78, 163)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:b916d1"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.8723700000000001
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Germany: 87237 Tons",
                        "text": "CZE to Germany: 87237 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:f0b6dd",
                        "lonsrc": "lviktor:110:9cae27",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -65.19513481819659,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:fcf633"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.5955900000000001
                        },
                        "mode": "lines+markers",
                        "name": "CZE to Austria: 59559 Tons",
                        "text": "CZE to Austria: 59559 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:746e31",
                        "lonsrc": "lviktor:110:faf933",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -158.80805127609625,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:4fd9d7"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.82162
                        },
                        "mode": "lines+markers",
                        "name": "ESP to Portugal: 82162 Tons",
                        "text": "ESP to Portugal: 82162 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:63fb02",
                        "lonsrc": "lviktor:110:1ba57a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -97.95156255711332,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:cc1fbe"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 1.34945
                        },
                        "mode": "lines+markers",
                        "name": "ESP to France: 134945 Tons",
                        "text": "ESP to France: 134945 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:a3593c",
                        "lonsrc": "lviktor:110:4ce347",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 34.16765535979212,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:ae9faa"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.7742100000000001
                        },
                        "mode": "lines+markers",
                        "name": "ESP to Germany: 77421 Tons",
                        "text": "ESP to Germany: 77421 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:2264a0",
                        "lonsrc": "lviktor:110:520534",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 37.169220466968454,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:e4b73d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(102, 194, 165)",
                            "width": 0.61682
                        },
                        "mode": "lines+markers",
                        "name": "ESP to Sweden: 61682 Tons",
                        "text": "ESP to Sweden: 61682 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:cb75bc",
                        "lonsrc": "lviktor:110:722344",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 21.348562217205455,
                            "color": "rgb(102, 194, 165)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:c8168a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 255, 51)",
                            "width": 0.6799200000000001
                        },
                        "mode": "lines+markers",
                        "name": "BIH to Croatia: 67992 Tons",
                        "text": "BIH to Croatia: 67992 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:a16958",
                        "lonsrc": "lviktor:110:fcb4c2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -55.32343069077541,
                            "color": "rgb(255, 255, 51)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:158c7d"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(255, 127, 0)",
                            "width": 0.7174100000000001
                        },
                        "mode": "lines+markers",
                        "name": "ROU to Ukraine: 71741 Tons",
                        "text": "ROU to Ukraine: 71741 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:aa661b",
                        "lonsrc": "lviktor:110:20b94e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 55.0627445246073,
                            "color": "rgb(255, 127, 0)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:ddd915"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 0.7844800000000001
                        },
                        "mode": "lines+markers",
                        "name": "HRV to Austria: 78448 Tons",
                        "text": "HRV to Austria: 78448 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:531a42",
                        "lonsrc": "lviktor:110:ff3d49",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -15.238206360743504,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:2f615c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 0.7097500000000001
                        },
                        "mode": "lines+markers",
                        "name": "HRV to Bosnia and Herzegovina: 70975 Tons",
                        "text": "HRV to Bosnia and Herzegovina: 70975 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:2fc22a",
                        "lonsrc": "lviktor:110:8bc010",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 122.93846914326014,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:14611b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 4.62861
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Germany: 462861 Tons",
                        "text": "NLD to Germany: 462861 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:98b58e",
                        "lonsrc": "lviktor:110:70f4de",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 112.80601501357557,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:21cb85"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 4.2624
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Belgium: 426240 Tons",
                        "text": "NLD to Belgium: 426240 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:e4e717",
                        "lonsrc": "lviktor:110:ff8fa9",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -159.67074541498147,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:e54daf"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 1.7857900000000002
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Sweden: 178579 Tons",
                        "text": "NLD to Sweden: 178579 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:a62c83",
                        "lonsrc": "lviktor:110:639e78",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 23.950377467684348,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:afae95"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 1.3900100000000002
                        },
                        "mode": "lines+markers",
                        "name": "NLD to Italy: 139001 Tons",
                        "text": "NLD to Italy: 139001 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:031a9f",
                        "lonsrc": "lviktor:110:5cb332",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 151.05020320469805,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:282887"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(128, 26, 28)",
                            "width": 0.8227000000000001
                        },
                        "mode": "lines+markers",
                        "name": "NLD to France: 82270 Tons",
                        "text": "NLD to France: 82270 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:b2b25e",
                        "lonsrc": "lviktor:110:62f356",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -157.92419329179094,
                            "color": "rgb(128, 26, 28)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:8a9935"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 14.763150000000001
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Austria: 1476315 Tons",
                        "text": "ITA to Austria: 1476315 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:e7f3f8",
                        "lonsrc": "lviktor:110:c0a367",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 10.929331045355212,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:6d9899"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 2.9561400000000004
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Germany: 295614 Tons",
                        "text": "ITA to Germany: 295614 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:d00d73",
                        "lonsrc": "lviktor:110:791624",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -10.169144238747293,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:dc5554"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 0.8878800000000001
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Finland: 88788 Tons",
                        "text": "ITA to Finland: 88788 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:654c28",
                        "lonsrc": "lviktor:110:4a9a5b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 15.145270586234716,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:de9fe9"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.36891
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Czech Republic: 136891 Tons",
                        "text": "ITA to Czech Republic: 136891 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:52815d",
                        "lonsrc": "lviktor:110:f240ac",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 13.682551331386946,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:e01580"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 2.53939
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Croatia: 253939 Tons",
                        "text": "ITA to Croatia: 253939 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:d070bb",
                        "lonsrc": "lviktor:110:4f942a",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 36.10870878778337,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:83016c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 0.9271100000000001
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Poland: 92711 Tons",
                        "text": "ITA to Poland: 92711 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:d2b118",
                        "lonsrc": "lviktor:110:bc64ad",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 25.28783494728205,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:9b46e9"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.0022
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Slovakia: 100220 Tons",
                        "text": "ITA to Slovakia: 100220 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:086ae3",
                        "lonsrc": "lviktor:110:7c5265",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 36.965893923888075,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:932717"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.5039300000000002
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Slovenia: 150393 Tons",
                        "text": "ITA to Slovenia: 150393 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:1a115c",
                        "lonsrc": "lviktor:110:308c6c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 24.179992789057252,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:33b580"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 1.0319
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Ukraine: 103190 Tons",
                        "text": "ITA to Ukraine: 103190 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:110e57",
                        "lonsrc": "lviktor:110:0b2fff",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 58.470686454470666,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:07b32f"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 0.5207200000000001
                        },
                        "mode": "lines+markers",
                        "name": "ITA to France: 52072 Tons",
                        "text": "ITA to France: 52072 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:f0da03",
                        "lonsrc": "lviktor:110:252a3d",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -64.00765553444117,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:fcd756"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(177, 89, 40)",
                            "width": 0.68798
                        },
                        "mode": "lines+markers",
                        "name": "ITA to Hungary: 68798 Tons",
                        "text": "ITA to Hungary: 68798 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:627d99",
                        "lonsrc": "lviktor:110:e65e84",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 45.130047217220806,
                            "color": "rgb(177, 89, 40)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:0a57f8"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 1.7089500000000002
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Belarus: 170895 Tons",
                        "text": "LVA to Belarus: 170895 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:532ba4",
                        "lonsrc": "lviktor:110:b0aeac",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 156.78461623907572,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:78b485"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 1.17362
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Estonia: 117362 Tons",
                        "text": "LVA to Estonia: 117362 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:d64c72",
                        "lonsrc": "lviktor:110:b2ca2e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 0.2545519030168464,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:53481b"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(247, 129, 191)",
                            "width": 0.60131
                        },
                        "mode": "lines+markers",
                        "name": "LVA to Finland: 60131 Tons",
                        "text": "LVA to Finland: 60131 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:43c7a9",
                        "lonsrc": "lviktor:110:bb302c",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 3.5905164490253867,
                            "color": "rgb(247, 129, 191)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:4fa037"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 1.5182200000000001
                        },
                        "mode": "lines+markers",
                        "name": "SVN to Austria: 151822 Tons",
                        "text": "SVN to Austria: 151822 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:feb8ec",
                        "lonsrc": "lviktor:110:d8d4da",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -20.599301015334277,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:38894a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(202, 178, 214)",
                            "width": 1.1219400000000002
                        },
                        "mode": "lines+markers",
                        "name": "SVN to Czech Republic: 112194 Tons",
                        "text": "SVN to Czech Republic: 112194 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:f21072",
                        "lonsrc": "lviktor:110:f43799",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 4.805520114201357,
                            "color": "rgb(202, 178, 214)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:e51225"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(166, 206, 227)",
                            "width": 2.16685
                        },
                        "mode": "lines+markers",
                        "name": "LTU to Belarus: 216685 Tons",
                        "text": "LTU to Belarus: 216685 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:152744",
                        "lonsrc": "lviktor:110:9b07ad",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 139.9874634368265,
                            "color": "rgb(166, 206, 227)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:0db205"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(166, 206, 227)",
                            "width": 1.0488300000000002
                        },
                        "mode": "lines+markers",
                        "name": "LTU to Latvia: 104883 Tons",
                        "text": "LTU to Latvia: 104883 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:207787",
                        "lonsrc": "lviktor:110:7f3a23",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 28.479891232062215,
                            "color": "rgb(166, 206, 227)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:27a6f0"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(166, 206, 227)",
                            "width": 0.5375500000000001
                        },
                        "mode": "lines+markers",
                        "name": "LTU to Ukraine: 53755 Tons",
                        "text": "LTU to Ukraine: 53755 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:0d5b53",
                        "lonsrc": "lviktor:110:f8502f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 141.9309434257164,
                            "color": "rgb(166, 206, 227)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:4cb90e"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 4.198840000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Austria: 419884 Tons",
                        "text": "DEU to Austria: 419884 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:e2b7c7",
                        "lonsrc": "lviktor:110:a51f01",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 144.3186194799946,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:889a2a"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 2.68846
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Sweden: 268846 Tons",
                        "text": "DEU to Sweden: 268846 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:dca7e0",
                        "lonsrc": "lviktor:110:aab8aa",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 11.136868815400362,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:c4868c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 2.09538
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Finland: 209538 Tons",
                        "text": "DEU to Finland: 209538 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:d65266",
                        "lonsrc": "lviktor:110:042cb8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 26.602682746952553,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:8c2c0c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 2.1871
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Czech Republic: 218710 Tons",
                        "text": "DEU to Czech Republic: 218710 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:45cc2f",
                        "lonsrc": "lviktor:110:e0807b",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 110.9293488526323,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:7b7b4c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.6265100000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Belgium: 162651 Tons",
                        "text": "DEU to Belgium: 162651 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:3270ff",
                        "lonsrc": "lviktor:110:d1c63e",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": -95.94298850401717,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:0bc432"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.83606
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Ukraine: 83606 Tons",
                        "text": "DEU to Ukraine: 83606 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:ac5207",
                        "lonsrc": "lviktor:110:3303fa",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 90.49244797588256,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:ac7543"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.9547300000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Latvia: 95473 Tons",
                        "text": "DEU to Latvia: 95473 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:c314dc",
                        "lonsrc": "lviktor:110:1d7084",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 49.88820538206545,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:3af66c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 0.8388800000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Poland: 83888 Tons",
                        "text": "DEU to Poland: 83888 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:144632",
                        "lonsrc": "lviktor:110:351a01",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 78.27015656162581,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:03b73c"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.16951
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Lithuania: 116951 Tons",
                        "text": "DEU to Lithuania: 116951 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:b88dcf",
                        "lonsrc": "lviktor:110:7b9277",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 53.65285869615715,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:0a4c00"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(253, 191, 111)",
                            "width": 1.2882200000000001
                        },
                        "mode": "lines+markers",
                        "name": "DEU to Belarus: 128822 Tons",
                        "text": "DEU to Belarus: 128822 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:bf8076",
                        "lonsrc": "lviktor:110:13912f",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 71.11333503340506,
                            "color": "rgb(253, 191, 111)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:9a45e0"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.60141
                        },
                        "mode": "lines+markers",
                        "name": "CHE to Germany: 60141 Tons",
                        "text": "CHE to Germany: 60141 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:93ff5b",
                        "lonsrc": "lviktor:110:54a2c9",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 20.159198444777843,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:eb6ad7"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    },
                    {
                        "line": {
                            "color": "rgb(140, 86, 75)",
                            "width": 0.55847
                        },
                        "mode": "lines+markers",
                        "name": "CHE to Austria: 55847 Tons",
                        "text": "CHE to Austria: 55847 Tons",
                        "type": "scattergeo",
                        "latsrc": "lviktor:110:4104fe",
                        "lonsrc": "lviktor:110:2c26e4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "angle": 79.79323899618566,
                            "color": "rgb(140, 86, 75)",
                            "symbol": "circle",
                            "opacity": 1,
                            "sizesrc": "lviktor:110:024c25"
                        },
                        "hoverinfo": "text",
                        "locationmode": "country names"
                    }
                ],
                "layout": {
                    "geo": {
                        "center": {
                            "lat": 48,
                            "lon": 10
                        },
                        "lataxis": {
                            "range": [
                                35,
                                60
                            ]
                        },
                        "lonaxis": {
                            "range": [
                                -5,
                                25
                            ]
                        },
                        "showland": true,
                        "landcolor": "rgb(243, 243, 243)",
                        "showocean": true,
                        "oceancolor": "rgb(215, 230, 250)",
                        "projection": {
                            "type": "equirectangular"
                        },
                        "countrycolor": "rgb(204, 204, 204)",
                        "showcountries": true
                    },
                    "title": {
                        "text": "Imports Volume of 4407: for European Countries"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lviktor",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-28 14:45:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lviktor",
                "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-05T12:18:05.615411Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~trungg_ibs/1.embed",
            "fid": "trungg_ibs:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/trungg_ibs/1/9_8X17XDAJ6BMZIINC8N2YE9RGK450NE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/trungg_ibs/1/2_PUH6LAEXOTTBEUWHM70GWL08W5KZPI.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/trungg_ibs/1/8_SR9A1JYX0EAWOIY4NT4RN07OWTPQB0.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/trungg_ibs/1/9_8X17XDAJ6BMZIINC8N2YE9RGK450NE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/trungg_ibs:1",
                "plots": "https://api.plotly.com/v2/plots/trungg_ibs:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=trungg_ibs"
            },
            "owner": "trungg_ibs",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~trungg_ibs/1/",
            "world_readable": true,
            "date_modified": "2024-04-05T12:18:05.627Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~trungg_ibs/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "trungg_ibs:0:41aa5b",
                        "ysrc": "trungg_ibs:0:1a268f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "trungg_ibs:0:41aa5b",
                        "ysrc": "trungg_ibs:0:7e802e",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "trungg_ibs:0:41aa5b",
                        "ysrc": "trungg_ibs:0:1a268f",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "cells": {
                                    "values": "E - F - G"
                                },
                                "header": {
                                    "fill": {
                                        "color": ""
                                    },
                                    "values": "D"
                                },
                                "columnorder": "E"
                            }
                        },
                        "mode": "lines",
                        "type": "table",
                        "cells": {
                            "fill": {
                                "color": "#506784"
                            },
                            "font": {
                                "size": 14,
                                "color": "#f2f5fa",
                                "family": "\"Open Sans\", verdana, arial, sans-serif"
                            },
                            "line": {
                                "color": "rgb(17,17,17)",
                                "width": 1
                            },
                            "meta": {
                                "columnNames": {
                                    "values": "E - F - G"
                                }
                            },
                            "align": "center",
                            "format": [],
                            "height": 30,
                            "valuessrc": "trungg_ibs:0:2c1875,0fb403,bfd804*"
                        },
                        "domain": {
                            "x": [
                                0.625,
                                1
                            ],
                            "y": [
                                0.25,
                                1
                            ]
                        },
                        "header": {
                            "fill": {
                                "meta": {
                                    "columnNames": {
                                        "color": "E"
                                    }
                                },
                                "color": "#2a3f5f"
                            },
                            "font": {
                                "size": 12,
                                "color": "#f2f5fa",
                                "family": "\"Open Sans\", verdana, arial, sans-serif"
                            },
                            "line": {
                                "color": "rgb(17,17,17)",
                                "width": 1
                            },
                            "meta": {
                                "columnNames": {
                                    "values": "D"
                                }
                            },
                            "align": "center",
                            "format": [],
                            "height": 35,
                            "valuessrc": "trungg_ibs:0:c54361"
                        },
                        "visible": true,
                        "hoverinfo": "all",
                        "hoverlabel": {
                            "font": {
                                "size": 13,
                                "family": "Arial, sans-serif"
                            },
                            "align": "auto",
                            "namelength": 15
                        },
                        "stackgroup": null,
                        "columnordersrc": "trungg_ibs:0:2c1875"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            1,
                            4
                        ],
                        "title": {
                            "text": "Time [us["
                        },
                        "domain": [
                            0,
                            0.5
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            4.944444444444445,
                            6.055555555555555
                        ],
                        "title": {
                            "text": "Voltage [V]"
                        },
                        "domain": [
                            0.25,
                            1
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "legend": {
                        "bgcolor": "rgb(17,17,17)"
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            5,
                            7
                        ],
                        "title": {
                            "text": "Current [A]"
                        },
                        "domain": [
                            0.25,
                            1
                        ],
                        "autorange": true,
                        "overlaying": "y",
                        "showspikes": true
                    },
                    "modebar": {
                        "bgcolor": "rgba(17, 17, 17, 0.5)"
                    },
                    "autosize": true,
                    "newshape": {
                        "line": {
                            "color": "#444"
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "hovermode": "closest",
                    "annotations": [],
                    "plot_bgcolor": "#575757",
                    "paper_bgcolor": "#474747"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~trungg_ibs",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-05 12:16:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "trungg_ibs",
                "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-05T12:00:55.033792Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kubix448/61.embed",
            "fid": "kubix448:61",
            "filename": "Model Comparison RMSE",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kubix448/61/9_ZCJ3X3F3B7EDAIMHB27H3UC880IG3Z.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kubix448/61/2_JKRVVH6EFEPSKSPOFHF419VRCVY74Y.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kubix448/61/8_Y7XDG70FD7WSLKXC4YKTTG49WV1O4F.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kubix448/61/9_ZCJ3X3F3B7EDAIMHB27H3UC880IG3Z.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kubix448:61",
                "plots": "https://api.plotly.com/v2/plots/kubix448:61",
                "parent": "https://api.plotly.com/v2/folders/home?user=kubix448"
            },
            "owner": "kubix448",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~kubix448/61/",
            "world_readable": true,
            "date_modified": "2024-04-05T16:37:01.452Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kubix448/61/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "MAPE",
                        "type": "box",
                        "xsrc": "kubix448:31:6a4ac5",
                        "ysrc": "kubix448:31:471879",
                        "boxmean": true,
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.05,
                        "font": {
                            "size": 26
                        },
                        "text": "Porovnání metod - Francie"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            2.5,
                            7.5
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 26
                            },
                            "text": "Prediktivní model"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24
                        },
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(179, 188, 199)",
                        "linecolor": "rgb(179, 188, 199)",
                        "tickangle": "auto",
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                2.5,
                                7.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "zerolinecolor": "rgb(179, 188, 199)",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 20,
                        "range": [
                            0.3,
                            1.7
                        ],
                        "tick0": 0,
                        "title": {
                            "font": {
                                "size": 26
                            },
                            "text": "Naměřená chyba RMSE (kW)"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 24
                        },
                        "tickmode": "auto",
                        "autorange": false,
                        "gridcolor": "rgb(179, 188, 199)",
                        "linecolor": "rgb(179, 188, 199)",
                        "showspikes": false,
                        "zerolinecolor": "rgb(179, 188, 199)"
                    },
                    "boxmode": "group",
                    "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/~kubix448",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.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-03-02 14:31:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kubix448",
                "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-05T11:55:21.737830Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kubix448/60.embed",
            "fid": "kubix448:60",
            "filename": "London Comparison RMSE",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kubix448/60/9_VD05E92BMDFTGJZJ7E0T9Q222L5S9O.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kubix448/60/2_9HF9KB97A5XLKL1DHVMOJ1PNP8AWOR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kubix448/60/8_61Y9IJJQJMSF18IY2Y49WG05G9C866.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kubix448/60/9_VD05E92BMDFTGJZJ7E0T9Q222L5S9O.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kubix448:60",
                "plots": "https://api.plotly.com/v2/plots/kubix448:60",
                "parent": "https://api.plotly.com/v2/folders/home?user=kubix448"
            },
            "owner": "kubix448",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~kubix448/60/",
            "world_readable": true,
            "date_modified": "2024-04-05T16:37:01.452Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kubix448/60/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "L",
                                "y": "M"
                            }
                        },
                        "mode": "markers",
                        "name": "MAPE",
                        "type": "box",
                        "xsrc": "kubix448:31:a94615",
                        "ysrc": "kubix448:31:bfe6f7",
                        "boxmean": true,
                        "boxpoints": false
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 26
                        },
                        "text": "Porovnání metod - Londýn"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            2.5,
                            7.5
                        ],
                        "title": {
                            "font": {
                                "size": 26
                            },
                            "text": "Prediktivní model"
                        },
                        "showgrid": true,
                        "showline": true,
                        "tickfont": {
                            "size": 24
                        },
                        "zeroline": true,
                        "autorange": true,
                        "gridcolor": "rgb(179, 188, 199)",
                        "linecolor": "rgb(179, 188, 199)",
                        "showspikes": false,
                        "zerolinecolor": "rgb(179, 188, 199)"
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 10,
                        "range": [
                            0,
                            1.6
                        ],
                        "tick0": 0,
                        "title": {
                            "font": {
                                "size": 26
                            },
                            "text": "Naměřená chyba RMSE (kW)"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 24
                        },
                        "tickmode": "auto",
                        "autorange": false,
                        "gridcolor": "rgb(179, 188, 199)",
                        "linecolor": "rgb(179, 188, 199)",
                        "showspikes": false,
                        "zerolinecolor": "rgb(179, 188, 199)"
                    },
                    "boxmode": "group",
                    "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/~kubix448",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.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-03-02 14:31:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kubix448",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}