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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI0LTA0LTI5KzAxJTNBMzglM0E1NC40NTY2MDYlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNC0wNC0yOSswNSUzQTQ3JTNBMjcuNTQ3NzM4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-29T05:47:27.547738Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Dominik89a/2.embed",
            "fid": "Dominik89a:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Dominik89a/2/9_BKGNJQNVZAQDF6MZZ6YG8AKUWM3X8A.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Dominik89a/2/2_KITWII6T4WQZQ7VDZU4Z3EARYQU05L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Dominik89a/2/8_G3P0WOXNJXJJQ4E8H5L7WJJ9CPQ5D8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Dominik89a/2/9_BKGNJQNVZAQDF6MZZ6YG8AKUWM3X8A.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Dominik89a:2",
                "plots": "https://api.plotly.com/v2/plots/Dominik89a:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=Dominik89a"
            },
            "owner": "Dominik89a",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Dominik89a/2/",
            "world_readable": true,
            "date_modified": "2024-04-29T05:47:27.559Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Dominik89a/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C",
                                "error_z": {
                                    "array": "E"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "Dominik89a:1:917625",
                        "ysrc": "Dominik89a:1:57de4f",
                        "zsrc": "Dominik89a:1:de896d",
                        "marker": {
                            "line": {
                                "color": "rgb(255, 255, 255)",
                                "width": 3
                            },
                            "meta": {
                                "columnNames": {
                                    "color": "D"
                                }
                            },
                            "symbol": "circle",
                            "colorbar": {
                                "x": 0.7800000000000002,
                                "y": 0.3999999999999999,
                                "len": 0.75,
                                "xpad": 0,
                                "ypad": 0,
                                "ticks": "outside",
                                "title": {
                                    "side": "right",
                                    "text": "Fläche EtOH / pA s"
                                },
                                "lenmode": "fraction",
                                "thickness": 30,
                                "tickangle": "auto",
                                "tickcolor": "rgb(255, 255, 255)",
                                "outlinecolor": "rgb(255, 255, 255)",
                                "outlinewidth": 1,
                                "showticklabels": true
                            },
                            "colorsrc": "Dominik89a:1:2d68a5",
                            "colorscale": [
                                [
                                    0,
                                    "#440154"
                                ],
                                [
                                    0.111111111111111,
                                    "#482878"
                                ],
                                [
                                    0.222222222222222,
                                    "#3E4A89"
                                ],
                                [
                                    0.333333333333333,
                                    "#31688E"
                                ],
                                [
                                    0.444444444444444,
                                    "#26838E"
                                ],
                                [
                                    0.555555555555556,
                                    "#1F9D89"
                                ],
                                [
                                    0.666666666666667,
                                    "#35B779"
                                ],
                                [
                                    0.777777777777778,
                                    "#6CCE59"
                                ],
                                [
                                    0.888888888888889,
                                    "#B4DD2C"
                                ],
                                [
                                    1,
                                    "#FDE725"
                                ]
                            ]
                        },
                        "error_x": {
                            "value": 0,
                            "visible": true,
                            "symmetric": true
                        },
                        "error_z": {
                            "value": 0,
                            "visible": true,
                            "symmetric": true
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "range": [
                                -2,
                                8
                            ],
                            "title": {
                                "text": "Aufwärmzeit Nadel / s"
                            },
                            "showgrid": true,
                            "autorange": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "range": [
                                -1
                            ],
                            "title": {
                                "text": "Injektionsgeschwindigkeit / a.u."
                            },
                            "autorange": false
                        },
                        "zaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                25
                            ],
                            "title": {
                                "text": "Verweilzeit Nadel / s"
                            },
                            "autorange": false
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.9037236300799383,
                                "y": -1.3329029107063108,
                                "z": 0.8264966276666604
                            },
                            "center": {
                                "x": 0,
                                "y": 2.220446049250313e-16,
                                "z": 1.1102230246251565e-16
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Fläche EtOH"
                    },
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Dominik89a",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-29 05:39:48",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Dominik89a",
                "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-29T05:30:23.487615Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~shikhathapa271/31.embed",
            "fid": "shikhathapa271:31",
            "filename": "Overall analysis of AFR",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/shikhathapa271/31/9_N92OQWBZIF1FIG4FQP1D2GDGBS1TPV.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/shikhathapa271/31/2_BDOVK4AI9TP8Q5J0J23TRSLXYE3WBT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/shikhathapa271/31/8_F64UUOJZQEGK5YAKTGPU0M12G0D1DT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/shikhathapa271/31/9_N92OQWBZIF1FIG4FQP1D2GDGBS1TPV.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/shikhathapa271:31",
                "plots": "https://api.plotly.com/v2/plots/shikhathapa271:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=shikhathapa271"
            },
            "owner": "shikhathapa271",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~shikhathapa271/31/",
            "world_readable": true,
            "date_modified": "2024-04-29T05:36:45.338Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~shikhathapa271/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "i": "",
                                "j": "",
                                "k": "",
                                "x": "A",
                                "y": "B",
                                "z": "C",
                                "text": "A",
                                "facecolor": "",
                                "intensity": "D",
                                "vertexcolor": ""
                            }
                        },
                        "mode": "markers",
                        "type": "mesh3d",
                        "xsrc": "shikhathapa271:30:9fd40a",
                        "ysrc": "shikhathapa271:30:b0aa30",
                        "zsrc": "shikhathapa271:30:b248b1",
                        "contour": {
                            "show": true,
                            "color": "rgb(20, 20, 20)",
                            "width": 16
                        },
                        "opacity": 1,
                        "textsrc": "shikhathapa271:30:9fd40a",
                        "visible": true,
                        "colorbar": {
                            "x": 0.6393905191873589,
                            "y": 0.5,
                            "len": 1,
                            "xpad": 0,
                            "ypad": 67,
                            "dtick": 45,
                            "tick0": 25,
                            "ticks": "inside",
                            "title": {
                                "font": {
                                    "size": 25,
                                    "color": "rgb(13, 13, 13)",
                                    "family": "Times New Roman"
                                },
                                "side": "top",
                                "text": "<b>Temp (</b><sup><b>o</b></sup><b>C)</b>"
                            },
                            "ticklen": 12,
                            "xanchor": "left",
                            "tickfont": {
                                "size": 30,
                                "color": "rgb(10, 10, 10)",
                                "family": "Times New Roman"
                            },
                            "tickmode": "auto",
                            "thickness": 23,
                            "tickangle": "auto",
                            "tickcolor": "rgb(13, 13, 13)",
                            "tickwidth": 3,
                            "borderwidth": 0,
                            "outlinecolor": "rgb(11, 11, 11)",
                            "outlinewidth": 2,
                            "exponentformat": "B"
                        },
                        "lighting": {
                            "ambient": 0.8,
                            "diffuse": 0.8,
                            "fresnel": 0.4,
                            "specular": 0.06,
                            "roughness": 0.5,
                            "facenormalsepsilon": 0,
                            "vertexnormalsepsilon": 0
                        },
                        "hoverinfo": "x+y+z",
                        "showscale": true,
                        "colorscale": [
                            [
                                0,
                                "#9e0142"
                            ],
                            [
                                0.1,
                                "#d53e4f"
                            ],
                            [
                                0.2,
                                "#f46d43"
                            ],
                            [
                                0.3,
                                "#fdae61"
                            ],
                            [
                                0.4,
                                "#fee08b"
                            ],
                            [
                                0.5,
                                "#ffffbf"
                            ],
                            [
                                0.6,
                                "#e6f598"
                            ],
                            [
                                0.7,
                                "#abdda4"
                            ],
                            [
                                0.8,
                                "#66c2a5"
                            ],
                            [
                                0.9,
                                "#3288bd"
                            ],
                            [
                                1,
                                "#5e4fa2"
                            ]
                        ],
                        "hoverlabel": {
                            "align": "auto",
                            "namelength": -1
                        },
                        "showlegend": false,
                        "flatshading": true,
                        "legendgroup": 1,
                        "intensitysrc": "shikhathapa271:30:7f6dbe",
                        "reversescale": true,
                        "hovertemplate": "",
                        "lightposition": {
                            "x": -20000,
                            "y": 60000,
                            "z": -20000
                        },
                        "autocolorscale": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers",
                        "name": "<br>",
                        "type": "scatter3d",
                        "xsrc": "shikhathapa271:30:9fd40a",
                        "ysrc": "shikhathapa271:30:b0aa30",
                        "zsrc": "shikhathapa271:30:b248b1",
                        "scene": "scene",
                        "marker": {
                            "line": {
                                "color": "rgb(6, 6, 6)",
                                "width": 1
                            },
                            "size": 5,
                            "color": "rgb(9, 1, 0)",
                            "opacity": 0
                        },
                        "opacity": 1,
                        "visible": true,
                        "hoverinfo": "x+y+z",
                        "legendgroup": 1
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "category",
                            "dtick": 0,
                            "range": [
                                0,
                                2
                            ],
                            "tick0": 0,
                            "ticks": "outside",
                            "title": {
                                "font": {
                                    "size": 30,
                                    "color": "rgb(6, 6, 6)",
                                    "family": "Times New Roman"
                                },
                                "text": "<b>CS design</b>"
                            },
                            "nticks": 7,
                            "ticklen": 10,
                            "showline": true,
                            "tickfont": {
                                "size": 20,
                                "color": "rgb(10, 10, 10)",
                                "family": "Times New Roman"
                            },
                            "tickmode": "linear",
                            "autorange": true,
                            "gridwidth": 3,
                            "linecolor": "rgb(16, 16, 16)",
                            "linewidth": 10,
                            "tickcolor": "rgb(8, 8, 8)",
                            "tickwidth": 4,
                            "spikethickness": 50
                        },
                        "yaxis": {
                            "type": "category",
                            "dtick": 0,
                            "range": [
                                0,
                                4.5
                            ],
                            "ticks": "outside",
                            "title": {
                                "font": {
                                    "size": 30,
                                    "color": "rgb(6, 6, 6)",
                                    "family": "Times New Roman"
                                },
                                "text": "<b>Current (A)</b>"
                            },
                            "mirror": false,
                            "nticks": 9,
                            "ticklen": 10,
                            "showline": true,
                            "tickfont": {
                                "size": 20,
                                "color": "rgb(17, 18, 18)",
                                "family": "Times New Roman"
                            },
                            "tickmode": "linear",
                            "autorange": true,
                            "linecolor": "rgb(6, 6, 6)",
                            "linewidth": 10,
                            "tickcolor": "rgb(18, 18, 18)",
                            "tickwidth": 2,
                            "spikethickness": 50
                        },
                        "zaxis": {
                            "type": "linear",
                            "ticks": "outside",
                            "title": {
                                "font": {
                                    "size": 30,
                                    "color": "rgb(16, 16, 16)",
                                    "family": "Times New Roman"
                                },
                                "text": "<b>LF resistance (Ω cm</b><sup><b>2</b></sup><b>)</b>"
                            },
                            "ticklen": 10,
                            "showline": true,
                            "tickfont": {
                                "size": 20,
                                "color": "rgb(2, 2, 2)",
                                "family": "Times New Roman"
                            },
                            "autorange": true,
                            "gridwidth": 1,
                            "linecolor": "rgb(0, 0, 0)",
                            "linewidth": 10,
                            "tickcolor": "rgb(13, 13, 13)",
                            "tickwidth": 2,
                            "zerolinewidth": 10,
                            "spikethickness": 50
                        },
                        "camera": {
                            "up": {
                                "x": 0.9212857898503398,
                                "y": -0.10987587318822756,
                                "z": 0.37304126569450724
                            },
                            "eye": {
                                "x": -0.6026920272643522,
                                "y": 0.4252375135492774,
                                "z": 1.9758261751177646
                            },
                            "center": {
                                "x": 0.14652912553575567,
                                "y": -0.3726955228680092,
                                "z": -0.10952057386407849
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "bgcolor": "rgb(255, 255, 255)",
                        "dragmode": "orbit",
                        "aspectmode": "mode",
                        "aspectratio": {
                            "x": 1.3000000000000003,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 1
                        }
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            3.8099467140319714,
                            26.190053285968027
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            5.927094132772324,
                            12.209205867227677
                        ],
                        "autorange": true
                    },
                    "images": [],
                    "legend": {
                        "x": 1.02,
                        "y": 1,
                        "title": {
                            "text": "<br>"
                        },
                        "valign": "middle",
                        "bordercolor": "rgb(6, 6, 6)",
                        "borderwidth": 0
                    },
                    "margin": {
                        "l": 50,
                        "t": 35,
                        "pad": 0
                    },
                    "shapes": [],
                    "modebar": {
                        "orientation": "h"
                    },
                    "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"
                    },
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#a50026"
                            ],
                            [
                                0.1,
                                "#d73027"
                            ],
                            [
                                0.2,
                                "#f46d43"
                            ],
                            [
                                0.3,
                                "#fdae61"
                            ],
                            [
                                0.4,
                                "#fee08b"
                            ],
                            [
                                0.5,
                                "#ffffbf"
                            ],
                            [
                                0.6,
                                "#d9ef8b"
                            ],
                            [
                                0.7,
                                "#a6d96a"
                            ],
                            [
                                0.8,
                                "#66bd63"
                            ],
                            [
                                0.9,
                                "#1a9850"
                            ],
                            [
                                1,
                                "#006837"
                            ]
                        ]
                    },
                    "showlegend": false,
                    "annotations": [],
                    "paper_bgcolor": "rgb(254, 253, 253)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~shikhathapa271",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/38.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2022-06-30 15:55:09",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "shikhathapa271",
                "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-29T05:20:49.652290Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~NatiH/9.embed",
            "fid": "NatiH:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/NatiH/9/9_C1OU4WGBKB6EATLGJFQY12TOG7CNHO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/NatiH/9/2_B1XY4RAZANFUF5RDD7GSLQQL6ZG1D1.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/NatiH/9/8_EJOWDC23EL29TBVH0NLZC7Q2AU2Q8S.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/NatiH/9/9_C1OU4WGBKB6EATLGJFQY12TOG7CNHO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/NatiH:9",
                "plots": "https://api.plotly.com/v2/plots/NatiH:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=NatiH"
            },
            "owner": "NatiH",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~NatiH/9/",
            "world_readable": true,
            "date_modified": "2024-04-29T07:09:06.502Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~NatiH/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "GPE",
                                "y": "Loss/Gain"
                            }
                        },
                        "mode": "markers",
                        "name": "K.E",
                        "type": "bar",
                        "xsrc": "NatiH:8:27b88f",
                        "ysrc": "NatiH:8:5d6bb3",
                        "orientation": "h"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "K.E.",
                                "y": "Loss/Gain"
                            }
                        },
                        "name": "G.P.E",
                        "type": "bar",
                        "xsrc": "NatiH:8:080074",
                        "ysrc": "NatiH:8:5d6bb3",
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "GPE against KE"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            0.02210526315789474
                        ],
                        "title": {
                            "text": "Loss / Gain"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.0071,
                            0.0206
                        ],
                        "title": {
                            "text": "GPE & KE"
                        },
                        "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/~NatiH",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.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-08-31 10:39:35",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "NatiH",
                "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-29T04:08:13.569837Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Aquawave/3.embed",
            "fid": "Aquawave:3",
            "filename": "yearly-heatmap",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Aquawave:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Aquawave:3/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Aquawave:3/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Aquawave:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Aquawave:3",
                "plots": "https://api.plotly.com/v2/plots/Aquawave:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Aquawave"
            },
            "owner": "Aquawave",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~Aquawave/3/",
            "world_readable": true,
            "date_modified": "2024-04-29T04:08:13.579Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Aquawave/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "2010",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:2:ccd175",
                        "ygap": 1,
                        "ysrc": "Aquawave:2:0b94f3",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:2:42fe95",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:2:022dda",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:bf8ca8",
                        "ysrc": "Aquawave:2:5f4ef7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:200561",
                        "ysrc": "Aquawave:2:a2e22d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:74b540",
                        "ysrc": "Aquawave:2:255e61",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:f6290b",
                        "ysrc": "Aquawave:2:a75518",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d89efb",
                        "ysrc": "Aquawave:2:9e8a1a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:acaebe",
                        "ysrc": "Aquawave:2:3a25ed",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8159aa",
                        "ysrc": "Aquawave:2:ede78f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:95c882",
                        "ysrc": "Aquawave:2:2ed122",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8844a2",
                        "ysrc": "Aquawave:2:1042d9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c28d4a",
                        "ysrc": "Aquawave:2:6a8216",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:594773",
                        "ysrc": "Aquawave:2:f145ba",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:939b2f",
                        "ysrc": "Aquawave:2:8e783b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5fbc29",
                        "ysrc": "Aquawave:2:2e7c5c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d2c9e2",
                        "ysrc": "Aquawave:2:ede958",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9a97d0",
                        "ysrc": "Aquawave:2:438c95",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:99c76b",
                        "ysrc": "Aquawave:2:d19e17",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:919adb",
                        "ysrc": "Aquawave:2:3fc642",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9ea851",
                        "ysrc": "Aquawave:2:94d65b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8c23ba",
                        "ysrc": "Aquawave:2:19ef43",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:86a58b",
                        "ysrc": "Aquawave:2:238691",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:fadf16",
                        "ysrc": "Aquawave:2:c8a5b8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9840f9",
                        "ysrc": "Aquawave:2:402925",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5d8c55",
                        "ysrc": "Aquawave:2:9cb408",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:919872",
                        "ysrc": "Aquawave:2:177ea3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:278a67",
                        "ysrc": "Aquawave:2:afb65f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:f00534",
                        "ysrc": "Aquawave:2:5442d4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:053911",
                        "ysrc": "Aquawave:2:abe701",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2c045f",
                        "ysrc": "Aquawave:2:77d917",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:14e063",
                        "ysrc": "Aquawave:2:5019c1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:7c9812",
                        "ysrc": "Aquawave:2:144a1f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2011",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:2:3909cd",
                        "ygap": 1,
                        "ysrc": "Aquawave:2:9e5653",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:2:fd151d",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:2:d1f4ec",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:df4092",
                        "ysrc": "Aquawave:2:41eb97",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b6aa46",
                        "ysrc": "Aquawave:2:a6f336",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:4a06b0",
                        "ysrc": "Aquawave:2:28a189",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:4aaad7",
                        "ysrc": "Aquawave:2:88c509",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c4ebc1",
                        "ysrc": "Aquawave:2:142b5b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:bc080f",
                        "ysrc": "Aquawave:2:feb87a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b48c84",
                        "ysrc": "Aquawave:2:47cc06",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:511105",
                        "ysrc": "Aquawave:2:000e75",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:34f9fe",
                        "ysrc": "Aquawave:2:a6ee11",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d605ac",
                        "ysrc": "Aquawave:2:861a79",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:941406",
                        "ysrc": "Aquawave:2:7cb14f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:47deb9",
                        "ysrc": "Aquawave:2:892f49",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:81464b",
                        "ysrc": "Aquawave:2:f56a28",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:bd68e5",
                        "ysrc": "Aquawave:2:c2070a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:225a05",
                        "ysrc": "Aquawave:2:cb7512",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:44dc40",
                        "ysrc": "Aquawave:2:ee39bd",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:257b46",
                        "ysrc": "Aquawave:2:3d07f2",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2b247d",
                        "ysrc": "Aquawave:2:3d3cb1",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:3c50eb",
                        "ysrc": "Aquawave:2:4f82bc",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:3b6e8d",
                        "ysrc": "Aquawave:2:82f8af",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:86c2fa",
                        "ysrc": "Aquawave:2:28f147",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:ab8648",
                        "ysrc": "Aquawave:2:226338",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c5c34d",
                        "ysrc": "Aquawave:2:1b9f5a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:4b3414",
                        "ysrc": "Aquawave:2:5d247c",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:7ec24b",
                        "ysrc": "Aquawave:2:58dee4",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5d37dd",
                        "ysrc": "Aquawave:2:440d1a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:339448",
                        "ysrc": "Aquawave:2:6cb5fa",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2159e2",
                        "ysrc": "Aquawave:2:f4ae6a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d6e02a",
                        "ysrc": "Aquawave:2:db17ec",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:fa1c5d",
                        "ysrc": "Aquawave:2:866a08",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:1982cc",
                        "ysrc": "Aquawave:2:967ca3",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:29bfb1",
                        "ysrc": "Aquawave:2:2ad40a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:731473",
                        "ysrc": "Aquawave:2:29201e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:6c0d1d",
                        "ysrc": "Aquawave:2:c71e93",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2012",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:2:c4ff26",
                        "ygap": 1,
                        "ysrc": "Aquawave:2:8c848e",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:2:059db3",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:2:b16d3a",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c58b0e",
                        "ysrc": "Aquawave:2:972110",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:17e932",
                        "ysrc": "Aquawave:2:0fcd9a",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5875a1",
                        "ysrc": "Aquawave:2:c47dd4",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:642053",
                        "ysrc": "Aquawave:2:073a80",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9966e3",
                        "ysrc": "Aquawave:2:df45ee",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:652f1c",
                        "ysrc": "Aquawave:2:e51e28",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:be9a37",
                        "ysrc": "Aquawave:2:ef049f",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:be086d",
                        "ysrc": "Aquawave:2:65464b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b9839f",
                        "ysrc": "Aquawave:2:86a78e",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c373d1",
                        "ysrc": "Aquawave:2:35cc0f",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:50bfd3",
                        "ysrc": "Aquawave:2:70770a",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:75b3ad",
                        "ysrc": "Aquawave:2:a8765a",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:bb1718",
                        "ysrc": "Aquawave:2:230915",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0f68c6",
                        "ysrc": "Aquawave:2:8ebace",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9a0448",
                        "ysrc": "Aquawave:2:e01092",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:63f1cd",
                        "ysrc": "Aquawave:2:17feb1",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:cf93ed",
                        "ysrc": "Aquawave:2:333245",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8f78cc",
                        "ysrc": "Aquawave:2:fc4241",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:6959c2",
                        "ysrc": "Aquawave:2:590434",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5a9775",
                        "ysrc": "Aquawave:2:47d606",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:daa674",
                        "ysrc": "Aquawave:2:5fdeb2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:36bdba",
                        "ysrc": "Aquawave:2:08a5af",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b9bca4",
                        "ysrc": "Aquawave:2:4e48ad",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8e04fe",
                        "ysrc": "Aquawave:2:69707a",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:24ac45",
                        "ysrc": "Aquawave:2:5fd41a",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b5103a",
                        "ysrc": "Aquawave:2:0f7590",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:365f58",
                        "ysrc": "Aquawave:2:1bb741",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c0ef41",
                        "ysrc": "Aquawave:2:56bfa2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8e1b01",
                        "ysrc": "Aquawave:2:e9a355",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:94035c",
                        "ysrc": "Aquawave:2:aed4c3",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0c0003",
                        "ysrc": "Aquawave:2:e31b2b",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:f75019",
                        "ysrc": "Aquawave:2:abc677",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:150716",
                        "ysrc": "Aquawave:2:2c92f4",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:cc3dd1",
                        "ysrc": "Aquawave:2:147f0d",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2013",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:2:f78efd",
                        "ygap": 1,
                        "ysrc": "Aquawave:2:341291",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:2:b7bbbe",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:2:4f2f65",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9f5f61",
                        "ysrc": "Aquawave:2:c0f959",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:aa5bf6",
                        "ysrc": "Aquawave:2:3b73c3",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:79f059",
                        "ysrc": "Aquawave:2:f35a44",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b321e5",
                        "ysrc": "Aquawave:2:2c96ef",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:12690e",
                        "ysrc": "Aquawave:2:382e3a",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:f821e5",
                        "ysrc": "Aquawave:2:b115ff",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:a2a8bc",
                        "ysrc": "Aquawave:2:6b1672",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:df0f05",
                        "ysrc": "Aquawave:2:e797f7",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:64e778",
                        "ysrc": "Aquawave:2:a28d7b",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:f41891",
                        "ysrc": "Aquawave:2:296382",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:701e8f",
                        "ysrc": "Aquawave:2:57673f",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:711b8f",
                        "ysrc": "Aquawave:2:57d661",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:388f42",
                        "ysrc": "Aquawave:2:574cc6",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:09f2d6",
                        "ysrc": "Aquawave:2:c14bf4",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:25412a",
                        "ysrc": "Aquawave:2:a0643a",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d7e6eb",
                        "ysrc": "Aquawave:2:935701",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:68913e",
                        "ysrc": "Aquawave:2:3e6c07",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:deb66d",
                        "ysrc": "Aquawave:2:a0ed3e",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:79e099",
                        "ysrc": "Aquawave:2:e345a0",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:db771e",
                        "ysrc": "Aquawave:2:9df25c",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c10fe6",
                        "ysrc": "Aquawave:2:3055c4",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:ecdf19",
                        "ysrc": "Aquawave:2:532387",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:90c431",
                        "ysrc": "Aquawave:2:930bfc",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2e6167",
                        "ysrc": "Aquawave:2:62f733",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5de52a",
                        "ysrc": "Aquawave:2:8bce7a",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d51f76",
                        "ysrc": "Aquawave:2:6813d1",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:70a51e",
                        "ysrc": "Aquawave:2:8a2961",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5ff28d",
                        "ysrc": "Aquawave:2:186ff0",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:663bdb",
                        "ysrc": "Aquawave:2:44654d",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:4c3ce1",
                        "ysrc": "Aquawave:2:7a68e1",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c5da7f",
                        "ysrc": "Aquawave:2:3f89b1",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:65a5d0",
                        "ysrc": "Aquawave:2:6833ed",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2014",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:2:29f5c8",
                        "ygap": 1,
                        "ysrc": "Aquawave:2:4fe685",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:2:75cff2",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:2:95725e",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:dff7c7",
                        "ysrc": "Aquawave:2:40ae68",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:f5d708",
                        "ysrc": "Aquawave:2:7b34f3",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d91d7c",
                        "ysrc": "Aquawave:2:cce0f6",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:228a85",
                        "ysrc": "Aquawave:2:1b01b3",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:687c2c",
                        "ysrc": "Aquawave:2:473837",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2e9fc9",
                        "ysrc": "Aquawave:2:3bca3b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e3a27d",
                        "ysrc": "Aquawave:2:480c57",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:eb7a2e",
                        "ysrc": "Aquawave:2:7f6faa",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:67a21e",
                        "ysrc": "Aquawave:2:0c634d",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e264f2",
                        "ysrc": "Aquawave:2:cf7193",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2d24fd",
                        "ysrc": "Aquawave:2:dd034e",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0c6941",
                        "ysrc": "Aquawave:2:01acd3",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:6adbb7",
                        "ysrc": "Aquawave:2:f5e183",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d8e679",
                        "ysrc": "Aquawave:2:e40848",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:737aac",
                        "ysrc": "Aquawave:2:6518ee",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:215a1f",
                        "ysrc": "Aquawave:2:4d70cc",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2b1648",
                        "ysrc": "Aquawave:2:3a2a09",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e0106c",
                        "ysrc": "Aquawave:2:df016b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0137fe",
                        "ysrc": "Aquawave:2:90278f",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:6b7c25",
                        "ysrc": "Aquawave:2:33c44d",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2004c3",
                        "ysrc": "Aquawave:2:c3553b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0b9450",
                        "ysrc": "Aquawave:2:0530fe",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d08cc7",
                        "ysrc": "Aquawave:2:41551c",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:aebb67",
                        "ysrc": "Aquawave:2:c7469a",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d2080a",
                        "ysrc": "Aquawave:2:7e3391",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:76516b",
                        "ysrc": "Aquawave:2:14b058",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:4bad31",
                        "ysrc": "Aquawave:2:8406d5",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:fca828",
                        "ysrc": "Aquawave:2:349abc",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5cd01a",
                        "ysrc": "Aquawave:2:70ced9",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:377f1f",
                        "ysrc": "Aquawave:2:61ed97",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e6242e",
                        "ysrc": "Aquawave:2:56c333",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8b66b0",
                        "ysrc": "Aquawave:2:cf1b3e",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2015",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:2:b8ebc0",
                        "ygap": 1,
                        "ysrc": "Aquawave:2:72e9f4",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:2:10c41e",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:2:871d02",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2e50b2",
                        "ysrc": "Aquawave:2:c5ad08",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:54a6b1",
                        "ysrc": "Aquawave:2:f1faae",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:660565",
                        "ysrc": "Aquawave:2:4e3e5f",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:59bc53",
                        "ysrc": "Aquawave:2:ea2769",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2aee6c",
                        "ysrc": "Aquawave:2:83bda8",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e717f6",
                        "ysrc": "Aquawave:2:f9c61c",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:fce078",
                        "ysrc": "Aquawave:2:a58735",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9d6831",
                        "ysrc": "Aquawave:2:e67596",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9ec139",
                        "ysrc": "Aquawave:2:fe7f99",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:31ba4d",
                        "ysrc": "Aquawave:2:2873ed",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:34cc42",
                        "ysrc": "Aquawave:2:5ae16a",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0a232b",
                        "ysrc": "Aquawave:2:6beed0",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:597041",
                        "ysrc": "Aquawave:2:c65b36",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5bc8f1",
                        "ysrc": "Aquawave:2:663ee8",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8995a2",
                        "ysrc": "Aquawave:2:1eb823",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:294e3b",
                        "ysrc": "Aquawave:2:6ece77",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:99f1bd",
                        "ysrc": "Aquawave:2:263bd9",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8fd84d",
                        "ysrc": "Aquawave:2:acca61",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:242dc0",
                        "ysrc": "Aquawave:2:ab1871",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5fa37a",
                        "ysrc": "Aquawave:2:c3a709",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:6414c2",
                        "ysrc": "Aquawave:2:b01550",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:cf3e84",
                        "ysrc": "Aquawave:2:efc7c7",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:28f3b1",
                        "ysrc": "Aquawave:2:577409",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b9e523",
                        "ysrc": "Aquawave:2:d52082",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9abaa5",
                        "ysrc": "Aquawave:2:17aaa3",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:102c5d",
                        "ysrc": "Aquawave:2:d8ec87",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5e739f",
                        "ysrc": "Aquawave:2:d9b7ca",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:cf72ff",
                        "ysrc": "Aquawave:2:7faa76",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:1195c5",
                        "ysrc": "Aquawave:2:6a6b82",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:4217a8",
                        "ysrc": "Aquawave:2:b65097",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2a675d",
                        "ysrc": "Aquawave:2:748d92",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:6c564d",
                        "ysrc": "Aquawave:2:2ab67b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:ad6c4a",
                        "ysrc": "Aquawave:2:5dc975",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:9ca4b1",
                        "ysrc": "Aquawave:2:2e54ca",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2016",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:2:cb6058",
                        "ygap": 1,
                        "ysrc": "Aquawave:2:b1db10",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:2:61b65a",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:2:4aaccc",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:7132aa",
                        "ysrc": "Aquawave:2:5dfbc7",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e85c8d",
                        "ysrc": "Aquawave:2:3e338c",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:7696c5",
                        "ysrc": "Aquawave:2:0348f6",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:f4c7e3",
                        "ysrc": "Aquawave:2:c6c7cf",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:cb0536",
                        "ysrc": "Aquawave:2:2299c6",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0f8a94",
                        "ysrc": "Aquawave:2:9bb0e8",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:62ffbc",
                        "ysrc": "Aquawave:2:782ec0",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:a0fe60",
                        "ysrc": "Aquawave:2:a17b5a",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:1fa8d0",
                        "ysrc": "Aquawave:2:922f5d",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:61a03e",
                        "ysrc": "Aquawave:2:99b272",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:329cec",
                        "ysrc": "Aquawave:2:e54af2",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:084fc3",
                        "ysrc": "Aquawave:2:f1be16",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:06d488",
                        "ysrc": "Aquawave:2:bbd0c0",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:74fb7b",
                        "ysrc": "Aquawave:2:da4cbb",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:eff9f5",
                        "ysrc": "Aquawave:2:5c5721",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d084c0",
                        "ysrc": "Aquawave:2:f1cfa2",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:cc9a92",
                        "ysrc": "Aquawave:2:8d3baa",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e2f7e4",
                        "ysrc": "Aquawave:2:1b5631",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0fd48c",
                        "ysrc": "Aquawave:2:63a5de",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2389ca",
                        "ysrc": "Aquawave:2:6250ca",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:864f8b",
                        "ysrc": "Aquawave:2:7a91a8",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:10f6a1",
                        "ysrc": "Aquawave:2:7010b5",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:ad7d17",
                        "ysrc": "Aquawave:2:490bad",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d446fd",
                        "ysrc": "Aquawave:2:34c98a",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:1be72e",
                        "ysrc": "Aquawave:2:11f915",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:ae1e0f",
                        "ysrc": "Aquawave:2:115e1c",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:aee5d7",
                        "ysrc": "Aquawave:2:64931c",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:34e36c",
                        "ysrc": "Aquawave:2:67ba37",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e54c6b",
                        "ysrc": "Aquawave:2:2f451f",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b56bdf",
                        "ysrc": "Aquawave:2:7206e9",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e37e4a",
                        "ysrc": "Aquawave:2:545c58",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5aadb4",
                        "ysrc": "Aquawave:2:80cd34",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2017",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:2:28574b",
                        "ygap": 1,
                        "ysrc": "Aquawave:2:7f3848",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:2:f4686f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:2:01080f",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:020dbb",
                        "ysrc": "Aquawave:2:92bf74",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:ffbc57",
                        "ysrc": "Aquawave:2:cd551f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:305a6b",
                        "ysrc": "Aquawave:2:a9740f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:f8776d",
                        "ysrc": "Aquawave:2:30df94",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:77a62d",
                        "ysrc": "Aquawave:2:012c01",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:e2be3e",
                        "ysrc": "Aquawave:2:f1c1e2",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:dfe48c",
                        "ysrc": "Aquawave:2:b41d4d",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:960688",
                        "ysrc": "Aquawave:2:951f73",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:653743",
                        "ysrc": "Aquawave:2:05f6b6",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:8d4ed2",
                        "ysrc": "Aquawave:2:6912a0",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b07f56",
                        "ysrc": "Aquawave:2:26fa11",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:275260",
                        "ysrc": "Aquawave:2:dcf3ea",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d8d630",
                        "ysrc": "Aquawave:2:3b3cd5",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:6eb4c7",
                        "ysrc": "Aquawave:2:0e0d8e",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:262fd7",
                        "ysrc": "Aquawave:2:ba871e",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:dd85dd",
                        "ysrc": "Aquawave:2:bb883f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:0671ea",
                        "ysrc": "Aquawave:2:64102d",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:42584c",
                        "ysrc": "Aquawave:2:b03dcb",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:01b3a3",
                        "ysrc": "Aquawave:2:9a215e",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:cfc17c",
                        "ysrc": "Aquawave:2:8fffd6",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:4840ac",
                        "ysrc": "Aquawave:2:30b6f8",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:3e6a71",
                        "ysrc": "Aquawave:2:502c92",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c0a5ca",
                        "ysrc": "Aquawave:2:caac4b",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c81c84",
                        "ysrc": "Aquawave:2:dc25d2",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:2518fb",
                        "ysrc": "Aquawave:2:0362a1",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b55a58",
                        "ysrc": "Aquawave:2:d3833b",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:bd918a",
                        "ysrc": "Aquawave:2:2d0847",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:df45bb",
                        "ysrc": "Aquawave:2:e75ffe",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:b23ba8",
                        "ysrc": "Aquawave:2:3038cf",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:d454bf",
                        "ysrc": "Aquawave:2:05d432",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:c1f67b",
                        "ysrc": "Aquawave:2:f2a637",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:da59f1",
                        "ysrc": "Aquawave:2:5d592f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:155ce8",
                        "ysrc": "Aquawave:2:b6d489",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:2:5490b4",
                        "ysrc": "Aquawave:2:423abe",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10,
                        "color": "#fff"
                    },
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.9450000000000001,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "height": 1200,
                    "margin": {
                        "b": 20,
                        "t": 20
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis7": {
                        "anchor": "y7",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis8": {
                        "anchor": "y8",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.8099999999999999,
                            0.865
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.675,
                            0.73
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.54,
                            0.595
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.40499999999999997,
                            0.45999999999999996
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.27,
                            0.325
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis7": {
                        "anchor": "x7",
                        "domain": [
                            0.135,
                            0.19
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis8": {
                        "anchor": "x8",
                        "domain": [
                            0.0,
                            0.05499999999999999
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "2010",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.865,
                            "font": {
                                "size": 16
                            },
                            "text": "2011",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.73,
                            "font": {
                                "size": 16
                            },
                            "text": "2012",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.595,
                            "font": {
                                "size": 16
                            },
                            "text": "2013",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.45999999999999996,
                            "font": {
                                "size": 16
                            },
                            "text": "2014",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.325,
                            "font": {
                                "size": 16
                            },
                            "text": "2015",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.19,
                            "font": {
                                "size": 16
                            },
                            "text": "2016",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.05499999999999999,
                            "font": {
                                "size": 16
                            },
                            "text": "2017",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "#333",
                    "paper_bgcolor": "#333"
                }
            },
            "height": 1200,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Aquawave",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-29 04:00:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Aquawave",
                "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-29T04:06:49.323943Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Aquawave/1.embed",
            "fid": "Aquawave:1",
            "filename": "basic-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Aquawave:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Aquawave:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/Aquawave:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/Aquawave:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Aquawave:1",
                "plots": "https://api.plotly.com/v2/plots/Aquawave:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Aquawave"
            },
            "owner": "Aquawave",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~Aquawave/1/",
            "world_readable": true,
            "date_modified": "2024-04-29T04:06:49.336Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Aquawave/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "2010",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:0:53691e",
                        "ygap": 1,
                        "ysrc": "Aquawave:0:17cd05",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:0:5c2d39",
                        "xaxis": "x",
                        "yaxis": "y",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:0:cbe96e",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a525c3",
                        "ysrc": "Aquawave:0:43ee67",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5d3e89",
                        "ysrc": "Aquawave:0:85e3cf",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d36373",
                        "ysrc": "Aquawave:0:0266c0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:2277c0",
                        "ysrc": "Aquawave:0:a960f0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d4215a",
                        "ysrc": "Aquawave:0:e2c9e6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1fe2ae",
                        "ysrc": "Aquawave:0:841f27",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:c50816",
                        "ysrc": "Aquawave:0:dbfe18",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b67b63",
                        "ysrc": "Aquawave:0:bdb87d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:62a3eb",
                        "ysrc": "Aquawave:0:2760ab",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a44dfe",
                        "ysrc": "Aquawave:0:7f944d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:91309a",
                        "ysrc": "Aquawave:0:8206c6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:4fee38",
                        "ysrc": "Aquawave:0:de7e04",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f01818",
                        "ysrc": "Aquawave:0:e98a2e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:337fc6",
                        "ysrc": "Aquawave:0:f08367",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d3c026",
                        "ysrc": "Aquawave:0:443200",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:552222",
                        "ysrc": "Aquawave:0:6c5850",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:0cb595",
                        "ysrc": "Aquawave:0:9071a5",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1efba3",
                        "ysrc": "Aquawave:0:c5ae45",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:552675",
                        "ysrc": "Aquawave:0:62bff9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:884aee",
                        "ysrc": "Aquawave:0:ca6454",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:641998",
                        "ysrc": "Aquawave:0:a49acf",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7296ce",
                        "ysrc": "Aquawave:0:9f4e56",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:e18e49",
                        "ysrc": "Aquawave:0:90feab",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:67b3dc",
                        "ysrc": "Aquawave:0:a2f459",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:23e346",
                        "ysrc": "Aquawave:0:534386",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ac3f4a",
                        "ysrc": "Aquawave:0:815ea0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:6c68fc",
                        "ysrc": "Aquawave:0:c3a84b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:31b93d",
                        "ysrc": "Aquawave:0:c3de8a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:dbb080",
                        "ysrc": "Aquawave:0:e466dc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:2e5a52",
                        "ysrc": "Aquawave:0:842522",
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2011",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:0:713a22",
                        "ygap": 1,
                        "ysrc": "Aquawave:0:f3b8ff",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:0:89ce79",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:0:0b8c2f",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:93246c",
                        "ysrc": "Aquawave:0:0c0fbb",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:47b10a",
                        "ysrc": "Aquawave:0:5ebd31",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:900bc8",
                        "ysrc": "Aquawave:0:4b1002",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:871218",
                        "ysrc": "Aquawave:0:b8e5bc",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:58f80f",
                        "ysrc": "Aquawave:0:c5176e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ba9f06",
                        "ysrc": "Aquawave:0:161b2a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:0b56bc",
                        "ysrc": "Aquawave:0:e8d454",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:6206e4",
                        "ysrc": "Aquawave:0:a94d91",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f027a8",
                        "ysrc": "Aquawave:0:54eb3b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b0b30a",
                        "ysrc": "Aquawave:0:b46a1b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:64568a",
                        "ysrc": "Aquawave:0:ef27a3",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:0b9108",
                        "ysrc": "Aquawave:0:7e9563",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9015d7",
                        "ysrc": "Aquawave:0:7f1864",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:99adc0",
                        "ysrc": "Aquawave:0:40a5f0",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1d5ac8",
                        "ysrc": "Aquawave:0:e304d6",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7d7ee7",
                        "ysrc": "Aquawave:0:baf4b0",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1c0f41",
                        "ysrc": "Aquawave:0:0497fd",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5c0d9a",
                        "ysrc": "Aquawave:0:24ea13",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:415e72",
                        "ysrc": "Aquawave:0:9fac68",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d88ac7",
                        "ysrc": "Aquawave:0:203ae7",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:dae52d",
                        "ysrc": "Aquawave:0:4ef07f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:e47919",
                        "ysrc": "Aquawave:0:099e17",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d2456c",
                        "ysrc": "Aquawave:0:e58844",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ac0013",
                        "ysrc": "Aquawave:0:f0f936",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:eb7f84",
                        "ysrc": "Aquawave:0:d1f1b5",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:8702ee",
                        "ysrc": "Aquawave:0:76147f",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:715b0a",
                        "ysrc": "Aquawave:0:ead3de",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f524ff",
                        "ysrc": "Aquawave:0:67d3b0",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:933fe7",
                        "ysrc": "Aquawave:0:673aa5",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:0dadaf",
                        "ysrc": "Aquawave:0:69b933",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9feaf4",
                        "ysrc": "Aquawave:0:a704b4",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:df4972",
                        "ysrc": "Aquawave:0:f39588",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:714f0f",
                        "ysrc": "Aquawave:0:61456b",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:906bad",
                        "ysrc": "Aquawave:0:2f2d2c",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2012",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:0:80f6d6",
                        "ygap": 1,
                        "ysrc": "Aquawave:0:c50da4",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:0:c9b3ee",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:0:42613e",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d637b6",
                        "ysrc": "Aquawave:0:653838",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:46ae75",
                        "ysrc": "Aquawave:0:4b2077",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:488c2f",
                        "ysrc": "Aquawave:0:44299c",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:e4c1b4",
                        "ysrc": "Aquawave:0:03678d",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:506291",
                        "ysrc": "Aquawave:0:8874b9",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:97ad67",
                        "ysrc": "Aquawave:0:e113c2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:20e8f2",
                        "ysrc": "Aquawave:0:01c9d0",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:14189c",
                        "ysrc": "Aquawave:0:6743a1",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b46faf",
                        "ysrc": "Aquawave:0:d6a563",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:54a846",
                        "ysrc": "Aquawave:0:6ae7f5",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:347ead",
                        "ysrc": "Aquawave:0:fa3b24",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f4a361",
                        "ysrc": "Aquawave:0:af5353",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:2bd960",
                        "ysrc": "Aquawave:0:ca6c18",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ef0443",
                        "ysrc": "Aquawave:0:d1b8b1",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:48b833",
                        "ysrc": "Aquawave:0:7a3b04",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:e6556b",
                        "ysrc": "Aquawave:0:6df3ca",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:2f6d77",
                        "ysrc": "Aquawave:0:f6801c",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:dc67bb",
                        "ysrc": "Aquawave:0:457966",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:8ea2ea",
                        "ysrc": "Aquawave:0:6bbcba",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:131be7",
                        "ysrc": "Aquawave:0:693db2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:49e7cb",
                        "ysrc": "Aquawave:0:9572b0",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:4e33a0",
                        "ysrc": "Aquawave:0:3f70ac",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a39406",
                        "ysrc": "Aquawave:0:d48128",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:08b8ea",
                        "ysrc": "Aquawave:0:000409",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b4ba94",
                        "ysrc": "Aquawave:0:f3b292",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:38f0a6",
                        "ysrc": "Aquawave:0:32bee2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:736c39",
                        "ysrc": "Aquawave:0:b6bf54",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:3bdc52",
                        "ysrc": "Aquawave:0:a477dd",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:4be673",
                        "ysrc": "Aquawave:0:66a286",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:e9dab6",
                        "ysrc": "Aquawave:0:def1ef",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d30ba5",
                        "ysrc": "Aquawave:0:c9e387",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:347085",
                        "ysrc": "Aquawave:0:c205dd",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9fda99",
                        "ysrc": "Aquawave:0:81e6af",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:465034",
                        "ysrc": "Aquawave:0:d2c524",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2013",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:0:bb8711",
                        "ygap": 1,
                        "ysrc": "Aquawave:0:478b8a",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:0:6e9a46",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:0:d3a4db",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:02c2a2",
                        "ysrc": "Aquawave:0:805186",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7da482",
                        "ysrc": "Aquawave:0:e2bf6f",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7c1dad",
                        "ysrc": "Aquawave:0:5f4598",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:c078b6",
                        "ysrc": "Aquawave:0:f83e6d",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ea00bd",
                        "ysrc": "Aquawave:0:f1ec99",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7e5fc3",
                        "ysrc": "Aquawave:0:90371b",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:8be8c5",
                        "ysrc": "Aquawave:0:3478a6",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a1b8f5",
                        "ysrc": "Aquawave:0:61b5d8",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:6c43da",
                        "ysrc": "Aquawave:0:a77eaf",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a3a20d",
                        "ysrc": "Aquawave:0:e1d030",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:e0e111",
                        "ysrc": "Aquawave:0:802d39",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b75f1b",
                        "ysrc": "Aquawave:0:32a6c4",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:528752",
                        "ysrc": "Aquawave:0:bbe61c",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9abf9f",
                        "ysrc": "Aquawave:0:09550e",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ce415e",
                        "ysrc": "Aquawave:0:e1589e",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:0e85ab",
                        "ysrc": "Aquawave:0:720fd0",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:35480e",
                        "ysrc": "Aquawave:0:a7dd11",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9931b0",
                        "ysrc": "Aquawave:0:1800c5",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:6c7968",
                        "ysrc": "Aquawave:0:f2fc11",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:4db190",
                        "ysrc": "Aquawave:0:e06201",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:319ee6",
                        "ysrc": "Aquawave:0:fabc48",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:0c933a",
                        "ysrc": "Aquawave:0:55f57b",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:493036",
                        "ysrc": "Aquawave:0:9d5c4b",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7502d8",
                        "ysrc": "Aquawave:0:6ce02f",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:14af32",
                        "ysrc": "Aquawave:0:7f3424",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:fd97e0",
                        "ysrc": "Aquawave:0:08723e",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a7efeb",
                        "ysrc": "Aquawave:0:f92251",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:92dbba",
                        "ysrc": "Aquawave:0:302a28",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ceeb76",
                        "ysrc": "Aquawave:0:4633ae",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:09ba7a",
                        "ysrc": "Aquawave:0:6cb34d",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b0ff28",
                        "ysrc": "Aquawave:0:739ccf",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:4028ad",
                        "ysrc": "Aquawave:0:72289e",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2014",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:0:2d988b",
                        "ygap": 1,
                        "ysrc": "Aquawave:0:516f14",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:0:f47bfc",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:0:d484f0",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:c3032e",
                        "ysrc": "Aquawave:0:96d4ef",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9f785c",
                        "ysrc": "Aquawave:0:792169",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:95104e",
                        "ysrc": "Aquawave:0:7c1885",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:90aeea",
                        "ysrc": "Aquawave:0:49c97f",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:32d4fd",
                        "ysrc": "Aquawave:0:7c35b5",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9d1f99",
                        "ysrc": "Aquawave:0:1ee9ce",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:8ea04d",
                        "ysrc": "Aquawave:0:805e2c",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:fdbb1c",
                        "ysrc": "Aquawave:0:58cc0a",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:90abca",
                        "ysrc": "Aquawave:0:04ca1b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:8f6dfb",
                        "ysrc": "Aquawave:0:3815b1",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:019d62",
                        "ysrc": "Aquawave:0:c75c8a",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1d0920",
                        "ysrc": "Aquawave:0:6385b2",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:56b104",
                        "ysrc": "Aquawave:0:72bd57",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:3b7667",
                        "ysrc": "Aquawave:0:a903eb",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b2aa8f",
                        "ysrc": "Aquawave:0:23cb66",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5e5101",
                        "ysrc": "Aquawave:0:725f55",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:58e6ae",
                        "ysrc": "Aquawave:0:1454ab",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:77ab57",
                        "ysrc": "Aquawave:0:be19c4",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:06391c",
                        "ysrc": "Aquawave:0:f5773a",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d6f36e",
                        "ysrc": "Aquawave:0:528e44",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:2945f9",
                        "ysrc": "Aquawave:0:5a6dc1",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9e5a52",
                        "ysrc": "Aquawave:0:edb90a",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:634003",
                        "ysrc": "Aquawave:0:7f3067",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:20c75d",
                        "ysrc": "Aquawave:0:7e8172",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7cb70a",
                        "ysrc": "Aquawave:0:de342a",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f68f34",
                        "ysrc": "Aquawave:0:084c7b",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1d07ed",
                        "ysrc": "Aquawave:0:19a285",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f32fa3",
                        "ysrc": "Aquawave:0:073581",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:2e30c9",
                        "ysrc": "Aquawave:0:01dcd5",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:49f60a",
                        "ysrc": "Aquawave:0:297da8",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5a480c",
                        "ysrc": "Aquawave:0:c76acc",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5e6cc2",
                        "ysrc": "Aquawave:0:e5c400",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2015",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:0:904871",
                        "ygap": 1,
                        "ysrc": "Aquawave:0:c6e9de",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:0:5d001b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:0:06218e",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:508774",
                        "ysrc": "Aquawave:0:b672e0",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:34ec51",
                        "ysrc": "Aquawave:0:04101e",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:15c390",
                        "ysrc": "Aquawave:0:aabdb6",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f33637",
                        "ysrc": "Aquawave:0:f5a411",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:15c98a",
                        "ysrc": "Aquawave:0:9b9b1e",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:e75335",
                        "ysrc": "Aquawave:0:03e672",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:28d573",
                        "ysrc": "Aquawave:0:83f539",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5eda6b",
                        "ysrc": "Aquawave:0:8f8c28",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1c4a17",
                        "ysrc": "Aquawave:0:c3672b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:279147",
                        "ysrc": "Aquawave:0:ef8ba7",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:c52875",
                        "ysrc": "Aquawave:0:ea5eea",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:18a642",
                        "ysrc": "Aquawave:0:dc42da",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:472aa3",
                        "ysrc": "Aquawave:0:24c65c",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:313a66",
                        "ysrc": "Aquawave:0:d12520",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:6a7c63",
                        "ysrc": "Aquawave:0:79d06a",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9cc34f",
                        "ysrc": "Aquawave:0:fea75c",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:485a91",
                        "ysrc": "Aquawave:0:80535e",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:37ae4b",
                        "ysrc": "Aquawave:0:46bd89",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:440cea",
                        "ysrc": "Aquawave:0:84a044",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1a440a",
                        "ysrc": "Aquawave:0:bfbd22",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:dda08a",
                        "ysrc": "Aquawave:0:c122fe",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:40091d",
                        "ysrc": "Aquawave:0:7e64d8",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:0cff18",
                        "ysrc": "Aquawave:0:d316ec",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d010c4",
                        "ysrc": "Aquawave:0:20810e",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5fa81c",
                        "ysrc": "Aquawave:0:86f6fb",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:66d4b1",
                        "ysrc": "Aquawave:0:dd7994",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:bf53d4",
                        "ysrc": "Aquawave:0:23c070",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:21d1b2",
                        "ysrc": "Aquawave:0:2ebe0d",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:8abd3e",
                        "ysrc": "Aquawave:0:1bac7d",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a421de",
                        "ysrc": "Aquawave:0:2e99a0",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a826d9",
                        "ysrc": "Aquawave:0:cc5a80",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:da1cae",
                        "ysrc": "Aquawave:0:869869",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:1b4d6b",
                        "ysrc": "Aquawave:0:13f97a",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:c77e42",
                        "ysrc": "Aquawave:0:684229",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2016",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:0:e84546",
                        "ygap": 1,
                        "ysrc": "Aquawave:0:42ef29",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:0:275f04",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:0:79ce97",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:9e767a",
                        "ysrc": "Aquawave:0:4b2605",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:4a5329",
                        "ysrc": "Aquawave:0:85854e",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f99f20",
                        "ysrc": "Aquawave:0:48aab0",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:23da02",
                        "ysrc": "Aquawave:0:f1c03a",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:205e96",
                        "ysrc": "Aquawave:0:e6c881",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:6db006",
                        "ysrc": "Aquawave:0:b5efd9",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ded9ce",
                        "ysrc": "Aquawave:0:2133a7",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:c30a8a",
                        "ysrc": "Aquawave:0:1a4550",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5f95b0",
                        "ysrc": "Aquawave:0:442109",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:cc17a0",
                        "ysrc": "Aquawave:0:8ba481",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:4b4838",
                        "ysrc": "Aquawave:0:271eb5",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:c462be",
                        "ysrc": "Aquawave:0:c0d433",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:679bb5",
                        "ysrc": "Aquawave:0:4cfdca",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:618546",
                        "ysrc": "Aquawave:0:ef3d4e",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:90c913",
                        "ysrc": "Aquawave:0:5e6897",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7b8e38",
                        "ysrc": "Aquawave:0:542c8e",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:026501",
                        "ysrc": "Aquawave:0:186770",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:dad138",
                        "ysrc": "Aquawave:0:23e577",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:60dd26",
                        "ysrc": "Aquawave:0:96ff89",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:489119",
                        "ysrc": "Aquawave:0:33d6bb",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:d41505",
                        "ysrc": "Aquawave:0:a771b3",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:53e48b",
                        "ysrc": "Aquawave:0:811cd2",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:8f90da",
                        "ysrc": "Aquawave:0:2acdc2",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:565135",
                        "ysrc": "Aquawave:0:937840",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b22d36",
                        "ysrc": "Aquawave:0:30ebef",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:8d9f7b",
                        "ysrc": "Aquawave:0:ab0937",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:78b940",
                        "ysrc": "Aquawave:0:e1742b",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a19ce2",
                        "ysrc": "Aquawave:0:498fe6",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:5f17f0",
                        "ysrc": "Aquawave:0:40824b",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7279ca",
                        "ysrc": "Aquawave:0:294302",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:41f4be",
                        "ysrc": "Aquawave:0:1c795f",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b74757",
                        "ysrc": "Aquawave:0:fd2952",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "hoverinfo": "skip"
                    },
                    {
                        "name": "2017",
                        "type": "heatmap",
                        "xgap": 1,
                        "xsrc": "Aquawave:0:b715ba",
                        "ygap": 1,
                        "ysrc": "Aquawave:0:e6a42b",
                        "zmax": 10,
                        "zmin": 1,
                        "zsrc": "Aquawave:0:665e05",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(247,252,245)"
                            ],
                            [
                                0.125,
                                "rgb(229,245,224)"
                            ],
                            [
                                0.25,
                                "rgb(199,233,192)"
                            ],
                            [
                                0.375,
                                "rgb(161,217,155)"
                            ],
                            [
                                0.5,
                                "rgb(116,196,118)"
                            ],
                            [
                                0.625,
                                "rgb(65,171,93)"
                            ],
                            [
                                0.75,
                                "rgb(35,139,69)"
                            ],
                            [
                                0.875,
                                "rgb(0,109,44)"
                            ],
                            [
                                1.0,
                                "rgb(0,68,27)"
                            ]
                        ],
                        "customdatasrc": "Aquawave:0:c4e2ae",
                        "hovertemplate": "%{customdata[0]} <br>Week=%{x} <br>%{customdata[1]}=%{z}"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:452494",
                        "ysrc": "Aquawave:0:821a5f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:266058",
                        "ysrc": "Aquawave:0:70b733",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:6836ff",
                        "ysrc": "Aquawave:0:2678c9",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:04a1cb",
                        "ysrc": "Aquawave:0:49d782",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:54d2f9",
                        "ysrc": "Aquawave:0:3b271b",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:592f51",
                        "ysrc": "Aquawave:0:705e44",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b27307",
                        "ysrc": "Aquawave:0:f7bbf2",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:84bccc",
                        "ysrc": "Aquawave:0:1851be",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:2a87e7",
                        "ysrc": "Aquawave:0:7c948a",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:86c67e",
                        "ysrc": "Aquawave:0:9bf5cd",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:dd937c",
                        "ysrc": "Aquawave:0:b80fac",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:6c0e8c",
                        "ysrc": "Aquawave:0:026628",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:128a2a",
                        "ysrc": "Aquawave:0:2bc0ea",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:372857",
                        "ysrc": "Aquawave:0:ccd749",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:042afd",
                        "ysrc": "Aquawave:0:098aa2",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:b1973d",
                        "ysrc": "Aquawave:0:7f79ee",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a05581",
                        "ysrc": "Aquawave:0:e9c716",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:f11e8a",
                        "ysrc": "Aquawave:0:71736c",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:3af27e",
                        "ysrc": "Aquawave:0:9d6487",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:74c78a",
                        "ysrc": "Aquawave:0:8a2adc",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:a014f8",
                        "ysrc": "Aquawave:0:dff667",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:3eb2b6",
                        "ysrc": "Aquawave:0:6b8803",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:338ea1",
                        "ysrc": "Aquawave:0:2ba566",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:937517",
                        "ysrc": "Aquawave:0:c7b33a",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:854fa3",
                        "ysrc": "Aquawave:0:3886f2",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:58d60c",
                        "ysrc": "Aquawave:0:e62e13",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:07fb63",
                        "ysrc": "Aquawave:0:1cbcd5",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:7c377a",
                        "ysrc": "Aquawave:0:ff93d7",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:ad2654",
                        "ysrc": "Aquawave:0:ee464f",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:c7eeec",
                        "ysrc": "Aquawave:0:de7d02",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:97000e",
                        "ysrc": "Aquawave:0:d43fee",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:cac12c",
                        "ysrc": "Aquawave:0:2124c5",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:2d3565",
                        "ysrc": "Aquawave:0:24adb9",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    },
                    {
                        "line": {
                            "color": "#1863db",
                            "width": 3
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Aquawave:0:efee48",
                        "ysrc": "Aquawave:0:8b1a59",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "hoverinfo": "skip"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10,
                        "color": "#fff"
                    },
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.9450000000000001,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "height": 1200,
                    "margin": {
                        "b": 20,
                        "t": 20
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis7": {
                        "anchor": "y7",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "xaxis8": {
                        "anchor": "y8",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "January",
                            "February",
                            "March",
                            "April",
                            "May",
                            "June",
                            "July",
                            "August",
                            "September",
                            "October",
                            "November",
                            "December"
                        ],
                        "tickvals": [
                            1.5,
                            5.909090909090909,
                            10.318181818181818,
                            14.727272727272727,
                            19.136363636363637,
                            23.545454545454547,
                            27.954545454545453,
                            32.36363636363636,
                            36.77272727272727,
                            41.18181818181818,
                            45.59090909090909,
                            50.0
                        ],
                        "zeroline": false
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.8099999999999999,
                            0.865
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.675,
                            0.73
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.54,
                            0.595
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.40499999999999997,
                            0.45999999999999996
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.27,
                            0.325
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis7": {
                        "anchor": "x7",
                        "domain": [
                            0.135,
                            0.19
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "yaxis8": {
                        "anchor": "x8",
                        "domain": [
                            0.0,
                            0.05499999999999999
                        ],
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "array",
                        "ticktext": [
                            "Mon",
                            "Tue",
                            "Wed",
                            "Thu",
                            "Fri",
                            "Sat",
                            "Sun"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6
                        ],
                        "zeroline": false,
                        "autorange": "reversed"
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 1.0,
                            "font": {
                                "size": 16
                            },
                            "text": "2010",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.865,
                            "font": {
                                "size": 16
                            },
                            "text": "2011",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.73,
                            "font": {
                                "size": 16
                            },
                            "text": "2012",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.595,
                            "font": {
                                "size": 16
                            },
                            "text": "2013",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.45999999999999996,
                            "font": {
                                "size": 16
                            },
                            "text": "2014",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.325,
                            "font": {
                                "size": 16
                            },
                            "text": "2015",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.19,
                            "font": {
                                "size": 16
                            },
                            "text": "2016",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5,
                            "y": 0.05499999999999999,
                            "font": {
                                "size": 16
                            },
                            "text": "2017",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "#333",
                    "paper_bgcolor": "#333"
                }
            },
            "height": 1200,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Aquawave",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/4.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-29 04:00:19",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Aquawave",
                "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-29T02:32:47.059005Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~aleps/88.embed",
            "fid": "aleps:88",
            "filename": "Sankey Test0b",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/aleps/88/9_Z7DWVDXR7BMVXK81AAZY5YQA0I1UFR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/aleps/88/2_SNTX6VFBSODZHIPNZ2F1M6RAVPB6KO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/aleps/88/8_T9ZQMQLM9JM5WFQPRLZH2RIJT9ONSH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/aleps/88/9_Z7DWVDXR7BMVXK81AAZY5YQA0I1UFR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/aleps:88",
                "plots": "https://api.plotly.com/v2/plots/aleps:88",
                "parent": "https://api.plotly.com/v2/folders/home?user=aleps"
            },
            "owner": "aleps",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~aleps/88/",
            "world_readable": true,
            "date_modified": "2024-04-29T15:06:42.492Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~aleps/88/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "meta": {
                                "columnNames": {
                                    "value": "Value",
                                    "source": "Source",
                                    "target": "Target"
                                }
                            },
                            "valuesrc": "aleps:87:b5769b",
                            "sourcesrc": "aleps:87:b9da21",
                            "targetsrc": "aleps:87:116f29"
                        },
                        "meta": {
                            "columnNames": {
                                "link": {
                                    "value": "Value",
                                    "source": "Source",
                                    "target": "Target"
                                },
                                "node": {
                                    "x": "XPOS",
                                    "y": "YPOS",
                                    "color": "Color",
                                    "label": "Label"
                                }
                            }
                        },
                        "mode": "markers",
                        "node": {
                            "meta": {
                                "columnNames": {
                                    "x": "XPOS",
                                    "y": "YPOS",
                                    "color": "Color",
                                    "label": "Label"
                                }
                            },
                            "xsrc": "aleps:86:061502",
                            "ysrc": "aleps:86:c4f279",
                            "colorsrc": "aleps:86:5eed49",
                            "labelsrc": "aleps:86:3b7151"
                        },
                        "type": "sankey"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 19
                    },
                    "title": {
                        "text": "<br>"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "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"
                    },
                    "paper_bgcolor": "rgb(242, 240, 235)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~aleps",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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": "2017-01-26 22:05:50",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "aleps",
                "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-29T01:49:21.832051Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~hsongmd/7.embed",
            "fid": "hsongmd:7",
            "filename": "SankeyDiagram3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/hsongmd/7/9_S3OS2YXVCNWCRS028V7RRCLHO48IHS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/hsongmd/7/2_5H6ZU2SFQVSBS41HZDN46PAG4ROBM4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/hsongmd/7/8_P6SR95X8YQBKAMTNAYDZO8M4VWVHDR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/hsongmd/7/9_S3OS2YXVCNWCRS028V7RRCLHO48IHS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/hsongmd:7",
                "plots": "https://api.plotly.com/v2/plots/hsongmd:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=hsongmd"
            },
            "owner": "hsongmd",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~hsongmd/7/",
            "world_readable": true,
            "date_modified": "2024-04-29T01:49:21.843Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~hsongmd/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "link": {
                            "color": "pink",
                            "valuesrc": "hsongmd:6:e19141",
                            "sourcesrc": "hsongmd:6:4931e1",
                            "targetsrc": "hsongmd:6:09bf9d"
                        },
                        "node": {
                            "pad": 15,
                            "line": {
                                "color": "black",
                                "width": 0.5
                            },
                            "colorsrc": "hsongmd:6:d81d5d",
                            "labelsrc": "hsongmd:6:52a1bd",
                            "thickness": 20
                        },
                        "type": "sankey"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 10
                    },
                    "title": {
                        "text": "Sankey Diagram of Microbe Contributions to Pathways"
                    },
                    "height": 1500,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": 1500,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~hsongmd",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-25 08:07:34",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "hsongmd",
                "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-29T01:45:18.282522Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tl2546/5.embed",
            "fid": "tl2546:5",
            "filename": "param_td3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tl2546/5/9_L4A6PZI3GNLTDGLCQ03QXLEJBX36KM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tl2546/5/2_PMH8RYWPDLQ2I9DNOTOQK6MA3N0W3O.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tl2546/5/8_C79YP2KXC9BCBO6U5LLS5YW68BXP4W.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tl2546/5/9_L4A6PZI3GNLTDGLCQ03QXLEJBX36KM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tl2546:5",
                "plots": "https://api.plotly.com/v2/plots/tl2546:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=tl2546"
            },
            "owner": "tl2546",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~tl2546/5/",
            "world_readable": true,
            "date_modified": "2024-04-29T01:45:18.293Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tl2546/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Objective Value",
                        "type": "bar",
                        "xsrc": "tl2546:4:bd7516",
                        "ysrc": "tl2546:4:07ceac",
                        "textsrc": "tl2546:4:72ccb1",
                        "cliponaxis": false,
                        "orientation": "h",
                        "textposition": "outside",
                        "hovertemplatesrc": "tl2546:4:7f18f5"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Hyperparameter Importances"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Hyperparameter Importance"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Hyperparameter"
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tl2546",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-28 23:48:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tl2546",
                "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-29T01:45:15.052156Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tl2546/3.embed",
            "fid": "tl2546:3",
            "filename": "op_td3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tl2546/3/9_3B89T1Y1E7WUT15D6P69J51XR4U2ZL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tl2546/3/2_A7B2SH0TSOGLATZ8QOQTJMUR1YHR3E.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tl2546/3/8_9HGIR8NHES2413801W10DZ091ZK9L5.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tl2546/3/9_3B89T1Y1E7WUT15D6P69J51XR4U2ZL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tl2546:3",
                "plots": "https://api.plotly.com/v2/plots/tl2546:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=tl2546"
            },
            "owner": "tl2546",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~tl2546/3/",
            "world_readable": true,
            "date_modified": "2024-04-29T01:45:15.065Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tl2546/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "Objective Value",
                        "type": "scatter",
                        "xsrc": "tl2546:2:9dee2f",
                        "ysrc": "tl2546:2:5c8b18"
                    },
                    {
                        "mode": "lines",
                        "name": "Best Value",
                        "type": "scatter",
                        "xsrc": "tl2546:2:28f940",
                        "ysrc": "tl2546:2:59bf19"
                    },
                    {
                        "mode": "markers",
                        "name": "Infeasible Trial",
                        "type": "scatter",
                        "xsrc": "tl2546:2:675919",
                        "ysrc": "tl2546:2:bd0bdb",
                        "marker": {
                            "color": "#cccccc"
                        },
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Optimization History Plot"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Trial"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Objective Value"
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tl2546",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/28.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-28 23:48:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tl2546",
                "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-29T01:38:54.456606Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jmack/1.embed",
            "fid": "jmack:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jmack/1/9_RZKNB11QKO717QUGVOVA14RCZ7RUKH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jmack/1/2_OUI38758THA2VF7TKXQA6ATAPWU5K4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jmack/1/8_BUWJV1X2DOJPIMVOSP90DMHNSO3Q0X.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jmack/1/9_RZKNB11QKO717QUGVOVA14RCZ7RUKH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jmack:1",
                "plots": "https://api.plotly.com/v2/plots/jmack:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=jmack"
            },
            "owner": "jmack",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jmack/1/",
            "world_readable": true,
            "date_modified": "2024-04-29T01:41:28.879Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jmack/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "jmack:0:818ff2",
                        "ysrc": "jmack:0:c4a7e5",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Data"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            15.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.33333333333333337,
                            6.333333333333333
                        ],
                        "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/~jmack",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/6.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-29 01:38:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jmack",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}