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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTAzLTMxKzE2JTNBNTUlM0EzMy40MzQzMTElMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wMy0zMSsxOCUzQTM1JTNBMjguMDkzNTY4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-03-31T18:35:28.093568Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~justinpeng2002/22.embed",
            "fid": "justinpeng2002:22",
            "filename": "Spatial Postioning 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/justinpeng2002/22/9_U1AZLD53150B0YL9J3IB87QT9W0ZH6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/justinpeng2002/22/2_F21SZ35IDLUHJUPDD5YPNCSP91NYJ2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/justinpeng2002/22/8_MMC7W8LKGIU2LLLB5UR7EZ1YMAUWKR.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/justinpeng2002/22/9_U1AZLD53150B0YL9J3IB87QT9W0ZH6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/justinpeng2002:22",
                "plots": "https://api.plotly.com/v2/plots/justinpeng2002:22",
                "parent": "https://api.plotly.com/v2/folders/home?user=justinpeng2002"
            },
            "owner": "justinpeng2002",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~justinpeng2002/22/",
            "world_readable": true,
            "date_modified": "2024-03-31T18:35:28.104Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~justinpeng2002/22/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z",
                                "marker": {
                                    "color": "x"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "justinpeng2002:4:8cd408",
                        "ysrc": "justinpeng2002:4:dfcf15",
                        "zsrc": "justinpeng2002:4:9bc3d7",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "x"
                                }
                            },
                            "colorsrc": "justinpeng2002:4:8cd408"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -2.491639340505685,
                                "y": 0.08955150104267037,
                                "z": 0.21692422330193006
                            },
                            "center": {
                                "x": 0.07451011389209013,
                                "y": -0.027566916209536114,
                                "z": -0.046943197682553964
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Spatial Positioning: Sitting Down, Standing Up, & Walking"
                    },
                    "xaxis": {
                        "range": [
                            -1,
                            6
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            4
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~justinpeng2002",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-17 19:01:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "justinpeng2002",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T18:35:16.041559Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~justinpeng2002/21.embed",
            "fid": "justinpeng2002:21",
            "filename": "Spatial Positioning 2",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/justinpeng2002/21/9_A3X3UDNG3KP5CRX34TX6TOMK1RJCEU.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/justinpeng2002/21/2_85NM0CRFTM8DB31G045LOX9RFTNDUO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/justinpeng2002/21/8_WNJTX2AT407L3OKH3XPBG1ZINE02O6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/justinpeng2002/21/9_A3X3UDNG3KP5CRX34TX6TOMK1RJCEU.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/justinpeng2002:21",
                "plots": "https://api.plotly.com/v2/plots/justinpeng2002:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=justinpeng2002"
            },
            "owner": "justinpeng2002",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~justinpeng2002/21/",
            "world_readable": true,
            "date_modified": "2024-03-31T18:35:16.051Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~justinpeng2002/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "black",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "x",
                                "y": "y",
                                "z": "z"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "justinpeng2002:20:453db5",
                        "ysrc": "justinpeng2002:20:39420a",
                        "zsrc": "justinpeng2002:20:3d0036",
                        "marker": {
                            "cmax": 12.566370614359172,
                            "cmin": 0,
                            "meta": {
                                "columnNames": {
                                    "color": "z"
                                }
                            },
                            "size": 6,
                            "cauto": true,
                            "colorsrc": "justinpeng2002:20:3d0036",
                            "colorscale": [
                                [
                                    0,
                                    "#2a3f5f"
                                ],
                                [
                                    0.2,
                                    "#A2B1C6"
                                ],
                                [
                                    0.4,
                                    "#0D76BF"
                                ],
                                [
                                    0.6,
                                    "#00cc96"
                                ],
                                [
                                    0.8,
                                    "#e6915a"
                                ],
                                [
                                    1,
                                    "#EF553B"
                                ]
                            ],
                            "reversescale": false,
                            "autocolorscale": false
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "dtick": 0.5,
                            "range": [
                                -1.062371495440084,
                                1.0624961059224267
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "X Value"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "showline": true,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "gridcolor": "rgb(194, 194, 194)",
                            "gridwidth": 5,
                            "rangemode": "normal",
                            "showbackground": false
                        },
                        "yaxis": {
                            "type": "linear",
                            "dtick": 0.5,
                            "range": [
                                -1.062466899825041,
                                1.062466899825041
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "Y Value"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "showline": true,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "gridcolor": "rgb(194, 194, 194)",
                            "gridwidth": 5,
                            "rangemode": "normal"
                        },
                        "zaxis": {
                            "type": "linear",
                            "dtick": 2,
                            "range": [
                                -0.39269908169872414,
                                12.959069696057897
                            ],
                            "tick0": 0,
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "Z Value"
                            },
                            "nticks": 0,
                            "showgrid": true,
                            "showline": true,
                            "tickmode": "auto",
                            "zeroline": false,
                            "autorange": true,
                            "gridcolor": "rgb(194, 194, 194)",
                            "gridwidth": 5,
                            "rangemode": "normal"
                        },
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 2.3520290639969152,
                                "y": 0.9123364676159835,
                                "z": 0.3912762452579216
                            },
                            "center": {
                                "x": 0.8851657633957013,
                                "y": 0.26755964895813117,
                                "z": -0.20733339281613836
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "dragmode": "turntable",
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "font": {
                            "size": 21,
                            "family": "Times New Roman"
                        },
                        "text": "Spatial Positioning During Linear Walking: Accelerometer Readings"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~justinpeng2002",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-17 19:01:25",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "justinpeng2002",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T18:12:02.209217Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~braintumor1234/9.embed",
            "fid": "braintumor1234:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/braintumor1234/9/9_BXM2QTQ4HR6C7WKBVMFMVSENA5X05W.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/braintumor1234/9/2_KWNENZXGTQAIGOJ9PRCMFDU8B2NUR5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/braintumor1234/9/8_KX241WU2H3HGEUL4CVDNEGAIUFXR2O.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/braintumor1234/9/9_BXM2QTQ4HR6C7WKBVMFMVSENA5X05W.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/braintumor1234:9",
                "plots": "https://api.plotly.com/v2/plots/braintumor1234:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=braintumor1234"
            },
            "owner": "braintumor1234",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~braintumor1234/9/",
            "world_readable": true,
            "date_modified": "2024-04-05T19:57:26.564Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~braintumor1234/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Active Learning Cycle Number",
                                "y": "Threshold=0.95 (test acc)"
                            }
                        },
                        "mode": "lines",
                        "name": "0.95 Threshold",
                        "type": "scatter",
                        "xsrc": "braintumor1234:12:eeb230",
                        "ysrc": "braintumor1234:12:70415f",
                        "visible": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Active Learning Cycle Number",
                                "y": "Threshold=0.9 (test acc)"
                            }
                        },
                        "mode": "lines",
                        "name": "0.9 Threshold",
                        "type": "scatter",
                        "xsrc": "braintumor1234:12:eeb230",
                        "ysrc": "braintumor1234:12:486c23",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Active Learning Cycle Number",
                                "y": "Threshold=0.85 (test acc)"
                            }
                        },
                        "mode": "lines",
                        "name": "0.85 Threshold",
                        "type": "scatter",
                        "xsrc": "braintumor1234:12:eeb230",
                        "ysrc": "braintumor1234:12:07fa68",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Active Learning Cycle Number",
                                "y": "Dynamic Thresholding"
                            }
                        },
                        "mode": "lines",
                        "name": "Dynamic thresholding",
                        "type": "scatter",
                        "xsrc": "braintumor1234:12:eeb230",
                        "ysrc": "braintumor1234:12:86b7aa",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            25
                        ],
                        "title": {
                            "text": "Number of Active Learning Cycle"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            29.226111111111113,
                            98.30388888888888
                        ],
                        "title": {
                            "text": "Accuracy (%)"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 0,
                        "font": {
                            "size": 10
                        },
                        "title": {
                            "font": {
                                "size": 10,
                                "family": "Arial"
                            },
                            "text": "<br>"
                        },
                        "valign": "top",
                        "yanchor": "auto",
                        "borderwidth": 0,
                        "orientation": "v"
                    },
                    "modebar": {
                        "bgcolor": "rgba(255, 255, 255, 0.5)",
                        "orientation": "h"
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(51,51,51)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(51,51,51)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "len": 0.2,
                                            "ticks": "inside",
                                            "ticklen": 6,
                                            "tickcolor": "rgb(237,237,237)",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "len": 0.2,
                                        "ticks": "inside",
                                        "ticklen": 6,
                                        "tickcolor": "rgb(237,237,237)",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "rgb(237,237,237)",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(51,51,51)"
                            },
                            "polar": {
                                "bgcolor": "rgb(237,237,237)",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(237,237,237)"
                                }
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "showgrid": true,
                                "gridcolor": "white",
                                "linecolor": "white",
                                "tickcolor": "rgb(51,51,51)",
                                "automargin": true,
                                "zerolinecolor": "white"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": true,
                                    "gridcolor": "white",
                                    "linecolor": "white",
                                    "tickcolor": "rgb(51,51,51)"
                                },
                                "bgcolor": "rgb(237,237,237)"
                            },
                            "colorway": [
                                "#F8766D",
                                "#A3A500",
                                "#00BF7D",
                                "#00B0F6",
                                "#E76BF3"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#40004b"
                                    ],
                                    [
                                        0.1,
                                        "#762a83"
                                    ],
                                    [
                                        0.2,
                                        "#9970ab"
                                    ],
                                    [
                                        0.3,
                                        "#c2a5cf"
                                    ],
                                    [
                                        0.4,
                                        "#e7d4e8"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#d9f0d3"
                                    ],
                                    [
                                        0.7,
                                        "#a6dba0"
                                    ],
                                    [
                                        0.8,
                                        "#5aae61"
                                    ],
                                    [
                                        0.9,
                                        "#1b7837"
                                    ],
                                    [
                                        1,
                                        "#00441b"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "rgb(20,44,66)"
                                    ],
                                    [
                                        1,
                                        "rgb(90,179,244)"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(237,237,237)",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "GGPLOT2"
                    },
                    "hovermode": "closest",
                    "showlegend": true,
                    "annotations": [],
                    "plot_bgcolor": "rgb(246, 246, 246)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~braintumor1234",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-31 18:07:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "braintumor1234",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T17:59:40.658544Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~danielhuynh156/1.embed",
            "fid": "danielhuynh156:1",
            "filename": "tokenomics",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/danielhuynh156/1/9_ZZAV9Q5K3Y13MHZ55VV98YI0BBB5RS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/danielhuynh156/1/2_0STKK3D5VUVXF27KDMTG24412E4JR4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/danielhuynh156/1/8_36TZ9YSWVM9SV77JGH46B8MTJID7KU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/danielhuynh156/1/9_ZZAV9Q5K3Y13MHZ55VV98YI0BBB5RS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/danielhuynh156:1",
                "plots": "https://api.plotly.com/v2/plots/danielhuynh156:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=danielhuynh156"
            },
            "owner": "danielhuynh156",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~danielhuynh156/1/",
            "world_readable": true,
            "date_modified": "2024-03-31T17:59:40.673Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~danielhuynh156/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "r": "A",
                                "theta": "A"
                            }
                        },
                        "mode": "markers",
                        "rsrc": "danielhuynh156:0:620e3a",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:620e3a",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "B",
                                "theta": "B"
                            }
                        },
                        "rsrc": "danielhuynh156:0:344c37",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:344c37",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "C",
                                "theta": "C"
                            }
                        },
                        "rsrc": "danielhuynh156:0:00930e",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:00930e",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "D",
                                "theta": "D"
                            }
                        },
                        "rsrc": "danielhuynh156:0:51a0a6",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:51a0a6",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "E",
                                "theta": "E"
                            }
                        },
                        "rsrc": "danielhuynh156:0:ee0dd4",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:ee0dd4",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "F",
                                "theta": "F"
                            }
                        },
                        "rsrc": "danielhuynh156:0:4f6a6e",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:4f6a6e",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "G",
                                "theta": "G"
                            }
                        },
                        "rsrc": "danielhuynh156:0:090f64",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:090f64",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "H",
                                "theta": "H"
                            }
                        },
                        "rsrc": "danielhuynh156:0:734b5f",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:734b5f",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "I",
                                "theta": "I"
                            }
                        },
                        "rsrc": "danielhuynh156:0:d8bf13",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:d8bf13",
                        "thetaunit": "radians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "J",
                                "theta": "J"
                            }
                        },
                        "rsrc": "danielhuynh156:0:2678db",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:2678db",
                        "thetaunit": "gradians"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "r": "K",
                                "theta": "K"
                            }
                        },
                        "rsrc": "danielhuynh156:0:559d30",
                        "type": "barpolar",
                        "thetasrc": "danielhuynh156:0:559d30",
                        "thetaunit": "radians"
                    }
                ],
                "frames": [],
                "layout": {
                    "polar": {
                        "bargap": 0.05,
                        "sector": [
                            0
                        ],
                        "radialaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                31.57894736842105
                            ],
                            "autorange": true
                        },
                        "angularaxis": {
                            "type": "linear"
                        }
                    },
                    "xaxis": {
                        "range": [
                            0.2775956284153005,
                            1.5169398907103826
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "range": [
                            0.514358005008182,
                            2.1866553023054793
                        ],
                        "autorange": false
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~danielhuynh156",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/98.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-31 17:24:27",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "danielhuynh156",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T17:36:30.316626Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tpavlo/35.embed",
            "fid": "tpavlo:35",
            "filename": "Plot 35",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tpavlo/35/9_0ZG2Q18CQ7E2HTCW8AZCD558KY9AYL.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tpavlo/35/2_5HQ8WNMMTOEURASMS9WR3JWHN9J8O7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tpavlo/35/8_QK3HRYWIH7JX3TC2NQUPZ4P3PNHY2J.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tpavlo/35/9_0ZG2Q18CQ7E2HTCW8AZCD558KY9AYL.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tpavlo:35",
                "plots": "https://api.plotly.com/v2/plots/tpavlo:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=tpavlo"
            },
            "owner": "tpavlo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~tpavlo/35/",
            "world_readable": true,
            "date_modified": "2024-03-31T17:36:30.328Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tpavlo/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "tpavlo:34:fa2faf",
                        "ysrc": "tpavlo:34:118f2f"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C"
                            }
                        },
                        "mode": "markers",
                        "type": "histogram2dcontour",
                        "xsrc": "tpavlo:34:fa2faf",
                        "ysrc": "tpavlo:34:118f2f",
                        "zsrc": "tpavlo:34:a375ce",
                        "colorbar": {
                            "title": {
                                "text": "Figure of Merit"
                            }
                        },
                        "contours": {
                            "end": 2.5,
                            "size": 0.5,
                            "start": 0.5
                        },
                        "stackgroup": null,
                        "autocontour": true,
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5.5,
                            -0.5
                        ],
                        "title": {
                            "text": "Acetylene BE (eV)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -3.5,
                            0.5
                        ],
                        "title": {
                            "text": "Ethylene BE (eV)"
                        },
                        "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"
                    },
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#fff7ec"
                            ],
                            [
                                0.125,
                                "#fee8c8"
                            ],
                            [
                                0.25,
                                "#fdd49e"
                            ],
                            [
                                0.375,
                                "#fdbb84"
                            ],
                            [
                                0.5,
                                "#fc8d59"
                            ],
                            [
                                0.625,
                                "#ef6548"
                            ],
                            [
                                0.75,
                                "#d7301f"
                            ],
                            [
                                0.875,
                                "#b30000"
                            ],
                            [
                                1,
                                "#7f0000"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tpavlo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-08-25 15:58:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tpavlo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T17:26:36.600881Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~nisargshah25/1.embed",
            "fid": "nisargshah25:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/nisargshah25/1/9_79SF6MI3PJ43OUDT8CNQDQRU0WRCGD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/nisargshah25/1/2_CZ3MCB7DYCL2TKG6J94ER9L3TUQQ8Z.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/nisargshah25/1/8_GYMIKSZL8L3OKB0V7FTJG1VB5T39F9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/nisargshah25/1/9_79SF6MI3PJ43OUDT8CNQDQRU0WRCGD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/nisargshah25:1",
                "plots": "https://api.plotly.com/v2/plots/nisargshah25:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=nisargshah25"
            },
            "owner": "nisargshah25",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~nisargshah25/1/",
            "world_readable": true,
            "date_modified": "2024-03-31T17:26:36.612Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~nisargshah25/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "nisargshah25:0:bec09c",
                        "ysrc": "nisargshah25:0:ebab62"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Effect of Air Jet Intensity on Heat Transfer Coefficient"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1.2000000000000002,
                            14.399999999999997
                        ],
                        "title": {
                            "text": "Velocity(m/s)"
                        },
                        "autorange": false,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -35.09722222222226,
                            579.9472222222223
                        ],
                        "title": {
                            "text": "Heat Transfer Coefficient(W/m2K)"
                        },
                        "autorange": false,
                        "showspikes": 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/~nisargshah25",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/53.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-31 17:26:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "nisargshah25",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T17:19:13.848281Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~KAKA./1.embed",
            "fid": "KAKA.:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/KAKA./1/9_IFAYN4KUCIE3TPCES8H1LZKYOF23I5.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/KAKA./1/2_F16XQ5X8QFSIH8GIO26XWANT4A192J.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/KAKA./1/8_YUZET5Y8L5S40AI0OCQS8AGAG1H6WG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/KAKA./1/9_IFAYN4KUCIE3TPCES8H1LZKYOF23I5.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/KAKA.:1",
                "plots": "https://api.plotly.com/v2/plots/KAKA.:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=KAKA."
            },
            "owner": "KAKA.",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~KAKA./1/",
            "world_readable": true,
            "date_modified": "2024-03-31T17:19:13.857Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~KAKA./1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B",
                                "z": "C - D - E - F"
                            }
                        },
                        "mode": "markers",
                        "type": "heatmap",
                        "xsrc": "KAKA.:0:103b94",
                        "ysrc": "KAKA.:0:52bbd1",
                        "zsrc": "KAKA.:0:6a8399,4bec1a,0bfd79,617b83",
                        "transpose": true,
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15,
                        "family": "Droid Serif"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            3.5
                        ],
                        "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"
                    },
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#67001f"
                            ],
                            [
                                0.1,
                                "#b2182b"
                            ],
                            [
                                0.2,
                                "#d6604d"
                            ],
                            [
                                0.3,
                                "#f4a582"
                            ],
                            [
                                0.4,
                                "#fddbc7"
                            ],
                            [
                                0.5,
                                "#f7f7f7"
                            ],
                            [
                                0.6,
                                "#d1e5f0"
                            ],
                            [
                                0.7,
                                "#92c5de"
                            ],
                            [
                                0.8,
                                "#4393c3"
                            ],
                            [
                                0.9,
                                "#2166ac"
                            ],
                            [
                                1,
                                "#053061"
                            ]
                        ],
                        "sequential": [
                            [
                                0,
                                "#f7fcf5"
                            ],
                            [
                                0.125,
                                "#e5f5e0"
                            ],
                            [
                                0.25,
                                "#c7e9c0"
                            ],
                            [
                                0.375,
                                "#a1d99b"
                            ],
                            [
                                0.5,
                                "#74c476"
                            ],
                            [
                                0.625,
                                "#41ab5d"
                            ],
                            [
                                0.75,
                                "#238b45"
                            ],
                            [
                                0.875,
                                "#006d2c"
                            ],
                            [
                                1,
                                "#00441b"
                            ]
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~KAKA.",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/41.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-31 17:18:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "KAKA.",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T17:00:34.073271Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bolirev/20.embed",
            "fid": "bolirev:20",
            "filename": "plotly_ai_debate_score_clearest_win_discourse",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bolirev/20/9_NATKEWQ1J4B62XZW3IGQXOOOMTWNAJ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bolirev/20/2_4OUZZ0HRZ6NH659322OZTD3G7LTSDH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bolirev/20/8_4G9OG6IBT2659RNKN4CEFR66P09WLS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bolirev/20/9_NATKEWQ1J4B62XZW3IGQXOOOMTWNAJ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bolirev:20",
                "plots": "https://api.plotly.com/v2/plots/bolirev:20",
                "parent": "https://api.plotly.com/v2/folders/home?user=bolirev"
            },
            "owner": "bolirev",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 32,
            "web_url": "https://chart-studio.plotly.com/~bolirev/20/",
            "world_readable": true,
            "date_modified": "2024-03-31T17:00:34.083Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bolirev/20/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "GeminiChatter|gemini-pro",
                        "type": "scatter",
                        "xsrc": "bolirev:19:b028d1",
                        "ysrc": "bolirev:19:92b4f6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 12,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "GeminiChatter|gemini-pro",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=GeminiChatter|gemini-pro<br>team_entity=MistralAIChatter|mistral-large-latest<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "GeminiChatter|gemini-pro",
                        "type": "scatter",
                        "xsrc": "bolirev:19:9fc763",
                        "ysrc": "bolirev:19:4e1bca",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 12,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "GeminiChatter|gemini-pro",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=GeminiChatter|gemini-pro<br>team_entity=Claude3AiChatter|claude-3-opus-20240229<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "MistralAIChatter|mistral-large-latest",
                        "type": "scatter",
                        "xsrc": "bolirev:19:bfe054",
                        "ysrc": "bolirev:19:0e75a0",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 12,
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "MistralAIChatter|mistral-large-latest",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=MistralAIChatter|mistral-large-latest<br>team_entity=MistralAIChatter|mistral-large-latest<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "MistralAIChatter|mistral-large-latest",
                        "type": "scatter",
                        "xsrc": "bolirev:19:4ba026",
                        "ysrc": "bolirev:19:0600e1",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 12,
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "MistralAIChatter|mistral-large-latest",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=MistralAIChatter|mistral-large-latest<br>team_entity=Claude3AiChatter|claude-3-opus-20240229<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "OpenAIChatter|gpt-4",
                        "type": "scatter",
                        "xsrc": "bolirev:19:b16ec6",
                        "ysrc": "bolirev:19:fa3696",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 12,
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "OpenAIChatter|gpt-4",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=OpenAIChatter|gpt-4<br>team_entity=MistralAIChatter|mistral-large-latest<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "OpenAIChatter|gpt-4",
                        "type": "scatter",
                        "xsrc": "bolirev:19:e8970c",
                        "ysrc": "bolirev:19:dd3ca4",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 12,
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "OpenAIChatter|gpt-4",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=OpenAIChatter|gpt-4<br>team_entity=Claude3AiChatter|claude-3-opus-20240229<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Claude3AiChatter|claude-3-opus-20240229",
                        "type": "scatter",
                        "xsrc": "bolirev:19:0bd6b2",
                        "ysrc": "bolirev:19:64fc9d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 12,
                            "color": "#ab63fa",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Claude3AiChatter|claude-3-opus-20240229",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=Claude3AiChatter|claude-3-opus-20240229<br>team_entity=MistralAIChatter|mistral-large-latest<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Claude3AiChatter|claude-3-opus-20240229",
                        "type": "scatter",
                        "xsrc": "bolirev:19:7375ce",
                        "ysrc": "bolirev:19:0c7df6",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 12,
                            "color": "#ab63fa",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "Claude3AiChatter|claude-3-opus-20240229",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=Claude3AiChatter|claude-3-opus-20240229<br>team_entity=Claude3AiChatter|claude-3-opus-20240229<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "<b>Topic:The Importance of Sustainable Development</b>"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Normalised_score"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.49
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Categories"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "judge_entity"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "xaxis2": {
                        "title": {
                            "text": "Normalised_score"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.51,
                            1.0
                        ],
                        "matches": "x"
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "matches": "y",
                        "showticklabels": false
                    },
                    "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
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": 0.245,
                            "y": 1.0,
                            "font": {},
                            "text": "team_entity=MistralAIChatter|mistral-large-latest",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.755,
                            "y": 1.0,
                            "font": {},
                            "text": "team_entity=Claude3AiChatter|claude-3-opus-20240229",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bolirev",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-30 16:29:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bolirev",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T16:57:43.088768Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bolirev/18.embed",
            "fid": "bolirev:18",
            "filename": "plotly_ai_debate_score_best_discourse",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bolirev/18/9_GABSUXZMVDZJUQO4LHSTPXIIBBTJB7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bolirev/18/2_VGP2ZA3YOP7BYI5TA9B7M4CAIMZBEG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bolirev/18/8_H284VZMI2E8UDVNJYG0TT0QZZADKX8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bolirev/18/9_GABSUXZMVDZJUQO4LHSTPXIIBBTJB7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bolirev:18",
                "plots": "https://api.plotly.com/v2/plots/bolirev:18",
                "parent": "https://api.plotly.com/v2/folders/home?user=bolirev"
            },
            "owner": "bolirev",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 39,
            "web_url": "https://chart-studio.plotly.com/~bolirev/18/",
            "world_readable": true,
            "date_modified": "2024-03-31T16:57:43.099Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bolirev/18/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "GeminiChatter|gemini-pro",
                        "type": "scatter",
                        "xsrc": "bolirev:17:322d91",
                        "ysrc": "bolirev:17:611839",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 12,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "GeminiChatter|gemini-pro",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=GeminiChatter|gemini-pro<br>team_entity=MistralAIChatter|mistral-large-latest<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "GeminiChatter|gemini-pro",
                        "type": "scatter",
                        "xsrc": "bolirev:17:2eed64",
                        "ysrc": "bolirev:17:6ce787",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 12,
                            "color": "#636efa",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "GeminiChatter|gemini-pro",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=GeminiChatter|gemini-pro<br>team_entity=OpenAIChatter|gpt-4<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "MistralAIChatter|mistral-large-latest",
                        "type": "scatter",
                        "xsrc": "bolirev:17:39fd90",
                        "ysrc": "bolirev:17:e95831",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 12,
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "MistralAIChatter|mistral-large-latest",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=MistralAIChatter|mistral-large-latest<br>team_entity=MistralAIChatter|mistral-large-latest<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "MistralAIChatter|mistral-large-latest",
                        "type": "scatter",
                        "xsrc": "bolirev:17:b203c0",
                        "ysrc": "bolirev:17:03e531",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 12,
                            "color": "#EF553B",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "MistralAIChatter|mistral-large-latest",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=MistralAIChatter|mistral-large-latest<br>team_entity=OpenAIChatter|gpt-4<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "OpenAIChatter|gpt-4",
                        "type": "scatter",
                        "xsrc": "bolirev:17:046f14",
                        "ysrc": "bolirev:17:51b72d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 12,
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "OpenAIChatter|gpt-4",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=OpenAIChatter|gpt-4<br>team_entity=MistralAIChatter|mistral-large-latest<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "OpenAIChatter|gpt-4",
                        "type": "scatter",
                        "xsrc": "bolirev:17:9f6ff0",
                        "ysrc": "bolirev:17:03678a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 12,
                            "color": "#00cc96",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "OpenAIChatter|gpt-4",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=OpenAIChatter|gpt-4<br>team_entity=OpenAIChatter|gpt-4<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Claude3AiChatter|claude-3-opus-20240229",
                        "type": "scatter",
                        "xsrc": "bolirev:17:baf6a3",
                        "ysrc": "bolirev:17:e30253",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 12,
                            "color": "#ab63fa",
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "Claude3AiChatter|claude-3-opus-20240229",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=Claude3AiChatter|claude-3-opus-20240229<br>team_entity=MistralAIChatter|mistral-large-latest<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    },
                    {
                        "mode": "markers",
                        "name": "Claude3AiChatter|claude-3-opus-20240229",
                        "type": "scatter",
                        "xsrc": "bolirev:17:f85256",
                        "ysrc": "bolirev:17:06c664",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 12,
                            "color": "#ab63fa",
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "Claude3AiChatter|claude-3-opus-20240229",
                        "orientation": "h",
                        "hovertemplate": "judge_entity=Claude3AiChatter|claude-3-opus-20240229<br>team_entity=OpenAIChatter|gpt-4<br>Normalised_score=%{x}<br>Categories=%{y}<extra></extra>"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "<b>Topic:3. Climate Change: Individual Responsibility vs Corporate Accountability</b>: MistralAIChatter proposed / OpenAIChatter opposed "
                    },
                    "xaxis": {
                        "title": {
                            "text": "Normalised_score"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.49
                        ]
                    },
                    "yaxis": {
                        "title": {
                            "text": "Categories"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "judge_entity"
                        },
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "t": 60
                    },
                    "xaxis2": {
                        "title": {
                            "text": "Normalised_score"
                        },
                        "anchor": "y2",
                        "domain": [
                            0.51,
                            1.0
                        ],
                        "matches": "x"
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "matches": "y",
                        "showticklabels": false
                    },
                    "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
                            }
                        }
                    },
                    "annotations": [
                        {
                            "x": 0.245,
                            "y": 1.0,
                            "font": {},
                            "text": "team_entity=MistralAIChatter|mistral-large-latest",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.755,
                            "y": 1.0,
                            "font": {},
                            "text": "team_entity=OpenAIChatter|gpt-4",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bolirev",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-30 16:29:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bolirev",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-03-31T16:55:33.434311Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bolirev/15.embed",
            "fid": "bolirev:15",
            "filename": "plotly_ai_debate_score_matrix",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/bolirev/15/9_7ME4BRZAHRGFENASWHR4AKI0T4M2F6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bolirev/15/2_4PR39MDU7A078Q1NS5DHNGSLMADSG9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bolirev/15/8_LFKAS5EK4A8UTJQRUM2JVFIOTV4U2H.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/bolirev/15/9_7ME4BRZAHRGFENASWHR4AKI0T4M2F6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bolirev:15",
                "plots": "https://api.plotly.com/v2/plots/bolirev:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=bolirev"
            },
            "owner": "bolirev",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 38,
            "web_url": "https://chart-studio.plotly.com/~bolirev/15/",
            "world_readable": true,
            "date_modified": "2024-03-31T16:55:48.049Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bolirev/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:c93d88",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:0ba079",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:f35a7a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:9dbc09",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:bc7c54",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:ba43ca",
                        "ysrc": "bolirev:16:461e3a",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": true
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:f4868b",
                        "ysrc": "bolirev:16:0e6000",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": true
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:d34451",
                        "ysrc": "bolirev:16:adf036",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": true
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:6131df",
                        "ysrc": "bolirev:16:56e1b2",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": true
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:8611ee",
                        "ysrc": "bolirev:16:019abd",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": true
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:891c0a",
                        "ysrc": "bolirev:16:9e8ecc",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:b6be29",
                        "ysrc": "bolirev:16:8d3d33",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:15850b",
                        "ysrc": "bolirev:16:3047bd",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:081b00",
                        "ysrc": "bolirev:16:6f461f",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:e10da5",
                        "ysrc": "bolirev:16:2e5760",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:7643c0",
                        "ysrc": "bolirev:16:b54cff",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:197df8",
                        "ysrc": "bolirev:16:d70e0c",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:aae551",
                        "ysrc": "bolirev:16:9f1faf",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:49fac1",
                        "ysrc": "bolirev:16:ef633a",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:451dd6",
                        "ysrc": "bolirev:16:e21abf",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:22b4a0",
                        "ysrc": "bolirev:16:eb719c",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:c14793",
                        "ysrc": "bolirev:16:013af1",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:1ccb4e",
                        "ysrc": "bolirev:16:b81618",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:b69187",
                        "ysrc": "bolirev:16:e30da0",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:f20e5d",
                        "ysrc": "bolirev:16:a37bf5",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:acbff5",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:8d602c",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:e68afc",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:38306a",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:408c2c",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:bc53d1",
                        "ysrc": "bolirev:16:3d81bf",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:c701a3",
                        "ysrc": "bolirev:16:8efea9",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:c3026a",
                        "ysrc": "bolirev:16:98a694",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:c53abc",
                        "ysrc": "bolirev:16:21a171",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:bd90bb",
                        "ysrc": "bolirev:16:fc7425",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:2a996a",
                        "ysrc": "bolirev:16:e3f76a",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:956682",
                        "ysrc": "bolirev:16:a5f114",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:d6da27",
                        "ysrc": "bolirev:16:27b038",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:d4edec",
                        "ysrc": "bolirev:16:ee56b1",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:fcfdbc",
                        "ysrc": "bolirev:16:5c7063",
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:ccdb62",
                        "ysrc": "bolirev:16:82bd79",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:e446af",
                        "ysrc": "bolirev:16:248d71",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:321064",
                        "ysrc": "bolirev:16:97dc94",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:4a3033",
                        "ysrc": "bolirev:16:14f0d7",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:10cd9a",
                        "ysrc": "bolirev:16:e3bf69",
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:2624ea",
                        "ysrc": "bolirev:16:928beb",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:aa2579",
                        "ysrc": "bolirev:16:d7d224",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:96d55e",
                        "ysrc": "bolirev:16:700536",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:b8e269",
                        "ysrc": "bolirev:16:662302",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:7d9cf3",
                        "ysrc": "bolirev:16:cf85ea",
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:3f9f47",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:dee300",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:911503",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:3d5e00",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:10bf34",
                        "xaxis": "x11",
                        "yaxis": "y11",
                        "marker": {
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:8acc97",
                        "ysrc": "bolirev:16:8bc059",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:7eadb7",
                        "ysrc": "bolirev:16:44af26",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:ca4beb",
                        "ysrc": "bolirev:16:2890af",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:bb5990",
                        "ysrc": "bolirev:16:dfd977",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:91419c",
                        "ysrc": "bolirev:16:23c98e",
                        "xaxis": "x12",
                        "yaxis": "y12",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:c99a9e",
                        "ysrc": "bolirev:16:3d346d",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:fb6ce8",
                        "ysrc": "bolirev:16:1571dc",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:a7d5db",
                        "ysrc": "bolirev:16:24d28d",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:84503b",
                        "ysrc": "bolirev:16:32bf27",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:18e63e",
                        "ysrc": "bolirev:16:cccfcd",
                        "xaxis": "x13",
                        "yaxis": "y13",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:a61f3a",
                        "ysrc": "bolirev:16:85b17f",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:ba1fef",
                        "ysrc": "bolirev:16:e34399",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:67f537",
                        "ysrc": "bolirev:16:ffae0c",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:596915",
                        "ysrc": "bolirev:16:a77fe3",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:56c799",
                        "ysrc": "bolirev:16:146189",
                        "xaxis": "x14",
                        "yaxis": "y14",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Expression<br>Delivery",
                        "type": "scatter",
                        "xsrc": "bolirev:16:129d24",
                        "ysrc": "bolirev:16:d5529f",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "size": 6,
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Listening<br>Response",
                        "type": "scatter",
                        "xsrc": "bolirev:16:a14aaf",
                        "ysrc": "bolirev:16:480e1a",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "size": 6,
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Organisation<br>Prioritisation",
                        "type": "scatter",
                        "xsrc": "bolirev:16:a3e82b",
                        "ysrc": "bolirev:16:fea1e3",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "size": 6,
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Reasoning<br>Evidence",
                        "type": "scatter",
                        "xsrc": "bolirev:16:ad9430",
                        "ysrc": "bolirev:16:7c6f61",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "size": 6,
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "name": "Teamwork<br>Roles",
                        "type": "scatter",
                        "xsrc": "bolirev:16:ce8c3f",
                        "ysrc": "bolirev:16:b9dd58",
                        "xaxis": "x15",
                        "yaxis": "y15",
                        "marker": {
                            "size": 6,
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:b20dfb",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "color": "rgb(31, 119, 180)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:a622e5",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "color": "rgb(255, 127, 14)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:494f07",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "color": "rgb(44, 160, 44)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:16c13f",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "color": "rgb(214, 39, 40)"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "box",
                        "ysrc": "bolirev:16:0c0baa",
                        "xaxis": "x16",
                        "yaxis": "y16",
                        "marker": {
                            "color": "rgb(148, 103, 189)"
                        },
                        "showlegend": false
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Scatterplot Matrix"
                    },
                    "width": 1000,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.2125
                        ],
                        "showticklabels": false
                    },
                    "yaxis": {
                        "title": {
                            "text": "Claude3AiChatter<br>claude-3-opus-20240229"
                        },
                        "anchor": "x",
                        "domain": [
                            0.80625,
                            1.0
                        ]
                    },
                    "height": 1000,
                    "legend": {
                        "title": {
                            "text": "Categories"
                        }
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.2625,
                            0.475
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.525,
                            0.7375
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.7875,
                            1.0
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.0,
                            0.2125
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.2625,
                            0.475
                        ],
                        "showticklabels": false
                    },
                    "xaxis7": {
                        "anchor": "y7",
                        "domain": [
                            0.525,
                            0.7375
                        ]
                    },
                    "xaxis8": {
                        "anchor": "y8",
                        "domain": [
                            0.7875,
                            1.0
                        ]
                    },
                    "xaxis9": {
                        "anchor": "y9",
                        "domain": [
                            0.0,
                            0.2125
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.80625,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.80625,
                            1.0
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.80625,
                            1.0
                        ]
                    },
                    "yaxis5": {
                        "title": {
                            "text": "GeminiChatter<br>gemini-pro"
                        },
                        "anchor": "x5",
                        "domain": [
                            0.5375,
                            0.73125
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.5375,
                            0.73125
                        ]
                    },
                    "yaxis7": {
                        "anchor": "x7",
                        "domain": [
                            0.5375,
                            0.73125
                        ]
                    },
                    "yaxis8": {
                        "anchor": "x8",
                        "domain": [
                            0.5375,
                            0.73125
                        ]
                    },
                    "yaxis9": {
                        "title": {
                            "text": "MistralAIChatter<br>mistral-large-latest"
                        },
                        "anchor": "x9",
                        "domain": [
                            0.26875,
                            0.4625
                        ]
                    },
                    "xaxis10": {
                        "anchor": "y10",
                        "domain": [
                            0.2625,
                            0.475
                        ]
                    },
                    "xaxis11": {
                        "anchor": "y11",
                        "domain": [
                            0.525,
                            0.7375
                        ],
                        "showticklabels": false
                    },
                    "xaxis12": {
                        "anchor": "y12",
                        "domain": [
                            0.7875,
                            1.0
                        ]
                    },
                    "xaxis13": {
                        "title": {
                            "text": "Claude3AiChatter<br>claude-3-opus-20240229"
                        },
                        "anchor": "y13",
                        "domain": [
                            0.0,
                            0.2125
                        ]
                    },
                    "xaxis14": {
                        "title": {
                            "text": "GeminiChatter<br>gemini-pro"
                        },
                        "anchor": "y14",
                        "domain": [
                            0.2625,
                            0.475
                        ]
                    },
                    "xaxis15": {
                        "title": {
                            "text": "MistralAIChatter<br>mistral-large-latest"
                        },
                        "anchor": "y15",
                        "domain": [
                            0.525,
                            0.7375
                        ]
                    },
                    "xaxis16": {
                        "title": {
                            "text": "OpenAIChatter<br>gpt-4"
                        },
                        "anchor": "y16",
                        "domain": [
                            0.7875,
                            1.0
                        ],
                        "showticklabels": false
                    },
                    "yaxis10": {
                        "anchor": "x10",
                        "domain": [
                            0.26875,
                            0.4625
                        ]
                    },
                    "yaxis11": {
                        "anchor": "x11",
                        "domain": [
                            0.26875,
                            0.4625
                        ]
                    },
                    "yaxis12": {
                        "anchor": "x12",
                        "domain": [
                            0.26875,
                            0.4625
                        ]
                    },
                    "yaxis13": {
                        "title": {
                            "text": "OpenAIChatter<br>gpt-4"
                        },
                        "anchor": "x13",
                        "domain": [
                            0.0,
                            0.19375
                        ]
                    },
                    "yaxis14": {
                        "anchor": "x14",
                        "domain": [
                            0.0,
                            0.19375
                        ]
                    },
                    "yaxis15": {
                        "anchor": "x15",
                        "domain": [
                            0.0,
                            0.19375
                        ]
                    },
                    "yaxis16": {
                        "anchor": "x16",
                        "domain": [
                            0.0,
                            0.19375
                        ]
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": 1000,
            "width": 1000,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bolirev",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/15.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-30 16:29:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bolirev",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}