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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTA4KzE0JTNBMTElM0E0MS4xNjU5ODIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0wOCsxNCUzQTMzJTNBMTkuMDYzOTcyJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-08T14:33:19.063972Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tparis9813/35.embed",
            "fid": "tparis9813:35",
            "filename": "graph final 21 03 run 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tparis9813/35/9_3JJ0DGJ3X33ZZ5CNX83A1T4BOK7U5H.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tparis9813/35/2_A4FAUM0KJSMOPM842VKYCKL1MB3U7X.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tparis9813/35/8_138E81J92CDHSAQXP2DJE5NRU2S319.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tparis9813/35/9_3JJ0DGJ3X33ZZ5CNX83A1T4BOK7U5H.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tparis9813:35",
                "plots": "https://api.plotly.com/v2/plots/tparis9813:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=tparis9813"
            },
            "owner": "tparis9813",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~tparis9813/35/",
            "world_readable": true,
            "date_modified": "2024-04-08T14:37:58.313Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tparis9813/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "magenta: Position",
                        "type": "scatter3d",
                        "xsrc": "tparis9813:36:f91320",
                        "ysrc": "tparis9813:36:2b5095",
                        "zsrc": "tparis9813:36:25b2e9",
                        "scene": "scene",
                        "marker": {
                            "size": 1,
                            "color": "magenta",
                            "opacity": 0.5
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "tparis9813:36:1fe9fa",
                        "ysrc": "tparis9813:36:83084c",
                        "zsrc": "tparis9813:36:5944fb",
                        "scene": "scene",
                        "marker": {
                            "size": 7,
                            "color": "black",
                            "symbol": "cross"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "tparis9813:36:7a172e",
                        "ysrc": "tparis9813:36:01624c",
                        "zsrc": "tparis9813:36:f9c7aa",
                        "scene": "scene",
                        "marker": {
                            "size": 15,
                            "color": "green",
                            "symbol": "cross"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "tparis9813:36:bab4bd",
                        "ysrc": "tparis9813:36:4b2e10",
                        "zsrc": "tparis9813:36:793936",
                        "scene": "scene",
                        "marker": {
                            "size": 15,
                            "color": "dimgrey",
                            "symbol": "cross"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "red",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "Force du pied droit",
                        "type": "scatter",
                        "xsrc": "tparis9813:36:5b25aa",
                        "ysrc": "tparis9813:36:7817bc",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "fill": "tonexty",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "tparis9813:36:e9e0c7",
                        "ysrc": "tparis9813:36:6bca92",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 2,
                            "color": "magenta"
                        },
                        "fillcolor": "rgba(255, 0, 0, 0.2)",
                        "showlegend": false
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "blue",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "Force du pied gauche",
                        "type": "scatter",
                        "xsrc": "tparis9813:36:d4cde3",
                        "ysrc": "tparis9813:36:40241e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(0, 0, 255, 0.2)"
                    },
                    {
                        "mode": "markers",
                        "name": "Gates position",
                        "type": "scatter",
                        "xsrc": "tparis9813:36:63a96a",
                        "ysrc": "tparis9813:36:d9590a",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 7,
                            "color": "black",
                            "symbol": "cross"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Start",
                        "type": "scatter",
                        "xsrc": "tparis9813:36:7129d7",
                        "ysrc": "tparis9813:36:7561ec",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 15,
                            "color": "green",
                            "symbol": "cross"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "End",
                        "type": "scatter",
                        "xsrc": "tparis9813:36:860ffd",
                        "ysrc": "tparis9813:36:8a6340",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 15,
                            "color": "dimgrey",
                            "symbol": "cross"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "text": "Latitude"
                            }
                        },
                        "yaxis": {
                            "title": {
                                "text": "Longitude"
                            }
                        },
                        "zaxis": {
                            "title": {
                                "text": "Altitude"
                            }
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.49,
                                1.0
                            ]
                        },
                        "aspectmode": "manual",
                        "aspectratio": {
                            "x": 3,
                            "y": 0.5,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Position, vitesse et force run 3"
                    },
                    "width": 1700,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.0,
                            0.34
                        ]
                    },
                    "height": 1100,
                    "legend": {
                        "font": {
                            "size": 20
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": 1100,
            "width": 1700,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tparis9813",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-29 13:31:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tparis9813",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:31:47.169133Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~syscall/1.embed",
            "fid": "syscall:1",
            "filename": "Vds-Coss_plot",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/syscall/1/9_5ZR7K85JKNDF5HFS6NSDXZQEMPYSGE.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/syscall/1/2_NFJDBT0QYZ9XVFRZ10TU3PH3D9KJ4R.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/syscall/1/8_E1LGZBQ0S2PT9MQT2976NPXMA074BK.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/syscall/1/9_5ZR7K85JKNDF5HFS6NSDXZQEMPYSGE.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/syscall:1",
                "plots": "https://api.plotly.com/v2/plots/syscall:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=syscall"
            },
            "owner": "syscall",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~syscall/1/",
            "world_readable": true,
            "date_modified": "2024-04-08T14:48:04.598Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~syscall/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Vds",
                                "y": "Coss"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "syscall:0:f0de03",
                        "ysrc": "syscall:0:821d28"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Capacitance (Vds-Coss Graph)"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.044,
                            40.044
                        ],
                        "title": {
                            "text": "Vds - Volts"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2893.8233333333333,
                            8226.176666666666
                        ],
                        "title": {
                            "text": "Capacitance - PicoFarads"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~syscall",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.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-04-08 13:55:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "syscall",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:30:58.118433Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lnielsen9/7.embed",
            "fid": "lnielsen9:7",
            "filename": "aborto_metodos_teste",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/lnielsen9/7/9_G5OT1BY7MGZNDINXFZLY018E2033B2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/lnielsen9/7/2_A79YNEATU861M9N3D5IY8WKO2E7W8U.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lnielsen9/7/8_ULHCXFWO4GVOPJQL8O2ZY2CD5SJQF4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/lnielsen9/7/9_G5OT1BY7MGZNDINXFZLY018E2033B2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lnielsen9:7",
                "plots": "https://api.plotly.com/v2/plots/lnielsen9:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=lnielsen9"
            },
            "owner": "lnielsen9",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 193,
            "web_url": "https://chart-studio.plotly.com/~lnielsen9/7/",
            "world_readable": true,
            "date_modified": "2024-04-08T19:55:40.904Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lnielsen9/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "Aspiração manual intrauterina (AMIU)",
                        "type": "bar",
                        "xsrc": "lnielsen9:8:a4e65e",
                        "ysrc": "lnielsen9:8:02c38e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(131,58,139,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "lnielsen9:8:bf5e6b",
                        "textsrc": "lnielsen9:8:c21243",
                        "widthsrc": "lnielsen9:8:4cf727",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Aspiração manual intrauterina (AMIU)",
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "name": "Curetagem pós-abortamento / puerperal",
                        "type": "bar",
                        "xsrc": "lnielsen9:8:2188c4",
                        "ysrc": "lnielsen9:8:1950fa",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.8897637795275593
                            },
                            "color": "rgba(231,95,73,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "lnielsen9:8:9a8043",
                        "textsrc": "lnielsen9:8:76bdc8",
                        "widthsrc": "lnielsen9:8:2f616c",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "Curetagem pós-abortamento / puerperal",
                        "orientation": "v",
                        "textposition": "none"
                    },
                    {
                        "mode": "text",
                        "name": "Aspiração manual intrauterina (AMIU)",
                        "type": "scatter",
                        "xsrc": "lnielsen9:8:d98645",
                        "ysrc": "lnielsen9:8:56363d",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "lnielsen9:8:e7cd87",
                        "textfont": {
                            "size": 15.118110236220474,
                            "color": "rgba(255,255,255,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "Aspiração manual intrauterina (AMIU)",
                        "hovertextsrc": "lnielsen9:8:22f883"
                    },
                    {
                        "mode": "text",
                        "name": "Curetagem pós-abortamento / puerperal",
                        "type": "scatter",
                        "xsrc": "lnielsen9:8:74efae",
                        "ysrc": "lnielsen9:8:5b1b7a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "lnielsen9:8:68a177",
                        "textfont": {
                            "size": 15.118110236220474,
                            "color": "rgba(255,255,255,1)"
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "Curetagem pós-abortamento / puerperal",
                        "hovertextsrc": "lnielsen9:8:1e08f0"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "black",
                        "family": "Arial"
                    },
                    "title": {
                        "font": {
                            "size": 12,
                            "color": "black",
                            "family": "Arial"
                        }
                    },
                    "width": 900,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -2,
                            102
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": "Arial"
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 14,
                            "color": "rgba(77,77,77,1)",
                            "family": "Arial"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0%",
                            "25%",
                            "50%",
                            "75%",
                            "100%"
                        ],
                        "tickvals": [
                            0,
                            25.000000000000004,
                            50,
                            75,
                            100
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "tickformat": ".0%",
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0%",
                            "25%",
                            "50%",
                            "75%",
                            "100%"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            5.6
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": "Arial"
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": false,
                        "showline": false,
                        "tickfont": {
                            "size": 16,
                            "color": "rgba(77,77,77,1)",
                            "family": "Arial"
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "Sem informação",
                            "Amarela",
                            "Branca",
                            "Parda",
                            "Preta"
                        ],
                        "tickvals": [
                            1,
                            2,
                            3,
                            4,
                            5
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": false,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "Sem informação",
                            "Amarela",
                            "Branca",
                            "Parda",
                            "Preta"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "bargap": 0.1,
                    "height": 700,
                    "legend": {
                        "x": 0.2,
                        "y": -0.35,
                        "font": {
                            "size": 17.268576172685766,
                            "color": "rgba(0,0,0,1)",
                            "family": "Arial"
                        },
                        "title": {
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": "Arial"
                            },
                            "text": ""
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0,
                        "orientation": "v"
                    },
                    "margin": {
                        "b": 130,
                        "l": 122.54047322540474,
                        "r": 7.305936073059362,
                        "t": 25.39334637964775
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "hoverlabel": {
                        "align": "left",
                        "bgcolor": "white"
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 1,
                            "y": -0.4,
                            "text": "",
                            "xref": "paper",
                            "yref": "paper",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgba(0,0,0,0)",
                    "paper_bgcolor": "rgba(0,0,0,0)"
                }
            },
            "height": 700,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lnielsen9",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/22.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": "2023-12-12 20:33:39",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lnielsen9",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:25:56.938041Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~25grmeyers/7.embed",
            "fid": "25grmeyers:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/25grmeyers/7/9_A0KDJPVLLZVQWL248PR80YGW3T7ZOS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/25grmeyers/7/2_YEJYP0E0OBH552204KY3KWCG3IQURM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/25grmeyers/7/8_OBEOJY3QMLY27FQY9WGYCT31CR44MI.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/25grmeyers/7/9_A0KDJPVLLZVQWL248PR80YGW3T7ZOS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/25grmeyers:7",
                "plots": "https://api.plotly.com/v2/plots/25grmeyers:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=25grmeyers"
            },
            "owner": "25grmeyers",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~25grmeyers/7/",
            "world_readable": true,
            "date_modified": "2024-04-08T15:46:48.735Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~25grmeyers/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c6594f",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25grmeyers:6:06d45c",
                        "ysrc": "25grmeyers:6:0d8ab3"
                    },
                    {
                        "uid": "863345",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "c6594f",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.06687464221487646,
                                        "value": -0.8649789029535965
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.0010618126483338494,
                                        "value": 0.042507172995780745
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "1/do vs 1/di "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.010313517513566847,
                            0.02268648248643315
                        ],
                        "title": {
                            "text": "1/do"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.0228771242371396,
                            0.03488738211037951
                        ],
                        "title": {
                            "text": "1/di "
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~25grmeyers",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.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-01-04 15:33:55",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "25grmeyers",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:23:22.504151Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~landrock0720/4.embed",
            "fid": "landrock0720:4",
            "filename": "loss curve",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/landrock0720/4/9_3D8V1LGGRK9JAMXDDGW6D8QN9S5JWS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/landrock0720/4/2_C967CTJM8UO4GKDLXWMHUX4JYMIURX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/landrock0720/4/8_FQBPA8TD9H0IMY3YFNE9WEMDUX5D4Q.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/landrock0720/4/9_3D8V1LGGRK9JAMXDDGW6D8QN9S5JWS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/landrock0720:4",
                "plots": "https://api.plotly.com/v2/plots/landrock0720:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=landrock0720"
            },
            "owner": "landrock0720",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~landrock0720/4/",
            "world_readable": true,
            "date_modified": "2024-04-09T13:02:05.789Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~landrock0720/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "A"
                            }
                        },
                        "mode": "lines",
                        "name": "Train",
                        "type": "scatter",
                        "ysrc": "landrock0720:3:a1b0ef"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Val",
                        "type": "scatter",
                        "xsrc": "landrock0720:3:3bd764",
                        "ysrc": "landrock0720:3:bc4d93",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20
                    },
                    "title": {
                        "x": 0.48,
                        "text": "loss curve"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            1250
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "samples count"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.017627777777777777,
                            0.15707222222222222
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "loss"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.9295477386934674,
                        "y": 0.9981024667931688,
                        "font": {
                            "size": 20
                        }
                    },
                    "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/~landrock0720",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/78.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-03 15:43:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "landrock0720",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:21:49.965433Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~tparis9813/32.embed",
            "fid": "tparis9813:32",
            "filename": "graph final 21 03 run 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/tparis9813/32/9_0O4NYZKHAU7LVAAYTNQ6DVCLFT7XSQ.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/tparis9813/32/2_VYKRC0WWKFJI75DJW5M2RA0SVSXPIR.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/tparis9813/32/8_J6HZCSL2GAH51LE7Z5WQMTN3AAAB73.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/tparis9813/32/9_0O4NYZKHAU7LVAAYTNQ6DVCLFT7XSQ.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/tparis9813:32",
                "plots": "https://api.plotly.com/v2/plots/tparis9813:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=tparis9813"
            },
            "owner": "tparis9813",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~tparis9813/32/",
            "world_readable": true,
            "date_modified": "2024-04-08T14:22:56.652Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~tparis9813/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "magenta: Position",
                        "type": "scatter3d",
                        "xsrc": "tparis9813:33:2ce820",
                        "ysrc": "tparis9813:33:fadbfc",
                        "zsrc": "tparis9813:33:cee2b4",
                        "scene": "scene",
                        "marker": {
                            "size": 1,
                            "color": "magenta",
                            "opacity": 0.5
                        }
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "tparis9813:33:a85236",
                        "ysrc": "tparis9813:33:da67d5",
                        "zsrc": "tparis9813:33:cff6df",
                        "scene": "scene",
                        "marker": {
                            "size": 7,
                            "color": "black",
                            "symbol": "cross"
                        },
                        "showlegend": false
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:abd8a0",
                        "vsrc": "tparis9813:33:89827b",
                        "wsrc": "tparis9813:33:80bf20",
                        "xsrc": "tparis9813:33:fe46cc",
                        "ysrc": "tparis9813:33:137671",
                        "zsrc": "tparis9813:33:fd9a86",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:8d244a",
                        "vsrc": "tparis9813:33:9d40f9",
                        "wsrc": "tparis9813:33:101d87",
                        "xsrc": "tparis9813:33:220c2d",
                        "ysrc": "tparis9813:33:699958",
                        "zsrc": "tparis9813:33:fad558",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:3af777",
                        "vsrc": "tparis9813:33:3f7869",
                        "wsrc": "tparis9813:33:f3f542",
                        "xsrc": "tparis9813:33:df9035",
                        "ysrc": "tparis9813:33:8f7850",
                        "zsrc": "tparis9813:33:df5e99",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:cbd146",
                        "vsrc": "tparis9813:33:896784",
                        "wsrc": "tparis9813:33:b7e978",
                        "xsrc": "tparis9813:33:4fdaac",
                        "ysrc": "tparis9813:33:00fa1d",
                        "zsrc": "tparis9813:33:f967f3",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:b6b64c",
                        "vsrc": "tparis9813:33:55e812",
                        "wsrc": "tparis9813:33:67e9cc",
                        "xsrc": "tparis9813:33:ff6044",
                        "ysrc": "tparis9813:33:3d78e8",
                        "zsrc": "tparis9813:33:49ffbb",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:e620f9",
                        "vsrc": "tparis9813:33:90934e",
                        "wsrc": "tparis9813:33:8755c7",
                        "xsrc": "tparis9813:33:c175c6",
                        "ysrc": "tparis9813:33:de7a6b",
                        "zsrc": "tparis9813:33:63b815",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:6534df",
                        "vsrc": "tparis9813:33:a95d42",
                        "wsrc": "tparis9813:33:ace59d",
                        "xsrc": "tparis9813:33:2681cc",
                        "ysrc": "tparis9813:33:1bdbee",
                        "zsrc": "tparis9813:33:735238",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:906ac1",
                        "vsrc": "tparis9813:33:547503",
                        "wsrc": "tparis9813:33:905603",
                        "xsrc": "tparis9813:33:d6f9b4",
                        "ysrc": "tparis9813:33:46c0ef",
                        "zsrc": "tparis9813:33:848728",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:4332d3",
                        "vsrc": "tparis9813:33:2ba780",
                        "wsrc": "tparis9813:33:c722e8",
                        "xsrc": "tparis9813:33:bff912",
                        "ysrc": "tparis9813:33:7703be",
                        "zsrc": "tparis9813:33:7f4a20",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:66aff5",
                        "vsrc": "tparis9813:33:500b92",
                        "wsrc": "tparis9813:33:e60640",
                        "xsrc": "tparis9813:33:a54519",
                        "ysrc": "tparis9813:33:e82364",
                        "zsrc": "tparis9813:33:1d8665",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:06b877",
                        "vsrc": "tparis9813:33:762eb7",
                        "wsrc": "tparis9813:33:16ccc2",
                        "xsrc": "tparis9813:33:18a61e",
                        "ysrc": "tparis9813:33:fc2f1c",
                        "zsrc": "tparis9813:33:94ad60",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:1ea7b3",
                        "vsrc": "tparis9813:33:a8f838",
                        "wsrc": "tparis9813:33:a241dd",
                        "xsrc": "tparis9813:33:5466aa",
                        "ysrc": "tparis9813:33:eb00c7",
                        "zsrc": "tparis9813:33:e1c5c1",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:cb878a",
                        "vsrc": "tparis9813:33:7ff6ae",
                        "wsrc": "tparis9813:33:01fa07",
                        "xsrc": "tparis9813:33:67ad01",
                        "ysrc": "tparis9813:33:025cf8",
                        "zsrc": "tparis9813:33:ef8618",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:c08a98",
                        "vsrc": "tparis9813:33:5b1725",
                        "wsrc": "tparis9813:33:74a324",
                        "xsrc": "tparis9813:33:c79656",
                        "ysrc": "tparis9813:33:43aafb",
                        "zsrc": "tparis9813:33:d58746",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:72c76a",
                        "vsrc": "tparis9813:33:867f2b",
                        "wsrc": "tparis9813:33:06c5a4",
                        "xsrc": "tparis9813:33:6ebe67",
                        "ysrc": "tparis9813:33:309eae",
                        "zsrc": "tparis9813:33:94fc96",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:7c222f",
                        "vsrc": "tparis9813:33:f7b0dc",
                        "wsrc": "tparis9813:33:1b84c2",
                        "xsrc": "tparis9813:33:21e253",
                        "ysrc": "tparis9813:33:68cd1e",
                        "zsrc": "tparis9813:33:46f877",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:462d4a",
                        "vsrc": "tparis9813:33:8b9f05",
                        "wsrc": "tparis9813:33:db4532",
                        "xsrc": "tparis9813:33:c9eaa8",
                        "ysrc": "tparis9813:33:be8c3a",
                        "zsrc": "tparis9813:33:124b23",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:aef4d9",
                        "vsrc": "tparis9813:33:ede06c",
                        "wsrc": "tparis9813:33:b77d7b",
                        "xsrc": "tparis9813:33:c61267",
                        "ysrc": "tparis9813:33:f05595",
                        "zsrc": "tparis9813:33:de1a99",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:166a94",
                        "vsrc": "tparis9813:33:3c3387",
                        "wsrc": "tparis9813:33:1f01fa",
                        "xsrc": "tparis9813:33:0c69ed",
                        "ysrc": "tparis9813:33:0875b6",
                        "zsrc": "tparis9813:33:ee266d",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:24bd5d",
                        "vsrc": "tparis9813:33:bcdd1a",
                        "wsrc": "tparis9813:33:37aabb",
                        "xsrc": "tparis9813:33:8672f4",
                        "ysrc": "tparis9813:33:c40ada",
                        "zsrc": "tparis9813:33:17cbf7",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:f62efe",
                        "vsrc": "tparis9813:33:1bafc1",
                        "wsrc": "tparis9813:33:ee31ae",
                        "xsrc": "tparis9813:33:1514f1",
                        "ysrc": "tparis9813:33:33a17f",
                        "zsrc": "tparis9813:33:b3ecde",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:f8170b",
                        "vsrc": "tparis9813:33:cde87e",
                        "wsrc": "tparis9813:33:c4345c",
                        "xsrc": "tparis9813:33:1d37dc",
                        "ysrc": "tparis9813:33:8ab49d",
                        "zsrc": "tparis9813:33:5d9740",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:fec248",
                        "vsrc": "tparis9813:33:c92503",
                        "wsrc": "tparis9813:33:fd3c56",
                        "xsrc": "tparis9813:33:8177ee",
                        "ysrc": "tparis9813:33:475b46",
                        "zsrc": "tparis9813:33:688f2b",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:3de279",
                        "vsrc": "tparis9813:33:5b3401",
                        "wsrc": "tparis9813:33:015981",
                        "xsrc": "tparis9813:33:e9a4d5",
                        "ysrc": "tparis9813:33:7b19af",
                        "zsrc": "tparis9813:33:c36efe",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:46a636",
                        "vsrc": "tparis9813:33:05f268",
                        "wsrc": "tparis9813:33:af9816",
                        "xsrc": "tparis9813:33:de2890",
                        "ysrc": "tparis9813:33:221900",
                        "zsrc": "tparis9813:33:805d2f",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:5f5d24",
                        "vsrc": "tparis9813:33:c44cff",
                        "wsrc": "tparis9813:33:c3fe2e",
                        "xsrc": "tparis9813:33:74cb52",
                        "ysrc": "tparis9813:33:0dad71",
                        "zsrc": "tparis9813:33:292ae0",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:caae18",
                        "vsrc": "tparis9813:33:0297b6",
                        "wsrc": "tparis9813:33:95d20d",
                        "xsrc": "tparis9813:33:21bb6c",
                        "ysrc": "tparis9813:33:a3a125",
                        "zsrc": "tparis9813:33:ae9c5a",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:b23800",
                        "vsrc": "tparis9813:33:4af8e5",
                        "wsrc": "tparis9813:33:8293cd",
                        "xsrc": "tparis9813:33:b4784b",
                        "ysrc": "tparis9813:33:d3aa72",
                        "zsrc": "tparis9813:33:2e3454",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:cf4c9b",
                        "vsrc": "tparis9813:33:39ffeb",
                        "wsrc": "tparis9813:33:6df757",
                        "xsrc": "tparis9813:33:d8e07c",
                        "ysrc": "tparis9813:33:083f77",
                        "zsrc": "tparis9813:33:76d4db",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:97b411",
                        "vsrc": "tparis9813:33:ac6752",
                        "wsrc": "tparis9813:33:61af2e",
                        "xsrc": "tparis9813:33:6cdc34",
                        "ysrc": "tparis9813:33:c1e6ec",
                        "zsrc": "tparis9813:33:b3236a",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:18fd20",
                        "vsrc": "tparis9813:33:8ecf1a",
                        "wsrc": "tparis9813:33:8ea45f",
                        "xsrc": "tparis9813:33:3ddfca",
                        "ysrc": "tparis9813:33:e33732",
                        "zsrc": "tparis9813:33:7cca64",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:c3498d",
                        "vsrc": "tparis9813:33:02f97d",
                        "wsrc": "tparis9813:33:cab8fb",
                        "xsrc": "tparis9813:33:493485",
                        "ysrc": "tparis9813:33:c9c267",
                        "zsrc": "tparis9813:33:7e091d",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:865a4e",
                        "vsrc": "tparis9813:33:11051d",
                        "wsrc": "tparis9813:33:5a78c2",
                        "xsrc": "tparis9813:33:217dda",
                        "ysrc": "tparis9813:33:860e10",
                        "zsrc": "tparis9813:33:100d73",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:f4ddcf",
                        "vsrc": "tparis9813:33:9c0e12",
                        "wsrc": "tparis9813:33:523a8c",
                        "xsrc": "tparis9813:33:202394",
                        "ysrc": "tparis9813:33:5917bc",
                        "zsrc": "tparis9813:33:75a7f2",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:3ef769",
                        "vsrc": "tparis9813:33:801fc9",
                        "wsrc": "tparis9813:33:340947",
                        "xsrc": "tparis9813:33:434336",
                        "ysrc": "tparis9813:33:bc2087",
                        "zsrc": "tparis9813:33:6e87b8",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:948bbb",
                        "vsrc": "tparis9813:33:194350",
                        "wsrc": "tparis9813:33:915ad4",
                        "xsrc": "tparis9813:33:64a3a2",
                        "ysrc": "tparis9813:33:4b2608",
                        "zsrc": "tparis9813:33:08baaf",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:5ae0ef",
                        "vsrc": "tparis9813:33:a49a04",
                        "wsrc": "tparis9813:33:3bba74",
                        "xsrc": "tparis9813:33:b30c58",
                        "ysrc": "tparis9813:33:792095",
                        "zsrc": "tparis9813:33:6d84da",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:1ae0e1",
                        "vsrc": "tparis9813:33:a37f6e",
                        "wsrc": "tparis9813:33:1a41c8",
                        "xsrc": "tparis9813:33:8c7940",
                        "ysrc": "tparis9813:33:7f8b76",
                        "zsrc": "tparis9813:33:859348",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:716b74",
                        "vsrc": "tparis9813:33:60220e",
                        "wsrc": "tparis9813:33:8104b5",
                        "xsrc": "tparis9813:33:a6577c",
                        "ysrc": "tparis9813:33:7bdd20",
                        "zsrc": "tparis9813:33:b42518",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:1ec432",
                        "vsrc": "tparis9813:33:ac79aa",
                        "wsrc": "tparis9813:33:39be66",
                        "xsrc": "tparis9813:33:215b22",
                        "ysrc": "tparis9813:33:d21ab0",
                        "zsrc": "tparis9813:33:ce9ced",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:995750",
                        "vsrc": "tparis9813:33:2ccd31",
                        "wsrc": "tparis9813:33:ea5a60",
                        "xsrc": "tparis9813:33:6310c9",
                        "ysrc": "tparis9813:33:8ace73",
                        "zsrc": "tparis9813:33:1c2a66",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:9ea705",
                        "vsrc": "tparis9813:33:874f0d",
                        "wsrc": "tparis9813:33:8d5316",
                        "xsrc": "tparis9813:33:2e8a8a",
                        "ysrc": "tparis9813:33:8d9739",
                        "zsrc": "tparis9813:33:d7bc84",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:400189",
                        "vsrc": "tparis9813:33:c60757",
                        "wsrc": "tparis9813:33:879f3d",
                        "xsrc": "tparis9813:33:6ea269",
                        "ysrc": "tparis9813:33:4a6a01",
                        "zsrc": "tparis9813:33:b8fea2",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:9c1152",
                        "vsrc": "tparis9813:33:d02724",
                        "wsrc": "tparis9813:33:726ac5",
                        "xsrc": "tparis9813:33:b55bed",
                        "ysrc": "tparis9813:33:ad54a2",
                        "zsrc": "tparis9813:33:bbe3fa",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:881cfc",
                        "vsrc": "tparis9813:33:d84e2e",
                        "wsrc": "tparis9813:33:2e0292",
                        "xsrc": "tparis9813:33:d119cb",
                        "ysrc": "tparis9813:33:6eb2dc",
                        "zsrc": "tparis9813:33:f7bdaf",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:d5bbb5",
                        "vsrc": "tparis9813:33:1d8fde",
                        "wsrc": "tparis9813:33:d621c0",
                        "xsrc": "tparis9813:33:397bfb",
                        "ysrc": "tparis9813:33:0ac801",
                        "zsrc": "tparis9813:33:5c7f6e",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:c99f19",
                        "vsrc": "tparis9813:33:e4c612",
                        "wsrc": "tparis9813:33:8999ec",
                        "xsrc": "tparis9813:33:f27902",
                        "ysrc": "tparis9813:33:9c8c28",
                        "zsrc": "tparis9813:33:74062b",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:f18132",
                        "vsrc": "tparis9813:33:3e1dd3",
                        "wsrc": "tparis9813:33:c5eede",
                        "xsrc": "tparis9813:33:5650ff",
                        "ysrc": "tparis9813:33:b623d7",
                        "zsrc": "tparis9813:33:2a22ec",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:b0ac16",
                        "vsrc": "tparis9813:33:d9e602",
                        "wsrc": "tparis9813:33:1c0c0a",
                        "xsrc": "tparis9813:33:cde5b0",
                        "ysrc": "tparis9813:33:b19e1b",
                        "zsrc": "tparis9813:33:5dcba1",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:b0861a",
                        "vsrc": "tparis9813:33:e655e9",
                        "wsrc": "tparis9813:33:2b76c3",
                        "xsrc": "tparis9813:33:0914b6",
                        "ysrc": "tparis9813:33:858bf0",
                        "zsrc": "tparis9813:33:6aa45e",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:d49f7d",
                        "vsrc": "tparis9813:33:cb4713",
                        "wsrc": "tparis9813:33:ce05a5",
                        "xsrc": "tparis9813:33:a8e84d",
                        "ysrc": "tparis9813:33:59d6bb",
                        "zsrc": "tparis9813:33:7072c8",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:f6eb72",
                        "vsrc": "tparis9813:33:1e411b",
                        "wsrc": "tparis9813:33:eb7ac0",
                        "xsrc": "tparis9813:33:ec49c6",
                        "ysrc": "tparis9813:33:3b3964",
                        "zsrc": "tparis9813:33:0f04a5",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:c7ea75",
                        "vsrc": "tparis9813:33:232f06",
                        "wsrc": "tparis9813:33:75ea8c",
                        "xsrc": "tparis9813:33:98c985",
                        "ysrc": "tparis9813:33:9114d6",
                        "zsrc": "tparis9813:33:d624d7",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:b1bb1a",
                        "vsrc": "tparis9813:33:9e7f2c",
                        "wsrc": "tparis9813:33:087a9b",
                        "xsrc": "tparis9813:33:db8cbf",
                        "ysrc": "tparis9813:33:a83aa5",
                        "zsrc": "tparis9813:33:7835ba",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:646377",
                        "vsrc": "tparis9813:33:1fdb01",
                        "wsrc": "tparis9813:33:91ee2c",
                        "xsrc": "tparis9813:33:ec3766",
                        "ysrc": "tparis9813:33:26d7fa",
                        "zsrc": "tparis9813:33:1648b7",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:bc5892",
                        "vsrc": "tparis9813:33:5ef59a",
                        "wsrc": "tparis9813:33:345048",
                        "xsrc": "tparis9813:33:1c8c95",
                        "ysrc": "tparis9813:33:45936b",
                        "zsrc": "tparis9813:33:35b07a",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "type": "cone",
                        "usrc": "tparis9813:33:3e2b1d",
                        "vsrc": "tparis9813:33:08f02a",
                        "wsrc": "tparis9813:33:ff1bb6",
                        "xsrc": "tparis9813:33:4488be",
                        "ysrc": "tparis9813:33:99d8ef",
                        "zsrc": "tparis9813:33:546b06",
                        "scene": "scene",
                        "anchor": "tail",
                        "opacity": 0.4,
                        "sizeref": 0.2,
                        "sizemode": "scaled",
                        "hoverinfo": "u+v+w",
                        "showscale": false,
                        "colorscale": [
                            [
                                0.0,
                                "rgb(255,245,240)"
                            ],
                            [
                                0.125,
                                "rgb(254,224,210)"
                            ],
                            [
                                0.25,
                                "rgb(252,187,161)"
                            ],
                            [
                                0.375,
                                "rgb(252,146,114)"
                            ],
                            [
                                0.5,
                                "rgb(251,106,74)"
                            ],
                            [
                                0.625,
                                "rgb(239,59,44)"
                            ],
                            [
                                0.75,
                                "rgb(203,24,29)"
                            ],
                            [
                                0.875,
                                "rgb(165,15,21)"
                            ],
                            [
                                1.0,
                                "rgb(103,0,13)"
                            ]
                        ]
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "tparis9813:33:abbd83",
                        "ysrc": "tparis9813:33:38b19a",
                        "zsrc": "tparis9813:33:bba21b",
                        "scene": "scene",
                        "marker": {
                            "size": 15,
                            "color": "green",
                            "symbol": "cross"
                        },
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "tparis9813:33:4520da",
                        "ysrc": "tparis9813:33:2182c8",
                        "zsrc": "tparis9813:33:7b75a4",
                        "scene": "scene",
                        "marker": {
                            "size": 15,
                            "color": "dimgrey",
                            "symbol": "cross"
                        },
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "red",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "Force du pied droit",
                        "type": "scatter",
                        "xsrc": "tparis9813:33:01d6ad",
                        "ysrc": "tparis9813:33:9b1167",
                        "xaxis": "x",
                        "yaxis": "y"
                    },
                    {
                        "fill": "tonexty",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "tparis9813:33:053b55",
                        "ysrc": "tparis9813:33:71ee3e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 2,
                            "color": "magenta"
                        },
                        "fillcolor": "rgba(255, 0, 0, 0.2)",
                        "showlegend": false
                    },
                    {
                        "fill": "tonexty",
                        "line": {
                            "color": "blue",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "Force du pied gauche",
                        "type": "scatter",
                        "xsrc": "tparis9813:33:a13461",
                        "ysrc": "tparis9813:33:a39087",
                        "xaxis": "x",
                        "yaxis": "y",
                        "fillcolor": "rgba(0, 0, 255, 0.2)"
                    },
                    {
                        "mode": "markers",
                        "name": "Gates position",
                        "type": "scatter",
                        "xsrc": "tparis9813:33:60dc14",
                        "ysrc": "tparis9813:33:e09613",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 7,
                            "color": "black",
                            "symbol": "cross"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "Start",
                        "type": "scatter",
                        "xsrc": "tparis9813:33:65c0b9",
                        "ysrc": "tparis9813:33:05e761",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 15,
                            "color": "green",
                            "symbol": "cross"
                        }
                    },
                    {
                        "mode": "markers",
                        "name": "End",
                        "type": "scatter",
                        "xsrc": "tparis9813:33:ce470b",
                        "ysrc": "tparis9813:33:3dd8fb",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "size": 15,
                            "color": "dimgrey",
                            "symbol": "cross"
                        }
                    }
                ],
                "layout": {
                    "scene": {
                        "xaxis": {
                            "title": {
                                "text": "Latitude"
                            }
                        },
                        "yaxis": {
                            "title": {
                                "text": "Longitude"
                            }
                        },
                        "zaxis": {
                            "title": {
                                "text": "Altitude"
                            }
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.49,
                                1.0
                            ]
                        },
                        "aspectmode": "manual",
                        "aspectratio": {
                            "x": 3,
                            "y": 0.5,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Position, vitesse et force run 1"
                    },
                    "width": 1700,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.0,
                            0.34
                        ]
                    },
                    "height": 1100,
                    "legend": {
                        "font": {
                            "size": 20
                        }
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": 1100,
            "width": 1700,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~tparis9813",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/17.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-03-29 13:31:18",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "tparis9813",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:18:38.831809Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~25rmburke/21.embed",
            "fid": "25rmburke:21",
            "filename": "Plot 21",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/25rmburke/21/9_QT1XVM7GHCGZRWP7ODTRPEYKID0ZC9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/25rmburke/21/2_TVEKW6BA73NXKOKVAE9DUVL53V15Y9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/25rmburke/21/8_46RGIOCTC99ODIYNKLWDJ8XR0EA1OF.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/25rmburke/21/9_QT1XVM7GHCGZRWP7ODTRPEYKID0ZC9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/25rmburke:21",
                "plots": "https://api.plotly.com/v2/plots/25rmburke:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=25rmburke"
            },
            "owner": "25rmburke",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~25rmburke/21/",
            "world_readable": true,
            "date_modified": "2024-04-08T14:19:06.603Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~25rmburke/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "122348",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25rmburke:20:985a1d",
                        "ysrc": "25rmburke:20:4ae26d"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "1/di vs 1/do"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.010319758672699849,
                            0.02268024132730015
                        ],
                        "title": {
                            "text": "1/d0"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.03036723163841808,
                            0.03963276836158192
                        ],
                        "title": {
                            "text": "1/di"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~25rmburke",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-04 15:35:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "25rmburke",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:14:05.171246Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~24wjranallo/31.embed",
            "fid": "24wjranallo:31",
            "filename": "Plot 31",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/24wjranallo/31/9_FVWQLA5BIXN21P6SPBANQYFDRJB4AK.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/24wjranallo/31/2_TUM2HEOUU1ZSSNT7CEOVHSNW1A0BL0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/24wjranallo/31/8_NS6WWN482CCV8YC780I7DRJFXAYWDO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/24wjranallo/31/9_FVWQLA5BIXN21P6SPBANQYFDRJB4AK.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/24wjranallo:31",
                "plots": "https://api.plotly.com/v2/plots/24wjranallo:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=24wjranallo"
            },
            "owner": "24wjranallo",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~24wjranallo/31/",
            "world_readable": true,
            "date_modified": "2024-04-08T14:16:32.152Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~24wjranallo/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0ec419",
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "24wjranallo:30:754ba2",
                        "ysrc": "24wjranallo:30:aee2b9"
                    },
                    {
                        "uid": "06b1dd",
                        "transforms": [
                            {
                                "rms": "",
                                "type": "fit",
                                "inputUid": "0ec419",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 0.054139477352107834,
                                        "value": -0.9092872570194953
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.000842038585591666,
                                        "value": 0.04803023758099439
                                    }
                                ],
                                "regressand": "y",
                                "correlation": "",
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "1/do vs 1/di"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.009251110014800197,
                            0.0227488899851998
                        ],
                        "title": {
                            "text": "1/Do (cm)"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.027077619526533817,
                            0.03956156214155025
                        ],
                        "title": {
                            "text": "1/Di (cm)"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~24wjranallo",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/27.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-01-04 15:35:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "24wjranallo",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:12:50.933505Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~irysikpusik/3.embed",
            "fid": "irysikpusik:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/irysikpusik/3/9_ZW6RMC491TBRIL1HPWGDPZI0GW1LY2.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/irysikpusik/3/2_Y6QJ78V7WBMG2ZRQF0ZIKPWJGFE0TX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/irysikpusik/3/8_UHFWP4CT29E4J48IK07PC1I5RWD048.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/irysikpusik/3/9_ZW6RMC491TBRIL1HPWGDPZI0GW1LY2.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/irysikpusik:3",
                "plots": "https://api.plotly.com/v2/plots/irysikpusik:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=irysikpusik"
            },
            "owner": "irysikpusik",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~irysikpusik/3/",
            "world_readable": true,
            "date_modified": "2024-04-08T14:12:50.944Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~irysikpusik/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "current CPU usage,max",
                        "type": "bar",
                        "xsrc": "irysikpusik:2:5d9fc9",
                        "ysrc": "irysikpusik:2:c71788",
                        "visible": true,
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "shape": "spline"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "CPU limit",
                        "type": "bar",
                        "xsrc": "irysikpusik:2:5d9fc9",
                        "ysrc": "irysikpusik:2:d10481",
                        "stackgroup": null,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "name": "current Memory usage, max",
                        "type": "bar",
                        "xsrc": "irysikpusik:2:5d9fc9",
                        "ysrc": "irysikpusik:2:2c4ccf",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "name": "Memory limit",
                        "type": "bar",
                        "xsrc": "irysikpusik:2:5d9fc9",
                        "ysrc": "irysikpusik:2:df32bd",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "CPU and Memory usage and limits by services"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            13.5
                        ],
                        "title": {
                            "text": ""
                        },
                        "autorange": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            7.368421052631579
                        ],
                        "title": {
                            "text": ""
                        },
                        "autorange": false,
                        "showspikes": false
                    },
                    "barmode": "group",
                    "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"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~irysikpusik",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/34.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-03 10:24:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "irysikpusik",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2024-04-08T14:11:41.165982Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~25rmburke/19.embed",
            "fid": "25rmburke:19",
            "filename": "Plot 19",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/25rmburke/19/9_P6P0HAKZT5SHCLBD6RSBE9HVD8CX4Z.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/25rmburke/19/2_IKYZ3J7N8S2NQBOMELJ7IRNQ76V0VJ.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/25rmburke/19/8_1BJRFXGK39RTWKDGE11O0Y7Y1QF0KE.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/25rmburke/19/9_P6P0HAKZT5SHCLBD6RSBE9HVD8CX4Z.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/25rmburke:19",
                "plots": "https://api.plotly.com/v2/plots/25rmburke:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=25rmburke"
            },
            "owner": "25rmburke",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~25rmburke/19/",
            "world_readable": true,
            "date_modified": "2024-04-08T14:11:41.176Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~25rmburke/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "25rmburke:18:c5c71b",
                        "ysrc": "25rmburke:18:64573c"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Di vs Do "
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            42.217194570135746,
                            92.78280542986425
                        ],
                        "title": {
                            "text": "Distance of object"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            24.97005649717514,
                            32.72994350282486
                        ],
                        "title": {
                            "text": "Distance of image"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~25rmburke",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-01-04 15:35:02",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "25rmburke",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}