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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI1LTA2LTI2KzIwJTNBNDclM0EwOC41MzYyODQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNi0yNyswMiUzQTE4JTNBMDEuNTgwOTQxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-06-27T02:18:01.580941Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~legend05070911/3.embed",
            "fid": "legend05070911:3",
            "filename": "华为网卡2*100G 线程数为4时rdma的时延数据plot",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/legend05070911:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/legend05070911:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/legend05070911/3/8_RCM0BWBZ84WY18HM6QLEYHXXDDAEVV.png",
                "list-thumb": "https://api.plotly.com/v2/files/legend05070911:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/legend05070911:3",
                "plots": "https://api.plotly.com/v2/plots/legend05070911:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=legend05070911"
            },
            "owner": "legend05070911",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~legend05070911/3/",
            "world_readable": true,
            "date_modified": "2025-06-27T04:56:00.063Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~legend05070911/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.0.x",
                                "y": "data.0.y"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "io-depth 1",
                        "type": "scatter",
                        "xsrc": "legend05070911:2:8cb16b",
                        "ysrc": "legend05070911:2:b425c5"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.1.x",
                                "y": "data.1.y"
                            }
                        },
                        "mode": "lines+markers",
                        "name": "io-depth 8",
                        "type": "scatter",
                        "xsrc": "legend05070911:2:54517a",
                        "ysrc": "legend05070911:2:93ca71",
                        "xaxis": "x"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "华为网卡2*100G 线程数为4时rdma的时延数据"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -84.832254267216,
                            1694.832254267216
                        ],
                        "title": {
                            "text": "连接数(per-thread)"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            13.684183410613088,
                            108.31581658938691
                        ],
                        "title": {
                            "text": "时延(us)"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "legend": {
                        "x": 0.5257591511327885,
                        "y": 1.197547467487647
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "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"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~legend05070911",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/33.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": "2025-06-26 13:16:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "legend05070911",
                "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": "2025-06-27T02:04:40.883697Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cjdeok/13.embed",
            "fid": "cjdeok:13",
            "filename": "Plot 13",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cjdeok/13/9_O4C3CDHZJTGC1KVZ6HSBS3ADDF1NGB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cjdeok/13/2_GVSDI4306HMQYYCY9GEDXRK3HHAVVZ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cjdeok/13/8_L1O56MGUP40AX57PBFWORI7WBWC6IF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cjdeok/13/9_O4C3CDHZJTGC1KVZ6HSBS3ADDF1NGB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cjdeok:13",
                "plots": "https://api.plotly.com/v2/plots/cjdeok:13",
                "parent": "https://api.plotly.com/v2/folders/home?user=cjdeok"
            },
            "owner": "cjdeok",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cjdeok/13/",
            "world_readable": true,
            "date_modified": "2025-06-27T02:04:40.898Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cjdeok/13/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "연도",
                                "y": " 102㎡초과"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "cjdeok:8:f81f3e",
                        "ysrc": "cjdeok:8:b30529",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "연도",
                                "y": " 60㎡이하"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "cjdeok:8:f81f3e",
                        "ysrc": "cjdeok:8:eb3f80",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "연도",
                                "y": " 60㎡초과 85㎡이하"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "cjdeok:8:f81f3e",
                        "ysrc": "cjdeok:8:0fbd6d",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "연도",
                                "y": " 85㎡초과 102㎡이하"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "cjdeok:8:f81f3e",
                        "ysrc": "cjdeok:8:cdb65f",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2015,
                            2020
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2592.401111111111,
                            4634.178888888889
                        ],
                        "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/~cjdeok",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/79.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-27 01:02:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cjdeok",
                "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": "2025-06-27T02:03:01.771003Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~vijay.karthik/3.embed",
            "fid": "vijay.karthik:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/vijay.karthik:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/vijay.karthik:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/vijay.karthik/3/8_64SBF83ACD0GLR0A0FTK4451D3Z661.png",
                "list-thumb": "https://api.plotly.com/v2/files/vijay.karthik:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/vijay.karthik:3",
                "plots": "https://api.plotly.com/v2/plots/vijay.karthik:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=vijay.karthik"
            },
            "owner": "vijay.karthik",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~vijay.karthik/3/",
            "world_readable": true,
            "date_modified": "2025-07-05T12:04:51.434Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~vijay.karthik/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Match Ball No",
                                "y": "PitchLength",
                                "z": "COF",
                                "marker": {
                                    "color": "Paceorspin"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "vijay.karthik:2:ec3234",
                        "ysrc": "vijay.karthik:2:cc1e81",
                        "zsrc": "vijay.karthik:2:d8da48",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "Paceorspin"
                                }
                            },
                            "colorsrc": "vijay.karthik:2:0f4276"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "text": "Ball No"
                            }
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "text": "Pitch Length"
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "text": "COR"
                            }
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -1.5127613750788849,
                                "y": -1.2757509812169767,
                                "z": -0.39037250739920987
                            },
                            "center": {
                                "x": 0.10580642658373043,
                                "y": 0.13439412071250442,
                                "z": -0.10889593124168719
                            },
                            "projection": {
                                "type": "orthographic"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "manual",
                        "aspectratio": {
                            "x": 2.3579476910000117,
                            "y": 2.3579476910000117,
                            "z": 2.3579476910000117
                        }
                    },
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~vijay.karthik",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.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": "2025-06-26 12:55:29",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "vijay.karthik",
                "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": "2025-06-26T23:54:02.347726Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~wooeng/1.embed",
            "fid": "wooeng:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/wooeng:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/wooeng/1/2_6Q1SJW2SW3NQ0C1ELKNZ5YMQF4SG4W.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/wooeng/1/8_6USKHYDIFKF2TO646H71KB5L55N35W.png",
                "list-thumb": "https://api.plotly.com/v2/files/wooeng:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/wooeng:1",
                "plots": "https://api.plotly.com/v2/plots/wooeng:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=wooeng"
            },
            "owner": "wooeng",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~wooeng/1/",
            "world_readable": true,
            "date_modified": "2025-06-26T23:54:02.357Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~wooeng/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "전압",
                                "y": "전류"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "wooeng:0:42a771",
                        "ysrc": "wooeng:0:7b42cf"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "전압",
                                "y": "출력"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "wooeng:0:42a771",
                        "ysrc": "wooeng:0:d3d740",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.021180789232181106,
                            1.461180789232181
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.00010750968264276831,
                            0.003641865237942768
                        ],
                        "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/~wooeng",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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": "2025-06-26 23:42:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "wooeng",
                "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": "2025-06-26T23:50:24.452624Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gtchen/11.embed",
            "fid": "gtchen:11",
            "filename": "Plot 11",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/gtchen:11/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gtchen/11/2_F32ZJSE3ZBG0O3VH0CKPXMZ35Q9259.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gtchen/11/8_8RSMEIIE96RHB3SMAVCPLGIY12I6SE.png",
                "list-thumb": "https://api.plotly.com/v2/files/gtchen:11/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gtchen:11",
                "plots": "https://api.plotly.com/v2/plots/gtchen:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=gtchen"
            },
            "owner": "gtchen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~gtchen/11/",
            "world_readable": true,
            "date_modified": "2025-06-26T23:50:24.465Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gtchen/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Baseline Kissat ",
                        "type": "scatter",
                        "xsrc": "gtchen:10:0709e1",
                        "ysrc": "gtchen:10:5f1638",
                        "marker": {
                            "opacity": 0.6
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "ML-Kissat",
                        "type": "scatter",
                        "xsrc": "gtchen:10:91f7d0",
                        "ysrc": "gtchen:10:6440f7",
                        "marker": {
                            "symbol": "diamond",
                            "opacity": 0.6
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20
                    },
                    "title": {
                        "text": "Figure 4: Baseline Kissat vs ML-Kissat"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -11.66453447050462,
                            219.66453447050463
                        ],
                        "title": {
                            "text": "Problems solved"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 1000,
                        "range": [
                            -260.8206256109482,
                            4262.820625610948
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "Time"
                        },
                        "tickmode": "linear",
                        "autorange": true
                    },
                    "images": [],
                    "legend": {
                        "x": 0.9585681914199025,
                        "y": 1
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~gtchen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.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": "2025-03-16 01:32:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gtchen",
                "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": "2025-06-26T23:47:18.037460Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gtchen/9.embed",
            "fid": "gtchen:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/gtchen:9/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gtchen/9/2_00XC89VNS64C3XL3J46Q9YNN7EWTZ6.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gtchen/9/8_Q1L94601QV9GWVFK7NAT5V6E4MEI7A.png",
                "list-thumb": "https://api.plotly.com/v2/files/gtchen:9/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gtchen:9",
                "plots": "https://api.plotly.com/v2/plots/gtchen:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=gtchen"
            },
            "owner": "gtchen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~gtchen/9/",
            "world_readable": true,
            "date_modified": "2025-06-26T23:47:18.049Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gtchen/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Baseline Glucose ",
                        "type": "scatter",
                        "xsrc": "gtchen:8:de162c",
                        "ysrc": "gtchen:8:28a9c6",
                        "marker": {
                            "size": 6,
                            "opacity": 0.6
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "ML-Glucose",
                        "type": "scatter",
                        "xsrc": "gtchen:8:53f1e2",
                        "ysrc": "gtchen:8:725147",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 180, 14)",
                            "symbol": "diamond",
                            "opacity": 0.6
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20
                    },
                    "title": {
                        "text": "Figure 3: Baseline Glucose vs ML-Glucose"
                    },
                    "xaxis": {
                        "type": "linear",
                        "dtick": 1000,
                        "range": [
                            -10.218813905930473,
                            194.21881390593046
                        ],
                        "tick0": 0,
                        "title": {
                            "text": "Problems solved"
                        },
                        "tickmode": "auto",
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "dtick": 1000,
                        "range": [
                            -258.6891495601173,
                            4262.689149560118
                        ],
                        "title": {
                            "text": "Time"
                        },
                        "tickmode": "linear",
                        "autorange": true
                    },
                    "images": [],
                    "legend": {
                        "x": 0.9585681914199025,
                        "y": 1
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "zoom",
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~gtchen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.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": "2025-03-16 01:32:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gtchen",
                "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": "2025-06-26T23:42:14.585192Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~gtchen/7.embed",
            "fid": "gtchen:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/gtchen:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/gtchen/7/2_X3OEC8N8IA7PPRLKEXZK4QDP48ZXXV.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/gtchen/7/8_PN2A66FLLL9LSOA2VTO27F9VN66HS5.png",
                "list-thumb": "https://api.plotly.com/v2/files/gtchen:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/gtchen:7",
                "plots": "https://api.plotly.com/v2/plots/gtchen:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=gtchen"
            },
            "owner": "gtchen",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~gtchen/7/",
            "world_readable": true,
            "date_modified": "2025-06-26T23:42:14.597Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~gtchen/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "Baseline Kissat ",
                        "type": "scatter",
                        "xsrc": "gtchen:6:d11c54",
                        "ysrc": "gtchen:6:5406a9",
                        "marker": {
                            "opacity": 0.6
                        }
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "ML-Kissat",
                        "type": "scatter",
                        "xsrc": "gtchen:6:edc0de",
                        "ysrc": "gtchen:6:c54207",
                        "marker": {
                            "symbol": "diamond",
                            "opacity": 0.6
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20
                    },
                    "title": {
                        "text": "Figure 4: Baseline Kissat vs ML-Kissat"
                    },
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "range": [
                            0,
                            220
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Problems solved"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": true,
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": false,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                -11.578905630452024,
                                220
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true,
                            "thickness": 0
                        },
                        "spikethickness": 20
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "dtick": 1000,
                        "range": [
                            0,
                            4000
                        ],
                        "tick0": 0,
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "Time"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": true,
                        "tickfont": {
                            "size": 20
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "tickangle": "auto",
                        "automargin": false,
                        "showspikes": false,
                        "tickformat": "",
                        "tickprefix": "",
                        "showexponent": "all",
                        "exponentformat": "none",
                        "showticklabels": true,
                        "separatethousands": false
                    },
                    "images": [],
                    "legend": {
                        "x": 0.9585681914199025,
                        "y": 1,
                        "font": {
                            "size": 20
                        },
                        "title": {
                            "font": {
                                "size": 10
                            },
                            "text": "<br>"
                        },
                        "borderwidth": 0,
                        "orientation": "v"
                    },
                    "shapes": [],
                    "autosize": true,
                    "dragmode": "select",
                    "annotations": []
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~gtchen",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/73.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": "2025-03-16 01:32:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "gtchen",
                "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": "2025-06-26T22:57:49.513025Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~4e/452.embed",
            "fid": "4e:452",
            "filename": "Plot 452",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/4e:452/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/4e/452/2_37YVCT20QMNKGUOV7TEAEYIVAA6OL8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/4e/452/8_24FF150M5CUMO2FS4D7VYEJFR6M0LJ.png",
                "list-thumb": "https://api.plotly.com/v2/files/4e:452/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/4e:452",
                "plots": "https://api.plotly.com/v2/plots/4e:452",
                "parent": "https://api.plotly.com/v2/folders/home?user=4e"
            },
            "owner": "4e",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~4e/452/",
            "world_readable": true,
            "date_modified": "2025-06-27T00:38:33.431Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~4e/452/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(99, 193, 250)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "4e:450:b65197",
                        "ysrc": "4e:450:8fbad5",
                        "visible": true,
                        "connectgaps": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "4e:450:b65197",
                        "ysrc": "4e:450:040aa9",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(231, 159, 23)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "4e:450:b65197",
                        "ysrc": "4e:450:d3ae8a",
                        "yaxis": "y2",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "bonniebonniebonniebonnie (prev. bonnieuh, baddiebonnie, bonn_ie)"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            2800
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -1277777.7777777778,
                            24277777.777777776
                        ],
                        "autorange": true
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.2777777777777778,
                            14.722222222222221
                        ],
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~4e",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/25.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-09-12 13:44:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "4e",
                "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": "2025-06-26T22:13:16.131169Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Neharnia/1.embed",
            "fid": "Neharnia:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Neharnia:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Neharnia/1/2_CERKLN2F44TM1ALR7VZVPLI9N16G63.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Neharnia/1/8_M5MGOOSX9ZLX87FKGEOAYBHAJXE5RV.png",
                "list-thumb": "https://api.plotly.com/v2/files/Neharnia:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Neharnia:1",
                "plots": "https://api.plotly.com/v2/plots/Neharnia:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Neharnia"
            },
            "owner": "Neharnia",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Neharnia/1/",
            "world_readable": true,
            "date_modified": "2025-06-26T22:13:16.142Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Neharnia/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "SHem"
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "Neharnia:0:53f0c5",
                        "ysrc": "Neharnia:0:fe1b84",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Southern Hemisphere Temperatures 1880-2014"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1879.5,
                            2014.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -52.888888888888886,
                            64.88888888888889
                        ],
                        "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/~Neharnia",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.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": "2025-06-26 21:10:46",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Neharnia",
                "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": "2025-06-26T20:47:08.536284Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~benjaleivas/43.embed",
            "fid": "benjaleivas:43",
            "filename": "schoolai_bp1_fig_9",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/benjaleivas:43/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/benjaleivas:43/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/benjaleivas:43/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/benjaleivas:43/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/benjaleivas:43",
                "plots": "https://api.plotly.com/v2/plots/benjaleivas:43",
                "parent": "https://api.plotly.com/v2/folders/home?user=benjaleivas"
            },
            "owner": "benjaleivas",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 281,
            "web_url": "https://chart-studio.plotly.com/~benjaleivas/43/",
            "world_readable": true,
            "date_modified": "2025-06-26T22:09:56.623Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~benjaleivas/43/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "regular_hover",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:90f6f3",
                        "ysrc": "benjaleivas:62:06ca1c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 0,
                            "opacity": 0
                        },
                        "visible": true,
                        "showlegend": false,
                        "customdatasrc": "benjaleivas:62:8ca88e",
                        "hovertemplate": "%{customdata}<extra></extra>"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "#8c1515",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Student Chatbots",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:cfe4b8",
                        "ysrc": "benjaleivas:62:144fe6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": true,
                        "fillcolor": "#8c1515",
                        "hoverinfo": "skip",
                        "legendrank": 6,
                        "stackgroup": "one_time_regular",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#faa54a",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Teacher Productivity Tools",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:80697a",
                        "ysrc": "benjaleivas:62:508bc2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": true,
                        "fillcolor": "#faa54a",
                        "hoverinfo": "skip",
                        "legendrank": 5,
                        "stackgroup": "one_time_regular",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#009ab4",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Teacher Chatbot Assistants",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:0889d2",
                        "ysrc": "benjaleivas:62:ae10de",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": true,
                        "fillcolor": "#009ab4",
                        "hoverinfo": "skip",
                        "legendrank": 4,
                        "stackgroup": "one_time_regular",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#2e5d54",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Reference Materials",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:9328cc",
                        "ysrc": "benjaleivas:62:64cb8f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": true,
                        "fillcolor": "#2e5d54",
                        "hoverinfo": "skip",
                        "legendrank": 3,
                        "stackgroup": "one_time_regular",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#590c56",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Homepage/Auth",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:a19897",
                        "ysrc": "benjaleivas:62:dd5674",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": true,
                        "fillcolor": "#590c56",
                        "hoverinfo": "skip",
                        "legendrank": 2,
                        "stackgroup": "one_time_regular",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#005e87",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Other",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:12b985",
                        "ysrc": "benjaleivas:62:83b91d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": true,
                        "fillcolor": "#005e87",
                        "hoverinfo": "skip",
                        "legendrank": 1,
                        "stackgroup": "one_time_regular",
                        "legendgroup": "category_legend"
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:bc108c",
                        "ysrc": "benjaleivas:62:bf2ef8",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:2d4479",
                        "ysrc": "benjaleivas:62:81ec8a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:f5ffd4",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f42e4d",
                        "ysrc": "benjaleivas:62:ad4c76",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c675cf",
                        "ysrc": "benjaleivas:62:06ad2a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:84522c",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:64cd5d",
                        "ysrc": "benjaleivas:62:c27239",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:534a95",
                        "ysrc": "benjaleivas:62:44900d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:c838d1",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f271d9",
                        "ysrc": "benjaleivas:62:bd26a6",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:341907",
                        "ysrc": "benjaleivas:62:92725e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:0d8bf0",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:575ab7",
                        "ysrc": "benjaleivas:62:0a74ca",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:249649",
                        "ysrc": "benjaleivas:62:b59982",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:034169",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ee9072",
                        "ysrc": "benjaleivas:62:2e449f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:908500",
                        "ysrc": "benjaleivas:62:a3caf0",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:957baf",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:5296d8",
                        "ysrc": "benjaleivas:62:c06b39",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:50f15d",
                        "ysrc": "benjaleivas:62:8756fc",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:351224",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:39ecff",
                        "ysrc": "benjaleivas:62:7a29cb",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:57da68",
                        "ysrc": "benjaleivas:62:a22514",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:488cd2",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:5ce32e",
                        "ysrc": "benjaleivas:62:28682c",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:6e749a",
                        "ysrc": "benjaleivas:62:b95e7c",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:3f4e18",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:37d68f",
                        "ysrc": "benjaleivas:62:805de8",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e41e87",
                        "ysrc": "benjaleivas:62:5fdeb5",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:02fa00",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:47f81b",
                        "ysrc": "benjaleivas:62:f3ea53",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:698584",
                        "ysrc": "benjaleivas:62:776c31",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:eba3f7",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d64194",
                        "ysrc": "benjaleivas:62:bbc8c5",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ebc592",
                        "ysrc": "benjaleivas:62:405d88",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:410bdf",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:5bd711",
                        "ysrc": "benjaleivas:62:de3023",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:55c812",
                        "ysrc": "benjaleivas:62:dc09c2",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:039851",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:4fdba8",
                        "ysrc": "benjaleivas:62:fde4fa",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:5536bf",
                        "ysrc": "benjaleivas:62:f1577d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:5662d1",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:2d828e",
                        "ysrc": "benjaleivas:62:1f7368",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:89cdd9",
                        "ysrc": "benjaleivas:62:9c880f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:465e28",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:833950",
                        "ysrc": "benjaleivas:62:94ac88",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:69c1d4",
                        "ysrc": "benjaleivas:62:c2ca16",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:51d23f",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9301b4",
                        "ysrc": "benjaleivas:62:63e150",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:194638",
                        "ysrc": "benjaleivas:62:c7bd76",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:28bf6f",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:adf216",
                        "ysrc": "benjaleivas:62:49ebbb",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:4d421f",
                        "ysrc": "benjaleivas:62:e1dda2",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:8fe949",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c3cabe",
                        "ysrc": "benjaleivas:62:6e6ba5",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9e807a",
                        "ysrc": "benjaleivas:62:81df2c",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:13b4b9",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:475aea",
                        "ysrc": "benjaleivas:62:9ba866",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:8c0586",
                        "ysrc": "benjaleivas:62:572273",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:1fb942",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:454d7e",
                        "ysrc": "benjaleivas:62:e05505",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:695a55",
                        "ysrc": "benjaleivas:62:5a636d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:3d5233",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:2c0182",
                        "ysrc": "benjaleivas:62:393f55",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:643802",
                        "ysrc": "benjaleivas:62:3c4ddd",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:6123ae",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b29298",
                        "ysrc": "benjaleivas:62:4fd585",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f95576",
                        "ysrc": "benjaleivas:62:4c7322",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:6d3fd6",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d24ad6",
                        "ysrc": "benjaleivas:62:9f37a8",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e9518b",
                        "ysrc": "benjaleivas:62:fe0288",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:846077",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ea826e",
                        "ysrc": "benjaleivas:62:42bcfe",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:421eff",
                        "ysrc": "benjaleivas:62:820a46",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:87a06d",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ebec31",
                        "ysrc": "benjaleivas:62:9c6cd2",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:265354",
                        "ysrc": "benjaleivas:62:667db2",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:95f5b1",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:bbcc86",
                        "ysrc": "benjaleivas:62:320cb5",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0fd1f8",
                        "ysrc": "benjaleivas:62:37b63f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:a61013",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:05ebca",
                        "ysrc": "benjaleivas:62:934642",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c04062",
                        "ysrc": "benjaleivas:62:d179c5",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:26aacb",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0431ef",
                        "ysrc": "benjaleivas:62:a2827a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:963684",
                        "ysrc": "benjaleivas:62:55d441",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:a6aebf",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:fa536f",
                        "ysrc": "benjaleivas:62:d2aa50",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ff824d",
                        "ysrc": "benjaleivas:62:b48eb5",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:a251ef",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:fcd0a7",
                        "ysrc": "benjaleivas:62:ef3455",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:dbf1e4",
                        "ysrc": "benjaleivas:62:ad58cf",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:1c4b96",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:462d12",
                        "ysrc": "benjaleivas:62:aec66d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:50087e",
                        "ysrc": "benjaleivas:62:020d42",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:fd0db1",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c411bd",
                        "ysrc": "benjaleivas:62:a10f95",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:033469",
                        "ysrc": "benjaleivas:62:75ff41",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:6c473d",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d1b474",
                        "ysrc": "benjaleivas:62:2ccadf",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9898a2",
                        "ysrc": "benjaleivas:62:501671",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:6ba8d6",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:6cb0b0",
                        "ysrc": "benjaleivas:62:b061d0",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d2740a",
                        "ysrc": "benjaleivas:62:9e8e5c",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:f427c7",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:fdf90b",
                        "ysrc": "benjaleivas:62:0202a0",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b8985d",
                        "ysrc": "benjaleivas:62:8154a6",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:75eb7f",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:86e00a",
                        "ysrc": "benjaleivas:62:4cb5db",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e621b5",
                        "ysrc": "benjaleivas:62:4de723",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:23344d",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:08b817",
                        "ysrc": "benjaleivas:62:b4aebb",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c6c6e8",
                        "ysrc": "benjaleivas:62:5d871e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:9a7347",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b8ec23",
                        "ysrc": "benjaleivas:62:688ded",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:97afaf",
                        "ysrc": "benjaleivas:62:ca152a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:177f81",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e2f0e9",
                        "ysrc": "benjaleivas:62:054477",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d7aacd",
                        "ysrc": "benjaleivas:62:f80e35",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:bc488e",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:191158",
                        "ysrc": "benjaleivas:62:de3fdd",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:1eeb7e",
                        "ysrc": "benjaleivas:62:820927",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:efd6de",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:10599d",
                        "ysrc": "benjaleivas:62:befc87",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9ca205",
                        "ysrc": "benjaleivas:62:e723e7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:f3017b",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f26995",
                        "ysrc": "benjaleivas:62:d2c51d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:78be8a",
                        "ysrc": "benjaleivas:62:476f9e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:25e05c",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:43504e",
                        "ysrc": "benjaleivas:62:e9d56f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:753166",
                        "ysrc": "benjaleivas:62:0667b8",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:1dcc1a",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:153d96",
                        "ysrc": "benjaleivas:62:e068a2",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e059f0",
                        "ysrc": "benjaleivas:62:e4d061",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:56c623",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:44676d",
                        "ysrc": "benjaleivas:62:5a7fdc",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:86f852",
                        "ysrc": "benjaleivas:62:5aae30",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:b07049",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b31db0",
                        "ysrc": "benjaleivas:62:38edc7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b9f7c8",
                        "ysrc": "benjaleivas:62:573e84",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:fcf2a4",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d36f45",
                        "ysrc": "benjaleivas:62:0d1c97",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9ec72f",
                        "ysrc": "benjaleivas:62:8789fd",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:846a31",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0b6a0a",
                        "ysrc": "benjaleivas:62:94fc3e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:3b4560",
                        "ysrc": "benjaleivas:62:5d6799",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:72b347",
                        "visible": true,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "regular_hover_bar",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:34b643",
                        "ysrc": "benjaleivas:62:48a31e",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgba(0,0,0,0)"
                        },
                        "visible": true,
                        "showlegend": false,
                        "customdatasrc": "benjaleivas:62:6b9580",
                        "hovertemplate": "<b>Day %{x}</b><br>Total Regular Users: %{customdata[1]}<br>Tracked Regular Users: %{customdata[0]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "power_hover",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:ae46e4",
                        "ysrc": "benjaleivas:62:fd597a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 0,
                            "opacity": 0
                        },
                        "visible": false,
                        "showlegend": false,
                        "customdatasrc": "benjaleivas:62:329b54",
                        "hovertemplate": "%{customdata}<extra></extra>"
                    },
                    {
                        "fill": "tozeroy",
                        "line": {
                            "color": "#8c1515",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Student Chatbots",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:59a162",
                        "ysrc": "benjaleivas:62:15f813",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": false,
                        "fillcolor": "#8c1515",
                        "hoverinfo": "skip",
                        "legendrank": 6,
                        "showlegend": false,
                        "stackgroup": "one_time_power",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#faa54a",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Teacher Productivity Tools",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:6a5275",
                        "ysrc": "benjaleivas:62:b92584",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": false,
                        "fillcolor": "#faa54a",
                        "hoverinfo": "skip",
                        "legendrank": 5,
                        "showlegend": false,
                        "stackgroup": "one_time_power",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#009ab4",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Teacher Chatbot Assistants",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:6a0106",
                        "ysrc": "benjaleivas:62:d0e4fa",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": false,
                        "fillcolor": "#009ab4",
                        "hoverinfo": "skip",
                        "legendrank": 4,
                        "showlegend": false,
                        "stackgroup": "one_time_power",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#2e5d54",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Reference Materials",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:c70fd2",
                        "ysrc": "benjaleivas:62:7bca43",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": false,
                        "fillcolor": "#2e5d54",
                        "hoverinfo": "skip",
                        "legendrank": 3,
                        "showlegend": false,
                        "stackgroup": "one_time_power",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#590c56",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Homepage/Auth",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:f4dc9c",
                        "ysrc": "benjaleivas:62:18aff6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": false,
                        "fillcolor": "#590c56",
                        "hoverinfo": "skip",
                        "legendrank": 2,
                        "showlegend": false,
                        "stackgroup": "one_time_power",
                        "legendgroup": "category_legend"
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "#005e87",
                            "width": 0
                        },
                        "mode": "none",
                        "name": "Other",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:20298b",
                        "ysrc": "benjaleivas:62:66b9d3",
                        "xaxis": "x",
                        "yaxis": "y",
                        "visible": false,
                        "fillcolor": "#005e87",
                        "hoverinfo": "skip",
                        "legendrank": 1,
                        "showlegend": false,
                        "stackgroup": "one_time_power",
                        "legendgroup": "category_legend"
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:dc7411",
                        "ysrc": "benjaleivas:62:ae6043",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:98bd9f",
                        "ysrc": "benjaleivas:62:0a4fb7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:472ed3",
                        "ysrc": "benjaleivas:62:d4b7f3",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:d38985",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0bfcac",
                        "ysrc": "benjaleivas:62:42fa5a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:fe11fe",
                        "ysrc": "benjaleivas:62:b82332",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:485627",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:721a52",
                        "ysrc": "benjaleivas:62:30fa7f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:a65e5d",
                        "ysrc": "benjaleivas:62:d2dcf7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:ba4938",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b12f3a",
                        "ysrc": "benjaleivas:62:5ed1df",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:14e8e5",
                        "ysrc": "benjaleivas:62:c6e4f4",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:f943ad",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9aba30",
                        "ysrc": "benjaleivas:62:3282e6",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c51644",
                        "ysrc": "benjaleivas:62:bce07f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:d9cce5",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:4f834c",
                        "ysrc": "benjaleivas:62:0108ed",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:fbd48e",
                        "ysrc": "benjaleivas:62:58db06",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:ab156b",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:a6a286",
                        "ysrc": "benjaleivas:62:c0fe14",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:352124",
                        "ysrc": "benjaleivas:62:5ec322",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:24e17e",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:2aee28",
                        "ysrc": "benjaleivas:62:16c92e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:eb5dd9",
                        "ysrc": "benjaleivas:62:bacd46",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:2f1ddd",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:294271",
                        "ysrc": "benjaleivas:62:35154f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:241f93",
                        "ysrc": "benjaleivas:62:883d1c",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:530df7",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d08231",
                        "ysrc": "benjaleivas:62:46720f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:282ff3",
                        "ysrc": "benjaleivas:62:84b845",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:788a9a",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:eb4ab3",
                        "ysrc": "benjaleivas:62:bd123a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:3fb096",
                        "ysrc": "benjaleivas:62:dc1d21",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:983ca5",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:150b50",
                        "ysrc": "benjaleivas:62:4d8ed0",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b828f1",
                        "ysrc": "benjaleivas:62:db38db",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:874abc",
                        "ysrc": "benjaleivas:62:931c55",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:9cfc25",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:6505db",
                        "ysrc": "benjaleivas:62:9eb561",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:fcedbc",
                        "ysrc": "benjaleivas:62:7d1de7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:6c49c6",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:41099f",
                        "ysrc": "benjaleivas:62:4ade53",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:21e944",
                        "ysrc": "benjaleivas:62:4af5ee",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:c28f99",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:57fa6a",
                        "ysrc": "benjaleivas:62:57597b",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:adfb6f",
                        "ysrc": "benjaleivas:62:4584c8",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:ab069d",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:6167e0",
                        "ysrc": "benjaleivas:62:468bf6",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:87fe46",
                        "ysrc": "benjaleivas:62:301211",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:aaed14",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:8f2ee8",
                        "ysrc": "benjaleivas:62:3a14a1",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:8d6093",
                        "ysrc": "benjaleivas:62:16db91",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:4ed2a2",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:8ac6d0",
                        "ysrc": "benjaleivas:62:f45aaa",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:48e88d",
                        "ysrc": "benjaleivas:62:ece510",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:ea9982",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e5cc78",
                        "ysrc": "benjaleivas:62:2d2b7d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f1c9c2",
                        "ysrc": "benjaleivas:62:0e14be",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:40eb49",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c473e4",
                        "ysrc": "benjaleivas:62:731e3f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:a97cdc",
                        "ysrc": "benjaleivas:62:84557e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:c9614e",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0d105c",
                        "ysrc": "benjaleivas:62:33cfb1",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f5abf1",
                        "ysrc": "benjaleivas:62:336452",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:d5732d",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:244278",
                        "ysrc": "benjaleivas:62:ab6883",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0b8643",
                        "ysrc": "benjaleivas:62:27a11f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:c98ca0",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9b6d52",
                        "ysrc": "benjaleivas:62:b57ba8",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0d3bea",
                        "ysrc": "benjaleivas:62:9f70ed",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:8359d0",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b7f443",
                        "ysrc": "benjaleivas:62:d98ff7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:564b01",
                        "ysrc": "benjaleivas:62:5c3a73",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:1ed3ba",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ba025b",
                        "ysrc": "benjaleivas:62:bfbb77",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d79e10",
                        "ysrc": "benjaleivas:62:44ea4a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:aa1b30",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:be6896",
                        "ysrc": "benjaleivas:62:9b527b",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:94150b",
                        "ysrc": "benjaleivas:62:be3a97",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:06d0dd",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f7a334",
                        "ysrc": "benjaleivas:62:de2e81",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d85f2f",
                        "ysrc": "benjaleivas:62:8fd8c9",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:1824ce",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:dbbba9",
                        "ysrc": "benjaleivas:62:0cf79f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d9d65b",
                        "ysrc": "benjaleivas:62:58741f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:a8e4ec",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f027a7",
                        "ysrc": "benjaleivas:62:7f9f7b",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:10d99c",
                        "ysrc": "benjaleivas:62:82ae96",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:88e804",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:486510",
                        "ysrc": "benjaleivas:62:ad20dd",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:105c01",
                        "ysrc": "benjaleivas:62:45ca85",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:386ed4",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:3ee431",
                        "ysrc": "benjaleivas:62:76d63c",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:427f80",
                        "ysrc": "benjaleivas:62:3ce78c",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:50cef0",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:777c3f",
                        "ysrc": "benjaleivas:62:4fbbce",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:8be25f",
                        "ysrc": "benjaleivas:62:82f439",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:523016",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ef09a9",
                        "ysrc": "benjaleivas:62:ef12a0",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:2fbab2",
                        "ysrc": "benjaleivas:62:b23bed",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:e05a94",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:846d41",
                        "ysrc": "benjaleivas:62:e8a32d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:5003a4",
                        "ysrc": "benjaleivas:62:544e93",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:c49a33",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:aa09e5",
                        "ysrc": "benjaleivas:62:16ad75",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:4ba25d",
                        "ysrc": "benjaleivas:62:c142bd",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:0b8da9",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:3c662d",
                        "ysrc": "benjaleivas:62:a7cb24",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0abb78",
                        "ysrc": "benjaleivas:62:8901e3",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:9d2a0b",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e6f832",
                        "ysrc": "benjaleivas:62:80cc08",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:988d8c",
                        "ysrc": "benjaleivas:62:88427d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:530ce7",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:14a6fc",
                        "ysrc": "benjaleivas:62:981163",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:1cd9f7",
                        "ysrc": "benjaleivas:62:3e544b",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:cecd2f",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:90c589",
                        "ysrc": "benjaleivas:62:180fce",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9228ed",
                        "ysrc": "benjaleivas:62:087932",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:ac42b2",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:8f200f",
                        "ysrc": "benjaleivas:62:6ca1c9",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:de78a7",
                        "ysrc": "benjaleivas:62:a2d68e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:395bb9",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:1abea4",
                        "ysrc": "benjaleivas:62:9b3eb2",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:db0ec2",
                        "ysrc": "benjaleivas:62:33a04a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:6f8141",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:81f419",
                        "ysrc": "benjaleivas:62:5e4b48",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:01d191",
                        "ysrc": "benjaleivas:62:c8f779",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:12b8d0",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:af217b",
                        "ysrc": "benjaleivas:62:ff292b",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0d1967",
                        "ysrc": "benjaleivas:62:9aef7a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:d7c6ac",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:3f00e3",
                        "ysrc": "benjaleivas:62:506283",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e80db0",
                        "ysrc": "benjaleivas:62:46a737",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:198be7",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ba9d00",
                        "ysrc": "benjaleivas:62:0f4d61",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9f6ebd",
                        "ysrc": "benjaleivas:62:7f3de2",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:333380",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:fff9b2",
                        "ysrc": "benjaleivas:62:fbdf1e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b6a4c7",
                        "ysrc": "benjaleivas:62:f44ef3",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:45d59c",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0a1013",
                        "ysrc": "benjaleivas:62:07039f",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:29652a",
                        "ysrc": "benjaleivas:62:485813",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:cf56cf",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e3edb0",
                        "ysrc": "benjaleivas:62:a9b027",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:4173fa",
                        "ysrc": "benjaleivas:62:e8df40",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:4fae4a",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:3c4e34",
                        "ysrc": "benjaleivas:62:901931",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c3c8b4",
                        "ysrc": "benjaleivas:62:ec0393",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:3b9d58",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:4752a6",
                        "ysrc": "benjaleivas:62:976152",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ca0bd7",
                        "ysrc": "benjaleivas:62:a109fc",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:ff8e3e",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:3878fd",
                        "ysrc": "benjaleivas:62:c025ec",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e8e39e",
                        "ysrc": "benjaleivas:62:a2f245",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:027691",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:da1a8e",
                        "ysrc": "benjaleivas:62:0cdc40",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b9ddf6",
                        "ysrc": "benjaleivas:62:385c92",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:664e41",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:1344bd",
                        "ysrc": "benjaleivas:62:540c22",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:64c5ab",
                        "ysrc": "benjaleivas:62:cb37c6",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:7dca5a",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:257ff5",
                        "ysrc": "benjaleivas:62:8a4ef5",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:72457e",
                        "ysrc": "benjaleivas:62:d78875",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:fab9dd",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ffa3e7",
                        "ysrc": "benjaleivas:62:299c4d",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:751a51",
                        "ysrc": "benjaleivas:62:f84bfe",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:501775",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:253b69",
                        "ysrc": "benjaleivas:62:5e55e8",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:a4f000",
                        "ysrc": "benjaleivas:62:9863af",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:ee2913",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:846e59",
                        "ysrc": "benjaleivas:62:81dcba",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f4a629",
                        "ysrc": "benjaleivas:62:ced4df",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:41a79f",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:1458c1",
                        "ysrc": "benjaleivas:62:68136e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:68e84a",
                        "ysrc": "benjaleivas:62:c1235e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:be291d",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:44fc92",
                        "ysrc": "benjaleivas:62:411326",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9ed7dd",
                        "ysrc": "benjaleivas:62:2c4d89",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:14957c",
                        "ysrc": "benjaleivas:62:ba5533",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:04d6d9",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:1a9da8",
                        "ysrc": "benjaleivas:62:90a904",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ad0cba",
                        "ysrc": "benjaleivas:62:393269",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:1924f1",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:848cf0",
                        "ysrc": "benjaleivas:62:50ec00",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:101cc7",
                        "ysrc": "benjaleivas:62:0497a7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:a747a4",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:b6b6f6",
                        "ysrc": "benjaleivas:62:f913f9",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:d869db",
                        "ysrc": "benjaleivas:62:d90785",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:7f850e",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:16492f",
                        "ysrc": "benjaleivas:62:d622a9",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:4f7175",
                        "ysrc": "benjaleivas:62:ac852a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:116377",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:fcd301",
                        "ysrc": "benjaleivas:62:fc90a6",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:f61762",
                        "ysrc": "benjaleivas:62:6ec25a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:78fe10",
                        "ysrc": "benjaleivas:62:597e11",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:a39133",
                        "ysrc": "benjaleivas:62:3a3542",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:c2adb4",
                        "ysrc": "benjaleivas:62:ddce0b",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:8285b1",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0e8d84",
                        "ysrc": "benjaleivas:62:316e4c",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:2bfdc4",
                        "ysrc": "benjaleivas:62:3a49a2",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:7a6aea",
                        "ysrc": "benjaleivas:62:432494",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:a4d9fc",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:4f854e",
                        "ysrc": "benjaleivas:62:fb4164",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:2b455d",
                        "ysrc": "benjaleivas:62:6492f1",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:974814",
                        "ysrc": "benjaleivas:62:7a44bb",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:efe315",
                        "ysrc": "benjaleivas:62:11cee0",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:1f7b82",
                        "ysrc": "benjaleivas:62:fa395b",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:1601f3",
                        "ysrc": "benjaleivas:62:e51169",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_red",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:ce1c6a",
                        "ysrc": "benjaleivas:62:9767e7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "basesrc": "benjaleivas:62:f84d07",
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:dafad1",
                        "ysrc": "benjaleivas:62:a4797a",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:0f2311",
                        "ysrc": "benjaleivas:62:1bae11",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:9f2f30",
                        "ysrc": "benjaleivas:62:ccfa92",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:551c97",
                        "ysrc": "benjaleivas:62:a3e7f7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:61272c",
                        "ysrc": "benjaleivas:62:8af3b7",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:325d2b",
                        "ysrc": "benjaleivas:62:73e541",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:98162e",
                        "ysrc": "benjaleivas:62:fd7080",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_bar_black",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:960fa0",
                        "ysrc": "benjaleivas:62:2ed44e",
                        "width": 0.8,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 1
                            },
                            "color": "white"
                        },
                        "visible": false,
                        "hoverinfo": "skip",
                        "showlegend": false
                    },
                    {
                        "name": "power_hover_bar",
                        "type": "bar",
                        "xsrc": "benjaleivas:62:e54f7a",
                        "ysrc": "benjaleivas:62:7270b2",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "color": "rgba(0,0,0,0)"
                        },
                        "visible": false,
                        "showlegend": false,
                        "customdatasrc": "benjaleivas:62:4cff60",
                        "hovertemplate": "<b>Day %{x}</b><br>Total Power Users: %{customdata[1]}<br>Tracked Power Users: %{customdata[0]}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Tracked",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:8632f7",
                        "ysrc": "benjaleivas:62:1b9d4c",
                        "legend": "legend2",
                        "marker": {
                            "line": {
                                "color": "black",
                                "width": 2
                            },
                            "size": 12,
                            "color": "white",
                            "symbol": "square"
                        },
                        "showlegend": true
                    },
                    {
                        "mode": "markers",
                        "name": "Untracked",
                        "type": "scatter",
                        "xsrc": "benjaleivas:62:7f7c79",
                        "ysrc": "benjaleivas:62:eadca4",
                        "legend": "legend2",
                        "marker": {
                            "line": {
                                "color": "red",
                                "width": 2
                            },
                            "size": 12,
                            "color": "white",
                            "symbol": "square"
                        },
                        "showlegend": true
                    }
                ],
                "layout": {
                    "width": 1000,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "matches": "x2",
                        "showticklabels": false
                    },
                    "yaxis": {
                        "range": [
                            0,
                            100
                        ],
                        "title": {
                            "text": "Share of Time (%)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.33499999999999996,
                            0.9999999999999999
                        ]
                    },
                    "height": 700,
                    "legend": {
                        "x": 1.02,
                        "y": 1.015,
                        "xanchor": "left",
                        "yanchor": "top",
                        "traceorder": "reversed+grouped",
                        "orientation": "v"
                    },
                    "margin": {
                        "b": 50,
                        "l": 50,
                        "r": 50,
                        "t": 50
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 0.3,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "layer": "below",
                            "fillcolor": "white"
                        }
                    ],
                    "xaxis2": {
                        "range": [
                            1,
                            49
                        ],
                        "title": {
                            "text": "Days Using Platform"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "showgrid": false
                    },
                    "yaxis2": {
                        "range": [
                            0,
                            4041.4000000000005
                        ],
                        "title": {
                            "text": "Active Users"
                        },
                        "anchor": "x2",
                        "domain": [
                            0.0,
                            0.285
                        ],
                        "showgrid": false,
                        "showline": true,
                        "linecolor": "black",
                        "linewidth": 1
                    },
                    "legend2": {
                        "x": 1.02,
                        "y": 0.1,
                        "xanchor": "left",
                        "orientation": "v"
                    },
                    "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
                            }
                        }
                    },
                    "hovermode": "x unified",
                    "updatemenus": [
                        {
                            "x": 0.08,
                            "y": 1.15,
                            "pad": {
                                "r": 10,
                                "t": 10
                            },
                            "type": "buttons",
                            "buttons": [
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                false,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true
                                            ]
                                        },
                                        {
                                            "xaxis2.range": [
                                                1,
                                                49
                                            ],
                                            "yaxis2.range": [
                                                0,
                                                4041.4000000000005
                                            ]
                                        }
                                    ],
                                    "label": "Regular Users",
                                    "method": "update"
                                },
                                {
                                    "args": [
                                        {
                                            "visible": [
                                                false,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                false,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true,
                                                true
                                            ]
                                        },
                                        {
                                            "xaxis2.range": [
                                                1,
                                                86
                                            ],
                                            "yaxis2.range": [
                                                0,
                                                96.80000000000001
                                            ]
                                        }
                                    ],
                                    "label": "Power Users",
                                    "method": "update"
                                }
                            ],
                            "xanchor": "center",
                            "yanchor": "top",
                            "direction": "left",
                            "showactive": true
                        }
                    ]
                }
            },
            "height": 700,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~benjaleivas",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/48.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "Data Scientist",
                "nickname": "Benjamin Leiva",
                "website": "https://github.com/benjaleivas",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-26 18:59:03",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "benjaleivas",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}