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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTIzKzIxJTNBMTIlM0E1OC4zODc5OTclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yMysyMiUzQTU0JTNBNDcuNDMxNTcyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-23T22:54:47.431572Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~siddharth4u12/2.embed",
            "fid": "siddharth4u12:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/siddharth4u12/2/9_MQP6ZMGKFZ19DU0WZK4EU2Y2F2RBWJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/siddharth4u12/2/2_P3J1CUS83LUOYANF9JLTGMLWTCZ3WF.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/siddharth4u12/2/8_EYCDF15MAOHFV3H3SIQSLWMARUTCG1.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/siddharth4u12/2/9_MQP6ZMGKFZ19DU0WZK4EU2Y2F2RBWJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/siddharth4u12:2",
                "plots": "https://api.plotly.com/v2/plots/siddharth4u12:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=siddharth4u12"
            },
            "owner": "siddharth4u12",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~siddharth4u12/2/",
            "world_readable": true,
            "date_modified": "2024-04-23T22:54:47.443Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~siddharth4u12/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1fa6e6",
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "A"
                            }
                        },
                        "name": "A",
                        "type": "bar",
                        "xsrc": "siddharth4u12:1:005967",
                        "ysrc": "siddharth4u12:1:1b9fe4",
                        "marker": {
                            "color": "rgba(226, 74, 51, 0.6)"
                        }
                    },
                    {
                        "uid": "d28225",
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "B"
                            }
                        },
                        "name": "B",
                        "type": "bar",
                        "xsrc": "siddharth4u12:1:005967",
                        "ysrc": "siddharth4u12:1:98f355",
                        "marker": {
                            "color": "rgba(62, 111, 176, 0.6)"
                        }
                    },
                    {
                        "uid": "b9e9ce",
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "C"
                            }
                        },
                        "name": "C",
                        "type": "bar",
                        "xsrc": "siddharth4u12:1:005967",
                        "ysrc": "siddharth4u12:1:e4b254",
                        "marker": {
                            "color": "rgb(132, 118, 202)"
                        }
                    },
                    {
                        "uid": "28df38",
                        "meta": {
                            "columnNames": {
                                "x": "Col1",
                                "y": "D"
                            }
                        },
                        "name": "D",
                        "type": "bar",
                        "xsrc": "siddharth4u12:1:005967",
                        "ysrc": "siddharth4u12:1:6517bd",
                        "marker": {
                            "color": "rgb(101, 101, 101)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Stacked Bar Chart"
                    },
                    "width": 1531,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.5,
                            9.5
                        ],
                        "title": {
                            "text": "Click to Enter X Axis title "
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            3.405984497037895
                        ],
                        "title": {
                            "text": "Click to Enter Y Axis title"
                        },
                        "autorange": true
                    },
                    "height": 755,
                    "barmode": "stack",
                    "autosize": true
                }
            },
            "height": 755,
            "width": 1531,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~siddharth4u12",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/40.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-23 22:54:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "siddharth4u12",
                "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-23T22:41:17.567446Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~dharvey999/1.embed",
            "fid": "dharvey999:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/dharvey999/1/9_NKJ0NY1QOQTKL3HOXPR48NHGX80G91.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/dharvey999/1/2_WU2N2IU47QYOILFF61FTR0M00UDLJD.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/dharvey999/1/8_YK8WBGX7FJCS4POQW7S6LDCF2KQH1J.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/dharvey999/1/9_NKJ0NY1QOQTKL3HOXPR48NHGX80G91.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/dharvey999:1",
                "plots": "https://api.plotly.com/v2/plots/dharvey999:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=dharvey999"
            },
            "owner": "dharvey999",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~dharvey999/1/",
            "world_readable": true,
            "date_modified": "2024-04-24T10:17:17.204Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~dharvey999/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "RecordTime",
                                "y": "Value"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "dharvey999:2:1e4481",
                        "ysrc": "dharvey999:2:f5b7cd"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "RecordTime",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "dharvey999:2:1e4481",
                        "ysrc": "dharvey999:2:e01ebc",
                        "yaxis": "y2",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "RecordTime",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "dharvey999:2:1e4481",
                        "ysrc": "dharvey999:2:81964b",
                        "yaxis": "y2",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2022-12-26",
                            "2023-01-31 23:45"
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.36011111111111116,
                            1.157888888888889
                        ],
                        "autorange": true
                    },
                    "shapes": [
                        {
                            "x0": "2022-12-26 05:56:15",
                            "x1": "2023-01-31 00:00:00",
                            "y0": 1,
                            "y1": 1,
                            "line": {
                                "color": "#444444",
                                "width": 2
                            },
                            "type": "line",
                            "opacity": 0.3,
                            "fillcolor": "#7f7f7f"
                        }
                    ],
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -202282.8549444446,
                            3843384.1839444474
                        ],
                        "title": {
                            "text": "Click to enter Y axis title"
                        },
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "annotations": [
                        {
                            "x": "2023-01-31 00:00:00",
                            "y": 1,
                            "text": "ACT EDF",
                            "yref": "y",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~dharvey999",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/55.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-23 21:54:57",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "dharvey999",
                "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-23T22:14:45.336364Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nguerlavais/1.embed",
            "fid": "nguerlavais:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/nguerlavais:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/nguerlavais:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nguerlavais/1/8_42M5PQ4ECBU1XFHPQVP2WH8MXR7QAB.png",
                "list-thumb": "https://api.plotly.com/v2/files/nguerlavais:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nguerlavais:1",
                "plots": "https://api.plotly.com/v2/plots/nguerlavais:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=nguerlavais"
            },
            "owner": "nguerlavais",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~nguerlavais/1/",
            "world_readable": true,
            "date_modified": "2024-04-30T21:34:33.878Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nguerlavais/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "4c1fe5",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "nguerlavais:0:f8220c",
                        "ysrc": "nguerlavais:0:56e5b1"
                    },
                    {
                        "uid": "67f6fc",
                        "transforms": [
                            {
                                "rms": 0.23615870696196975,
                                "type": "fit",
                                "xmid": 37.5,
                                "ymid": 2.8693749999999887,
                                "inputUid": "4c1fe5",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.0012203358010827615,
                                        "value": -0.07847272727269793
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.03609801980688137,
                                        "value": -0.13363636363698617
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 0.9897758304983775,
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Force x Displacement (spring force)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -3.0605320304017374,
                            53.06053203040174
                        ],
                        "title": {
                            "text": "Displacement (cm)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -4.284957261811893,
                            0.2687334289883306
                        ],
                        "title": {
                            "text": "Force (N)"
                        },
                        "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/~nguerlavais",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-23 22:13:47",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nguerlavais",
                "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-23T22:04:43.745214Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Tipcat/25.embed",
            "fid": "Tipcat:25",
            "filename": "Plot 25",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Tipcat/25/9_5Y4D1OVGEUL9PXGVJXGYXMRRSC7LFD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Tipcat/25/2_GKLYMAF855Q0KLPBP7TU9AYP0TKJHX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Tipcat/25/8_QNIEN95N6D6SPS05YZTCR41D4TA2JV.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Tipcat/25/9_5Y4D1OVGEUL9PXGVJXGYXMRRSC7LFD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Tipcat:25",
                "plots": "https://api.plotly.com/v2/plots/Tipcat:25",
                "parent": "https://api.plotly.com/v2/folders/home?user=Tipcat"
            },
            "owner": "Tipcat",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Tipcat/25/",
            "world_readable": true,
            "date_modified": "2024-04-23T22:04:43.755Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Tipcat/25/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Deusici, x",
                                "y": "Deusici, y",
                                "base": "base",
                                "text": "Deusici, text",
                                "width": "width"
                            }
                        },
                        "mode": "markers",
                        "name": "Deusici",
                        "type": "bar",
                        "xsrc": "Tipcat:24:063a4f",
                        "ysrc": "Tipcat:24:7e1a46",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "meta": {
                                    "columnNames": {
                                        "color": "Deusici, marker, line, color"
                                    }
                                },
                                "width": "2.0",
                                "colorsrc": "Tipcat:24:5244ce"
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "Deusici, marker, color"
                                }
                            },
                            "width": "5",
                            "colorsrc": "Tipcat:24:5496ba"
                        },
                        "basesrc": "Tipcat:24:c19d7d",
                        "textsrc": "Tipcat:24:563df8",
                        "widthsrc": "Tipcat:24:9fdfd2",
                        "hoverinfo": "text",
                        "hoverlabel": {
                            "namelength": "-1"
                        },
                        "showlegend": false,
                        "orientation": "h",
                        "textposition": "none"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Furious Sharpening S, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Furious Sharpening S",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:ef84ad",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Plate of Coq Au Vin , text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Plate of Coq Au Vin ",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:f5a91a",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Number of Clones, x",
                                "y": "Number of Clones, y",
                                "text": "Number of Clones, text"
                            }
                        },
                        "mode": "lines",
                        "name": "Number of Clones",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:3ff1ba",
                        "ysrc": "Tipcat:24:382ad0",
                        "yaxis": "y4",
                        "textsrc": "Tipcat:24:7c0a5b",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Number of Active Com, x",
                                "y": "Number of Active Com, y",
                                "text": "Number of Active Com, text"
                            }
                        },
                        "mode": "lines",
                        "name": "Number of Active Com",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:3e25f2",
                        "ysrc": "Tipcat:24:dca708",
                        "yaxis": "y4",
                        "textsrc": "Tipcat:24:006826",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Number of Boons, x; Swiftness, x",
                                "y": "Number of Boons, y",
                                "text": "Number of Boons, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Number of Boons",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:bfad3f",
                        "ysrc": "Tipcat:24:d9e476",
                        "yaxis": "y4",
                        "textsrc": "Tipcat:24:236169",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Time Anchored, x",
                                "y": "Time Anchored, y",
                                "text": "Time Anchored, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Time Anchored",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:9bf18e",
                        "ysrc": "Tipcat:24:5ec8f9",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:2acd89",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Fencer's Finesse, x",
                                "y": "Fencer's Finesse, y",
                                "text": "Fencer's Finesse, text"
                            }
                        },
                        "mode": "lines",
                        "name": "Fencer's Finesse",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:9cb9b9",
                        "ysrc": "Tipcat:24:e7ced5",
                        "yaxis": "y4",
                        "textsrc": "Tipcat:24:b75ed5",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Signet of the Ether, x",
                                "y": "Signet of the Ether, y",
                                "text": "Signet of the Ether, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Signet of the Ether",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:b24304",
                        "ysrc": "Tipcat:24:0ab3ee",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:b195aa",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Relic of the Thief, x",
                                "y": "Relic of the Thief, y",
                                "text": "Relic of the Thief, text"
                            }
                        },
                        "mode": "lines",
                        "name": "Relic of the Thief",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:e2f050",
                        "ysrc": "Tipcat:24:fa8cbc",
                        "yaxis": "y4",
                        "textsrc": "Tipcat:24:29c7ee",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Chaos Aura, x",
                                "y": "Chaos Aura, y",
                                "text": "Chaos Aura, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Chaos Aura",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:e64ec0",
                        "ysrc": "Tipcat:24:005970",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:fe015f",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(255, 51, 0)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Resolution, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Resolution",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:42d08e",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(255,255,0)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Number of Boons, x; Swiftness, x",
                                "y": "Swiftness, y",
                                "text": "Swiftness, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Swiftness",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:bfad3f",
                        "ysrc": "Tipcat:24:e5cff0",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:e4a046",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(102,255,255)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Aegis, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Aegis",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:07c97a",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(102, 153, 0)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Vigor, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Vigor",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:210d55",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(0,204,0)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Regeneration, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Regeneration",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:3b46d2",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(102,255,255)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Protection, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Protection",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:6a2567",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(0,102,255)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Alacrity, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Alacrity",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:056c99",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(255,0,255)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Quickness, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Quickness",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:5ec745",
                        "visible": null,
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(255,153,0)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Furious Sharpening S, y; Plate of Coq Au Vin , y; Resolution, y; Aegis, y; Vigor, y; Regeneration, y; Protection, y; Alacrity, y; Quickness, y; Fury, y",
                                "text": "Fury, text"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "Fury",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:03686c",
                        "yaxis": "y",
                        "textsrc": "Tipcat:24:f1b356",
                        "visible": "legendonly",
                        "hoverinfo": "text+x"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "rgb(153,0,0)",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Might, x",
                                "y": "Might, y",
                                "text": "Might, text"
                            }
                        },
                        "mode": "lines",
                        "name": "Might",
                        "type": "scatter",
                        "xsrc": "Tipcat:24:bb0561",
                        "ysrc": "Tipcat:24:26c9d9",
                        "yaxis": "y4",
                        "textsrc": "Tipcat:24:fe79d8",
                        "visible": null,
                        "hoverinfo": "text+x"
                    },
                    {
                        "line": {
                            "dash": "dashdot",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Standard Kitty Golem breakbar, y; Deusici health, y",
                                "text": "Standard Kitty Golem breakbar, text"
                            }
                        },
                        "mode": "lines",
                        "name": "Standard Kitty Golem breakbar",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:45d194",
                        "yaxis": "y3",
                        "textsrc": "Tipcat:24:f0b2ec",
                        "visible": "legendonly",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "dash": "dashdot",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Standard Kitty Golem health, x",
                                "y": "Standard Kitty Golem health, y",
                                "text": "Standard Kitty Golem health, text"
                            }
                        },
                        "mode": "lines",
                        "name": "Standard Kitty Golem health",
                        "xsrc": "Tipcat:24:3957b5",
                        "ysrc": "Tipcat:24:71e883",
                        "yaxis": "y3",
                        "textsrc": "Tipcat:24:ea8506",
                        "visible": true,
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "dash": "dashdot",
                            "shape": "hv"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Furious Sharpening S, x; Plate of Coq Au Vin , x; Resolution, x; Aegis, x; Vigor, x; Regeneration, x; Protection, x; Alacrity, x; Quickness, x; Fury, x; Standard Kitty Golem breakbar, x; Deusici health, x",
                                "y": "Standard Kitty Golem breakbar, y; Deusici health, y",
                                "text": "Deusici health, text"
                            }
                        },
                        "mode": "lines",
                        "name": "Deusici health",
                        "xsrc": "Tipcat:24:a60b9a",
                        "ysrc": "Tipcat:24:45d194",
                        "yaxis": "y3",
                        "textsrc": "Tipcat:24:dbf843",
                        "visible": "legendonly",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgb(96,60,111)",
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Total, x; Target, x; Cleave, x",
                                "y": "Total, y; Target, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Total",
                        "xsrc": "Tipcat:24:cd30ba",
                        "ysrc": "Tipcat:24:5f8d51",
                        "yaxis": "y3",
                        "hoverinfo": "name+y+x"
                    },
                    {
                        "line": {
                            "color": "rgb(182,121,213)",
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Total, x; Target, x; Cleave, x",
                                "y": "Total, y; Target, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Target",
                        "xsrc": "Tipcat:24:cd30ba",
                        "ysrc": "Tipcat:24:5f8d51",
                        "yaxis": "y3",
                        "hoverinfo": "name+y+x"
                    },
                    {
                        "line": {
                            "color": "rgb(139,90,162)",
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Total, x; Target, x; Cleave, x",
                                "y": "Cleave, y"
                            }
                        },
                        "mode": "lines",
                        "name": "Cleave",
                        "xsrc": "Tipcat:24:cd30ba",
                        "ysrc": "Tipcat:24:e45267",
                        "yaxis": "y3",
                        "hoverinfo": "name+y+x"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "#cccccc"
                    },
                    "width": 1300,
                    "xaxis": {
                        "type": "linear",
                        "color": "#cccccc",
                        "range": [
                            0,
                            121.7778947368421
                        ],
                        "title": {
                            "text": "Time(sec)"
                        },
                        "domain": [
                            0,
                            0.95
                        ],
                        "nticks": 8,
                        "tickmode": "auto",
                        "autorange": true,
                        "gridcolor": "#cccccc",
                        "rangemode": "nonnegative",
                        "xrangeslider": {}
                    },
                    "yaxis": {
                        "side": "right",
                        "type": "linear",
                        "color": "#cccccc",
                        "range": [
                            0,
                            1.5
                        ],
                        "title": {
                            "text": "Duration Buffs"
                        },
                        "domain": [
                            0,
                            0.44
                        ],
                        "nticks": 1,
                        "gridcolor": "#cccccc",
                        "fixedrange": true,
                        "tickformat": ",d"
                    },
                    "height": 850,
                    "images": [
                        {
                            "x": 0,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 0.17,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 0.602,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 1.322,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 1.515,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_9E7CE10D0E447973F2D9175CF16A103BD076D04B_1012882.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 1.643,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 1.882,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 2.682,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 3.434,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_EE5271572B2B10FBCE95097ECD54775832E8B9EF_699528.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 4.362,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 4.955,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 5.212,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 5.275,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 5.531,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 5.996,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_636CBDAB7A6026B62FF2317CD610D7414FDEC99C_1012881.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 6.044,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4BD3BEF1DE31476B3E40002708049EA1026F1F0B_1012895.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 7.035,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 7.596,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 7.755,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 7.963,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 8.395,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 9.163,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_EE5271572B2B10FBCE95097ECD54775832E8B9EF_699528.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 10.075,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 10.635,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 11.324,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 11.851,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 12.365,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 12.717,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 12.717,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 12.797,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 13.165,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 15.037,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 15.799,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 16.678,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 20.638,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 21.085,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 21.967,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 22.047,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 22.399,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 22.955,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 23.644,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 23.963,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 24.044,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 24.763,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 25.723,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 25.995,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 26.395,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 27.035,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 29.163,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 30.795,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 31.115,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 31.755,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_EE5271572B2B10FBCE95097ECD54775832E8B9EF_699528.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 32.683,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 33.243,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 33.915,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 34.316,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 34.795,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 35.243,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 36.235,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 37.875,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 37.955,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 38.323,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 38.355,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 39.123,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 39.875,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 42.926,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 43.278,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 43.806,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 44.238,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 44.686,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 44.879,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 45.248,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 45.877,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 47.077,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_636CBDAB7A6026B62FF2317CD610D7414FDEC99C_1012881.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 49.362,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 50.05,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 50.402,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 50.434,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 52.594,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 53.394,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 54.162,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 54.77,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_EE5271572B2B10FBCE95097ECD54775832E8B9EF_699528.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 55.682,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 56.242,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 56.93,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 57.461,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 57.574,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 58.277,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 58.717,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 59.005,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 62.196,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 62.356,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 62.484,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 62.596,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 65.762,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 66.37,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 66.809,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 67.678,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 68.478,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 69.246,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 70.238,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 70.718,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 70.847,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 71.279,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 71.969,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 73.488,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 74.357,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 74.677,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 74.805,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 75.322,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 79.157,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 79.477,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 80.037,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 80.839,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 81.077,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_9E7CE10D0E447973F2D9175CF16A103BD076D04B_1012882.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 81.285,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 82.165,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 82.517,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 82.965,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 83.717,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 84.165,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_EE5271572B2B10FBCE95097ECD54775832E8B9EF_699528.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 85.08,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 85.961,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 86.089,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 86.441,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 86.889,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4BD3BEF1DE31476B3E40002708049EA1026F1F0B_1012895.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 86.89,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 87.001,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 87.449,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 88.249,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_EE5271572B2B10FBCE95097ECD54775832E8B9EF_699528.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 88.329,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 89.161,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 90.041,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 90.969,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 91.401,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 91.562,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 91.962,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 92.635,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 92.97,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 93.754,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 94.282,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 94.523,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_636CBDAB7A6026B62FF2317CD610D7414FDEC99C_1012881.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 96.077,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 97.25,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 99.682,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 100.002,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 100.05,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 100.562,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 101.522,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 102.402,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 102.834,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 104.194,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 106.37,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 107.282,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_0EB4E57F0F26799F80727E3DFDD0470E72FB10A3_1012903.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 108.082,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_4FF0FDC3406A5C01B5D2B419A67922AE4E9FF4D6_1012905.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 108.451,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_14090D7A6472AB06125662EB12E6EC51EDE2EEBB_2175059.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 110.322,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_45B04E5D30ADD8D1B3086A98D40BE506E313B646_2479379.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 110.77,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_755CAC115104F0AA0630DCEB472D0678B62A916E_103723.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 111.042,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 111.634,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_449039B4B74B133D226BEED819B7C408AF2B61BB_2479391.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 112.082,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 112.29,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_F59775A05108441C09AC03C30CAD98CC049CCC28_2175058.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 112.69,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_EE5271572B2B10FBCE95097ECD54775832E8B9EF_699528.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 113.604,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3EE57D40E5F2B376FF921FA7455D00319C7DB8A8_103747.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 114.164,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_2E3FFCF506520375FEA923CAC4B25846035B5A0D_103789.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 114.853,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_DA0126D7F32A973F4432E2070C0DB7252F561E90_103584.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        },
                        {
                            "x": 115.236,
                            "y": 0,
                            "xref": "x",
                            "yref": "y2",
                            "sizex": 1,
                            "sizey": 1,
                            "source": "/cache/https_render.guildwars2.com_file_3519C5C770CCEAF92926D9495999E1F8A23D5AF3_103743.png",
                            "visible": false,
                            "xanchor": "middle",
                            "yanchor": "bottom"
                        }
                    ],
                    "legend": {
                        "traceorder": "reversed"
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 22.818,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "paper",
                            "layer": "below",
                            "opacity": 0.2,
                            "fillcolor": "#0000FF"
                        },
                        {
                            "x0": 22.818,
                            "x1": 46.219,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "paper",
                            "layer": "below",
                            "opacity": 0.2,
                            "fillcolor": "#FF0000"
                        },
                        {
                            "x0": 46.219,
                            "x1": 72.019,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "paper",
                            "layer": "below",
                            "opacity": 0.2,
                            "fillcolor": "#0000FF"
                        },
                        {
                            "x0": 72.019,
                            "x1": 93.621,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "paper",
                            "layer": "below",
                            "opacity": 0.2,
                            "fillcolor": "#FF0000"
                        },
                        {
                            "x0": 93.621,
                            "x1": 115.69,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "paper",
                            "layer": "below",
                            "opacity": 0.2,
                            "fillcolor": "#0000FF"
                        },
                        {
                            "x0": 0,
                            "x1": 0,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 22.818,
                            "x1": 22.818,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 22.818,
                            "x1": 22.818,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 46.219,
                            "x1": 46.219,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 46.219,
                            "x1": 46.219,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 72.019,
                            "x1": 72.019,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 72.019,
                            "x1": 72.019,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 93.621,
                            "x1": 93.621,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 93.621,
                            "x1": 93.621,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        },
                        {
                            "x0": 115.69,
                            "x1": 115.69,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "dash": "dash",
                                "color": "#cccccc",
                                "width": 2
                            },
                            "type": "line",
                            "xref": "x",
                            "yref": "paper",
                            "opacity": 0.6
                        }
                    ],
                    "yaxis2": {
                        "type": "linear",
                        "color": "#cccccc",
                        "range": [
                            0,
                            2
                        ],
                        "title": {
                            "text": "Rotation"
                        },
                        "domain": [
                            0.45,
                            0.54
                        ],
                        "showgrid": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "yaxis3": {
                        "type": "linear",
                        "color": "#cccccc",
                        "range": [
                            -2426.9444444444443,
                            46111.944444444445
                        ],
                        "title": {
                            "text": "DPS"
                        },
                        "domain": [
                            0.55,
                            1
                        ],
                        "autorange": true,
                        "gridcolor": "#cccccc",
                        "tickformat": ",d"
                    },
                    "yaxis4": {
                        "type": "linear",
                        "color": "#cccccc",
                        "range": [
                            0,
                            26.315789473684212
                        ],
                        "title": {
                            "text": "Intensity Buffs"
                        },
                        "domain": [
                            0,
                            0.44
                        ],
                        "nticks": 10,
                        "autorange": true,
                        "gridcolor": "#cccccc",
                        "fixedrange": true,
                        "overlaying": "y",
                        "tickformat": ",d"
                    },
                    "barmode": "stack",
                    "autosize": true,
                    "hovermode": "x",
                    "annotations": [
                        {
                            "x": 11.409,
                            "y": 1,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "100% - 80%<br>(22.818 s)",
                            "xref": "x",
                            "yref": "paper",
                            "bgcolor": "#0000FF",
                            "opacity": 0.8,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "bordercolor": "#A0A0A0",
                            "borderwidth": 2
                        },
                        {
                            "x": 34.5185,
                            "y": 1,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "80% - 60%<br>(23.401 s)",
                            "xref": "x",
                            "yref": "paper",
                            "bgcolor": "#FF0000",
                            "opacity": 0.8,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "bordercolor": "#A0A0A0",
                            "borderwidth": 2
                        },
                        {
                            "x": 59.119,
                            "y": 1,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "60% - 40%<br>(25.8 s)",
                            "xref": "x",
                            "yref": "paper",
                            "bgcolor": "#0000FF",
                            "opacity": 0.8,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "bordercolor": "#A0A0A0",
                            "borderwidth": 2
                        },
                        {
                            "x": 82.82,
                            "y": 1,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "40% - 20%<br>(21.602 s)",
                            "xref": "x",
                            "yref": "paper",
                            "bgcolor": "#FF0000",
                            "opacity": 0.8,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "bordercolor": "#A0A0A0",
                            "borderwidth": 2
                        },
                        {
                            "x": 104.65549999999999,
                            "y": 1,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "20% -0%<br>(22.069 s)",
                            "xref": "x",
                            "yref": "paper",
                            "bgcolor": "#0000FF",
                            "opacity": 0.8,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "bordercolor": "#A0A0A0",
                            "borderwidth": 2
                        }
                    ],
                    "datarevision": 1713909801253,
                    "plot_bgcolor": "rgba(0, 0, 0, 0)",
                    "hoverdistance": 150,
                    "paper_bgcolor": "rgba(0, 0, 0, 0)"
                }
            },
            "height": 850,
            "width": 1300,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Tipcat",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2021-10-30 09:53:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Tipcat",
                "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-23T21:50:17.591835Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bellesoph/7.embed",
            "fid": "bellesoph:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bellesoph/7/9_FZIKYMN335HNISB8FIV20NXWUFGOAN.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bellesoph/7/2_W7I77JVJ15VA3QZKC3MSPP17JRZT6F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bellesoph/7/8_IEOE8ET74P0MYKZ7U3ZZFEHR6LNC2Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bellesoph/7/9_FZIKYMN335HNISB8FIV20NXWUFGOAN.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bellesoph:7",
                "plots": "https://api.plotly.com/v2/plots/bellesoph:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=bellesoph"
            },
            "owner": "bellesoph",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~bellesoph/7/",
            "world_readable": true,
            "date_modified": "2024-04-23T21:50:22.599Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bellesoph/7/",
            "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": "bellesoph:6:fae120",
                        "ysrc": "bellesoph:6:010ce8",
                        "xaxis": "x"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "bellesoph:6:fae120",
                        "ysrc": "bellesoph:6:4e2ad8",
                        "yaxis": "y2"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1959,
                            2019
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            273.1666666666667,
                            2509.8333333333335
                        ],
                        "autorange": true
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -0.6666666666666665,
                            52.666666666666664
                        ],
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "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/~bellesoph",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/95.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-09-06 20:05:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bellesoph",
                "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-23T21:37:33.409667Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tlacroix/181.embed",
            "fid": "tlacroix:181",
            "filename": "FINAL - Normalised AutPhi Corpus Inclusions Graph",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tlacroix/181/9_FIDVI0VL0L155EMDTATWO3615PRA8S.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tlacroix/181/2_95XHPJ04GOPWSN0JG2LZ28FCDW40PG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tlacroix/181/8_3LZ874YAFWXZX2H6VXEV3W16F2V7DO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tlacroix/181/9_FIDVI0VL0L155EMDTATWO3615PRA8S.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tlacroix:181",
                "plots": "https://api.plotly.com/v2/plots/tlacroix:181",
                "parent": "https://api.plotly.com/v2/folders/home?user=tlacroix"
            },
            "owner": "tlacroix",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~tlacroix/181/",
            "world_readable": true,
            "date_modified": "2024-04-23T21:45:48.995Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tlacroix/181/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Journal",
                                "y": "Average Result"
                            }
                        },
                        "mode": "markers",
                        "name": "Inclusions (Normalised)",
                        "type": "bar",
                        "xsrc": "tlacroix:180:bbce51",
                        "ysrc": "tlacroix:180:a85d0d",
                        "marker": {
                            "color": "rgb(99, 110, 250)"
                        },
                        "opacity": 0.85,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "dash": "dot",
                            "color": "rgb(42, 63, 95)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Journal",
                                "y": "G"
                            }
                        },
                        "mode": "lines",
                        "name": "Average Inclusions",
                        "type": "scatter",
                        "xsrc": "tlacroix:180:bbce51",
                        "ysrc": "tlacroix:180:417c4d",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 24
                    },
                    "title": {
                        "text": "Normalised Corpus Results (Inclusions)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            59.5
                        ],
                        "title": {
                            "text": "Journal"
                        },
                        "tickfont": {
                            "size": 8
                        },
                        "autorange": true,
                        "tickangle": 45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            0.8842105263157894
                        ],
                        "title": {
                            "text": "Number of Articles (Per Issue)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.7310778195985208,
                        "y": 0.8663217158333604
                    },
                    "barmode": "stack",
                    "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"
                    },
                    "plot_bgcolor": "rgb(250, 249, 246)",
                    "paper_bgcolor": "rgb(250, 249, 246)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tlacroix",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/70.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": "2019-03-29 15:30:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tlacroix",
                "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-23T21:26:58.247906Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Cindy456/14.embed",
            "fid": "Cindy456:14",
            "filename": "Plot 14",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Cindy456:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Cindy456:14/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Cindy456/14/8_NGKMEGD2ZMKR0GS8UT3AXKRAKP142C.png",
                "list-thumb": "https://api.plotly.com/v2/files/Cindy456:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Cindy456:14",
                "plots": "https://api.plotly.com/v2/plots/Cindy456:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=Cindy456"
            },
            "owner": "Cindy456",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Cindy456/14/",
            "world_readable": true,
            "date_modified": "2024-05-09T09:33:56.055Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Cindy456/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "109358",
                        "meta": {
                            "columnNames": {
                                "x": "2007mm",
                                "y": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "2007",
                        "type": "scatter",
                        "xsrc": "Cindy456:13:40c156",
                        "ysrc": "Cindy456:13:125664",
                        "marker": {
                            "color": "rgb(68, 143, 34)"
                        },
                        "orientation": "v"
                    },
                    {
                        "uid": "a07ecb",
                        "meta": {
                            "columnNames": {
                                "x": "20012 MM",
                                "y": "G"
                            }
                        },
                        "mode": "markers",
                        "name": "2012",
                        "type": "scatter",
                        "xsrc": "Cindy456:13:f8041d",
                        "ysrc": "Cindy456:13:9cf396",
                        "marker": {
                            "color": "rgb(208, 43, 200)"
                        },
                        "error_y": {
                            "type": "percent",
                            "color": "rgb(208, 43, 200)",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": false,
                            "thickness": 2,
                            "valueminus": 10
                        },
                        "showlegend": true
                    },
                    {
                        "uid": "10d626",
                        "meta": {
                            "columnNames": {
                                "x": "2017 MM",
                                "y": "K"
                            }
                        },
                        "mode": "markers",
                        "name": "2017",
                        "type": "scatter",
                        "xsrc": "Cindy456:13:121844",
                        "ysrc": "Cindy456:13:b1ae58",
                        "marker": {
                            "color": "rgb(8, 62, 197)"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12
                    },
                    "title": {
                        "font": {
                            "size": 30
                        },
                        "text": "<b>Manmade&nbsp; Lakes in California 2007- 2017</b>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.2,
                            16
                        ],
                        "title": {
                            "font": {
                                "size": 26
                            },
                            "text": "Dissolved Oxygen mg/L"
                        },
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            14
                        ],
                        "title": {
                            "font": {
                                "size": 26
                            },
                            "text": "pH Level"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": false,
                        "zerolinewidth": 3
                    },
                    "legend": {
                        "font": {
                            "size": 26
                        }
                    },
                    "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"
                    },
                    "plot_bgcolor": "rgb(255, 252, 252)",
                    "paper_bgcolor": "rgb(221, 226, 229)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Cindy456",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.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": "2023-09-29 21:23:17",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Cindy456",
                "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-23T21:16:35.402575Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Mirjavid/1.embed",
            "fid": "Mirjavid:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Mirjavid/1/9_S74MP1RZTBIYXMIV76TEPR542AE24Q.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Mirjavid/1/2_BU90372BIS0R750P50BFDXN0UHZA4H.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Mirjavid/1/8_DSCYWMDOJYTEKIJG7VJU58ABEJ9FDP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Mirjavid/1/9_S74MP1RZTBIYXMIV76TEPR542AE24Q.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Mirjavid:1",
                "plots": "https://api.plotly.com/v2/plots/Mirjavid:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Mirjavid"
            },
            "owner": "Mirjavid",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Mirjavid/1/",
            "world_readable": true,
            "date_modified": "2024-04-23T21:16:35.415Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Mirjavid/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Step",
                                "y": "val_auc"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Mirjavid:0:6b50b2",
                        "ysrc": "Mirjavid:0:090bd7",
                        "orientation": "v",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Area Under the Curve Validation plot against step"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            28126,
                            144884
                        ],
                        "title": {
                            "text": "Step"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.04826749033333334,
                            0.9170823163333334
                        ],
                        "title": {
                            "text": "VAL_AUC"
                        },
                        "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/~Mirjavid",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/30.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-23 21:16:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Mirjavid",
                "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-23T21:13:00.684297Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~iamrajivsinhaa/1.embed",
            "fid": "iamrajivsinhaa:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/iamrajivsinhaa/1/9_QDRCX0C2W9QNTL12RCYFYWM10YRSWY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/iamrajivsinhaa/1/2_VCD6LO9JTGLZJJWNLYUX1D7MXV15B8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/iamrajivsinhaa/1/8_R6U84CDSJ2C62PBQLM5I581S8W9U7G.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/iamrajivsinhaa/1/9_QDRCX0C2W9QNTL12RCYFYWM10YRSWY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/iamrajivsinhaa:1",
                "plots": "https://api.plotly.com/v2/plots/iamrajivsinhaa:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=iamrajivsinhaa"
            },
            "owner": "iamrajivsinhaa",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~iamrajivsinhaa/1/",
            "world_readable": true,
            "date_modified": "2024-04-23T21:13:00.696Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~iamrajivsinhaa/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "iamrajivsinhaa:0:229824",
                        "ysrc": "iamrajivsinhaa:0:d913fa",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1.3,
                            65
                        ],
                        "title": {
                            "text": "Ic(mA)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            180.78833333333333,
                            354.4216666666667
                        ],
                        "title": {
                            "text": "β"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~iamrajivsinhaa",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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-23 21:11:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "iamrajivsinhaa",
                "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-23T21:12:58.387997Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~minhaj302/1.embed",
            "fid": "minhaj302:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/minhaj302/1/9_LAYLWUXSY6RX08DL4M7E35VN2FJ7CK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/minhaj302/1/2_10JQ7OMD8TK3VU5HQYUSR16WMCZWOZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/minhaj302/1/8_YRR97DG9TI5OAGWLXJ8C2ZAEMBHJ2Y.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/minhaj302/1/9_LAYLWUXSY6RX08DL4M7E35VN2FJ7CK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/minhaj302:1",
                "plots": "https://api.plotly.com/v2/plots/minhaj302:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=minhaj302"
            },
            "owner": "minhaj302",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~minhaj302/1/",
            "world_readable": true,
            "date_modified": "2024-04-23T21:12:58.400Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~minhaj302/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "minhaj302:0:8fa3a2",
                        "ysrc": "minhaj302:0:0cc48a"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            9
                        ],
                        "title": {
                            "text": "Frequency "
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.3888888888888866,
                            7.38888888888889
                        ],
                        "title": {
                            "text": "Gain in dB"
                        },
                        "autorange": false
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~minhaj302",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-23 21:12:30",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "minhaj302",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}