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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDI0LTA0LTEyKzA3JTNBNDElM0EzOS4zNTg0MzAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAyNC0wNC0xMiswOCUzQTE4JTNBMDUuMDg1OTY1JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2024-04-12T08:18:05.085965Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/36.embed",
            "fid": "jeonyl:36",
            "filename": "kaist_id_E2_#3_capacity_figure",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/36/9_2USAOQ5WAGBBF6KBYW8EU3RBYZ70G9.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/36/2_5Q1M3ZZERYWU8JY64ZZSCDUSRB49MX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/36/8_499Q7VMJ3XDB7W5C5OTRVU8GFZ5763.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/36/9_2USAOQ5WAGBBF6KBYW8EU3RBYZ70G9.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:36",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/36/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:18:05.096Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "max_dis_Q(Ah)/no.cycle",
                        "type": "scatter",
                        "xsrc": "jeonyl:35:c2032a",
                        "ysrc": "jeonyl:35:4688d2",
                        "marker": {
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 22,
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "text": "cycle number"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "yaxis": {
                        "title": {
                            "text": "Qapacity[mAh]"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "height": 600,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T08:17:59.310464Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/34.embed",
            "fid": "jeonyl:34",
            "filename": "kaist_id_E2_#2_capacity_figure",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/34/9_MY6X9WA9H4G7YGJ5FZWDPCQ4JXE3TT.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/34/2_2VB4Q9X0K2LVY69VEZMOMDLEND0IT7.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/34/8_7HN6JSCT0Y5B9IVAUWE070AJHA8AVO.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/34/9_MY6X9WA9H4G7YGJ5FZWDPCQ4JXE3TT.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:34",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:34",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/34/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:17:59.322Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/34/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "max_dis_Q(Ah)/no.cycle",
                        "type": "scatter",
                        "xsrc": "jeonyl:33:c18b3e",
                        "ysrc": "jeonyl:33:a98f51",
                        "marker": {
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 22,
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "text": "cycle number"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "yaxis": {
                        "title": {
                            "text": "Qapacity[mAh]"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "height": 600,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T08:17:55.134564Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/32.embed",
            "fid": "jeonyl:32",
            "filename": "Relaxation_voltage_after_charging",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jeonyl:32/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jeonyl:32/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jeonyl:32/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jeonyl:32/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:32",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:32",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/32/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:49:22.579Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/32/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "59",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:147371",
                        "ysrc": "jeonyl:43:e6b231",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "58",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:29576a",
                        "ysrc": "jeonyl:43:bc2cab",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "57",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d092f2",
                        "ysrc": "jeonyl:43:849bf6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "56",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d6d161",
                        "ysrc": "jeonyl:43:ac741f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "55",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:e3fd6a",
                        "ysrc": "jeonyl:43:f93b11",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "54",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:733531",
                        "ysrc": "jeonyl:43:bfe2d7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "53",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:dad14d",
                        "ysrc": "jeonyl:43:8d47cf",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "52",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:899fac",
                        "ysrc": "jeonyl:43:cf0f9a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "51",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:52450b",
                        "ysrc": "jeonyl:43:a13f5f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ac169b",
                        "ysrc": "jeonyl:43:c011a6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b07284",
                        "ysrc": "jeonyl:43:62dd57",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:bcc087",
                        "ysrc": "jeonyl:43:ab5b17",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:28cad0",
                        "ysrc": "jeonyl:43:24ed3e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:364f50",
                        "ysrc": "jeonyl:43:9f646f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6e2898",
                        "ysrc": "jeonyl:43:7068f7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:077093",
                        "ysrc": "jeonyl:43:e62c27",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:15ebbf",
                        "ysrc": "jeonyl:43:af0f9c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:de85c2",
                        "ysrc": "jeonyl:43:455bde",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f6e824",
                        "ysrc": "jeonyl:43:c541d6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4cd591",
                        "ysrc": "jeonyl:43:983cab",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c3a383",
                        "ysrc": "jeonyl:43:27e19f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:667d90",
                        "ysrc": "jeonyl:43:dfa184",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:78d8d0",
                        "ysrc": "jeonyl:43:28dd8e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:98fdde",
                        "ysrc": "jeonyl:43:acd79f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:96da0c",
                        "ysrc": "jeonyl:43:ab9b8f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4fd7ee",
                        "ysrc": "jeonyl:43:b1765a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d21171",
                        "ysrc": "jeonyl:43:261d73",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ba50df",
                        "ysrc": "jeonyl:43:9f0de3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a98164",
                        "ysrc": "jeonyl:43:8ea600",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a81bda",
                        "ysrc": "jeonyl:43:559546",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:29d59e",
                        "ysrc": "jeonyl:43:187849",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:534cfb",
                        "ysrc": "jeonyl:43:dd5c8c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:e68e35",
                        "ysrc": "jeonyl:43:7b5698",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:3691e8",
                        "ysrc": "jeonyl:43:b8c57b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2f456b",
                        "ysrc": "jeonyl:43:6a2e4f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:865e72",
                        "ysrc": "jeonyl:43:d20265",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:aad09e",
                        "ysrc": "jeonyl:43:659651",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0cc28d",
                        "ysrc": "jeonyl:43:c442db",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4c6001",
                        "ysrc": "jeonyl:43:d7d567",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a255d5",
                        "ysrc": "jeonyl:43:a95bdf",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:eb7dd8",
                        "ysrc": "jeonyl:43:93c54b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b76ea5",
                        "ysrc": "jeonyl:43:a7c056",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ffb832",
                        "ysrc": "jeonyl:43:5906e6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:498d3b",
                        "ysrc": "jeonyl:43:d62efd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c30ddb",
                        "ysrc": "jeonyl:43:040481",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:cbed77",
                        "ysrc": "jeonyl:43:0cb564",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5b17ab",
                        "ysrc": "jeonyl:43:cbfe4f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:e5128b",
                        "ysrc": "jeonyl:43:78b90b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:95010a",
                        "ysrc": "jeonyl:43:ccc37c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a773a0",
                        "ysrc": "jeonyl:43:ac46d1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:fd5fce",
                        "ysrc": "jeonyl:43:bf9252",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c2c89a",
                        "ysrc": "jeonyl:43:2eaa37",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:61fb94",
                        "ysrc": "jeonyl:43:c89db1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:537b2b",
                        "ysrc": "jeonyl:43:07baa2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b5e9d1",
                        "ysrc": "jeonyl:43:0784dd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:150177",
                        "ysrc": "jeonyl:43:22aa6d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:3d4a71",
                        "ysrc": "jeonyl:43:298596",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b48351",
                        "ysrc": "jeonyl:43:cd7ea5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4cc02e",
                        "ysrc": "jeonyl:43:0611ee",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "59",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:1ce4a6",
                        "ysrc": "jeonyl:43:25adde",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "58",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:3c042e",
                        "ysrc": "jeonyl:43:5402eb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "57",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a836cc",
                        "ysrc": "jeonyl:43:0de3d1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "56",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:82513a",
                        "ysrc": "jeonyl:43:501756",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "55",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:940f96",
                        "ysrc": "jeonyl:43:85f65b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "54",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f4ea97",
                        "ysrc": "jeonyl:43:5e6cbe",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "53",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c15c07",
                        "ysrc": "jeonyl:43:bd6a81",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "52",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6eaf7f",
                        "ysrc": "jeonyl:43:ef58c4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "51",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b456b8",
                        "ysrc": "jeonyl:43:06b375",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:92ff5f",
                        "ysrc": "jeonyl:43:5c0454",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6a2593",
                        "ysrc": "jeonyl:43:58a721",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:662480",
                        "ysrc": "jeonyl:43:58d64b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ecd75a",
                        "ysrc": "jeonyl:43:ea0b46",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:50352f",
                        "ysrc": "jeonyl:43:6adbc8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:faa213",
                        "ysrc": "jeonyl:43:85ab30",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f1db07",
                        "ysrc": "jeonyl:43:47072b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b10e6c",
                        "ysrc": "jeonyl:43:aca140",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:bc7c79",
                        "ysrc": "jeonyl:43:a0b966",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:746172",
                        "ysrc": "jeonyl:43:6127a0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:fe131c",
                        "ysrc": "jeonyl:43:4a36de",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:317604",
                        "ysrc": "jeonyl:43:bb1290",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4d3c26",
                        "ysrc": "jeonyl:43:85b1e2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:3ce7b9",
                        "ysrc": "jeonyl:43:46233d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ab756b",
                        "ysrc": "jeonyl:43:c47475",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:85aaf4",
                        "ysrc": "jeonyl:43:119894",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:40b17c",
                        "ysrc": "jeonyl:43:cfb3c9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:89c13b",
                        "ysrc": "jeonyl:43:23352f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b3682d",
                        "ysrc": "jeonyl:43:391856",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:8786d2",
                        "ysrc": "jeonyl:43:ae2f11",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:08ce40",
                        "ysrc": "jeonyl:43:bd1f2b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c8c676",
                        "ysrc": "jeonyl:43:a25e76",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a79410",
                        "ysrc": "jeonyl:43:c29330",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:dd0ea5",
                        "ysrc": "jeonyl:43:6dbc06",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d482e1",
                        "ysrc": "jeonyl:43:aea3fd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:bddf96",
                        "ysrc": "jeonyl:43:e7dcad",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ded976",
                        "ysrc": "jeonyl:43:fd4452",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6ca2b8",
                        "ysrc": "jeonyl:43:dcc26f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:614f74",
                        "ysrc": "jeonyl:43:bbe41f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:97b492",
                        "ysrc": "jeonyl:43:69d7ac",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:1c884c",
                        "ysrc": "jeonyl:43:fefcff",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7f1d94",
                        "ysrc": "jeonyl:43:d6b4b8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b8b912",
                        "ysrc": "jeonyl:43:f56fa2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7e669f",
                        "ysrc": "jeonyl:43:eb5540",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:31f2fa",
                        "ysrc": "jeonyl:43:f93702",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:350b56",
                        "ysrc": "jeonyl:43:fed072",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:9ea6c6",
                        "ysrc": "jeonyl:43:6ab75d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6f4351",
                        "ysrc": "jeonyl:43:967ce5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b98a17",
                        "ysrc": "jeonyl:43:911258",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:83759e",
                        "ysrc": "jeonyl:43:68c53c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2e103b",
                        "ysrc": "jeonyl:43:6c5d19",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c1abc8",
                        "ysrc": "jeonyl:43:4a206c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6b37da",
                        "ysrc": "jeonyl:43:3eb28d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:37af17",
                        "ysrc": "jeonyl:43:76b67c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2b08af",
                        "ysrc": "jeonyl:43:d89385",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c6101d",
                        "ysrc": "jeonyl:43:27f96c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:493a03",
                        "ysrc": "jeonyl:43:7c53bf",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:db671d",
                        "ysrc": "jeonyl:43:bc1bb2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:07ede5",
                        "ysrc": "jeonyl:43:9b4141",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:9f0876",
                        "ysrc": "jeonyl:43:cef7eb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "59",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f3abdd",
                        "ysrc": "jeonyl:43:b5f9f1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "58",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0bedad",
                        "ysrc": "jeonyl:43:5f1aac",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "57",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:625f63",
                        "ysrc": "jeonyl:43:6dcf81",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "56",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:075129",
                        "ysrc": "jeonyl:43:c349ea",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "55",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:22fe68",
                        "ysrc": "jeonyl:43:1dd275",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "54",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:fb04b2",
                        "ysrc": "jeonyl:43:dcfa6a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "53",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c614c8",
                        "ysrc": "jeonyl:43:faa1ce",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "52",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5dbba4",
                        "ysrc": "jeonyl:43:4dbedb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "51",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:bb9162",
                        "ysrc": "jeonyl:43:fb9ed2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:897801",
                        "ysrc": "jeonyl:43:0ecd7e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:100192",
                        "ysrc": "jeonyl:43:e7611c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7258fd",
                        "ysrc": "jeonyl:43:3961cc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:490473",
                        "ysrc": "jeonyl:43:8fe688",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0d47ca",
                        "ysrc": "jeonyl:43:0e3c2e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:1d115c",
                        "ysrc": "jeonyl:43:15a12e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:70c518",
                        "ysrc": "jeonyl:43:7cb835",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f06f2b",
                        "ysrc": "jeonyl:43:36baf6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7645db",
                        "ysrc": "jeonyl:43:b22fe9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:83d77f",
                        "ysrc": "jeonyl:43:76f0c6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:facfcd",
                        "ysrc": "jeonyl:43:f17cb2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6d84b8",
                        "ysrc": "jeonyl:43:97dc35",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b62541",
                        "ysrc": "jeonyl:43:6f5160",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:cb74ca",
                        "ysrc": "jeonyl:43:91fef1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d695b6",
                        "ysrc": "jeonyl:43:b71c67",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:55089d",
                        "ysrc": "jeonyl:43:745cec",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:8ccdc4",
                        "ysrc": "jeonyl:43:476d1a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:374d0f",
                        "ysrc": "jeonyl:43:1faa7b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d0575b",
                        "ysrc": "jeonyl:43:de4c1a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:cc21cd",
                        "ysrc": "jeonyl:43:1e1090",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5ed00c",
                        "ysrc": "jeonyl:43:8a7b1c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:e99550",
                        "ysrc": "jeonyl:43:2085d5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:dcf236",
                        "ysrc": "jeonyl:43:8ada8f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5a23f0",
                        "ysrc": "jeonyl:43:6339a5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ee387e",
                        "ysrc": "jeonyl:43:8ef991",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d5cd99",
                        "ysrc": "jeonyl:43:78e26e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a9f201",
                        "ysrc": "jeonyl:43:6a848c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:1a2d52",
                        "ysrc": "jeonyl:43:821288",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2a0ce3",
                        "ysrc": "jeonyl:43:f641bc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:711b47",
                        "ysrc": "jeonyl:43:70ada7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:9ffe73",
                        "ysrc": "jeonyl:43:2c269a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0b3bfb",
                        "ysrc": "jeonyl:43:f1d180",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:33db82",
                        "ysrc": "jeonyl:43:10a66c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2a8d60",
                        "ysrc": "jeonyl:43:20eb1a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f8cd32",
                        "ysrc": "jeonyl:43:714ad2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:43eb41",
                        "ysrc": "jeonyl:43:8c6b36",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2f5404",
                        "ysrc": "jeonyl:43:7a8a6f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b0ca8f",
                        "ysrc": "jeonyl:43:4f1a4c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6052b0",
                        "ysrc": "jeonyl:43:2448a4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:403956",
                        "ysrc": "jeonyl:43:c1fadf",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a0f600",
                        "ysrc": "jeonyl:43:fef22c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:1b03f5",
                        "ysrc": "jeonyl:43:439fa4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:603d09",
                        "ysrc": "jeonyl:43:03e434",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2fcd26",
                        "ysrc": "jeonyl:43:1260c4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:e2b2e0",
                        "ysrc": "jeonyl:43:2fd223",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:96025e",
                        "ysrc": "jeonyl:43:d8d463",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7f14bd",
                        "ysrc": "jeonyl:43:92364d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ffa2c9",
                        "ysrc": "jeonyl:43:783001",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:059ec5",
                        "ysrc": "jeonyl:43:76d7a4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0f083e",
                        "ysrc": "jeonyl:43:02745a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c03b9c",
                        "ysrc": "jeonyl:43:51d68b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ec26cc",
                        "ysrc": "jeonyl:43:cb8fb2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4ccf04",
                        "ysrc": "jeonyl:43:7e24b4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:301ac3",
                        "ysrc": "jeonyl:43:40c377",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:29670f",
                        "ysrc": "jeonyl:43:db630b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2b6652",
                        "ysrc": "jeonyl:43:f59aa4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6a3f93",
                        "ysrc": "jeonyl:43:9333fd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:284fc0",
                        "ysrc": "jeonyl:43:0edb95",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:208227",
                        "ysrc": "jeonyl:43:00f5a5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a5c374",
                        "ysrc": "jeonyl:43:75b43e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b133cf",
                        "ysrc": "jeonyl:43:a925dd",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:3d1fc1",
                        "ysrc": "jeonyl:43:0bdd99",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7b440e",
                        "ysrc": "jeonyl:43:5db5b2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:846bdc",
                        "ysrc": "jeonyl:43:fc3392",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:bac843",
                        "ysrc": "jeonyl:43:3348f4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:412e7e",
                        "ysrc": "jeonyl:43:999c6d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d9d86d",
                        "ysrc": "jeonyl:43:a26ae2",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:16a6c2",
                        "ysrc": "jeonyl:43:50399c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7b9b86",
                        "ysrc": "jeonyl:43:f19658",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:8f3f52",
                        "ysrc": "jeonyl:43:72a6f3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:95ef31",
                        "ysrc": "jeonyl:43:a81f5d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:81cc12",
                        "ysrc": "jeonyl:43:1e8baa",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b9d80e",
                        "ysrc": "jeonyl:43:955ed9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:547b94",
                        "ysrc": "jeonyl:43:b8103c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5da4bd",
                        "ysrc": "jeonyl:43:5c7dfe",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c6eb8b",
                        "ysrc": "jeonyl:43:3414c4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:836f47",
                        "ysrc": "jeonyl:43:23fa94",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2e5cf2",
                        "ysrc": "jeonyl:43:1be312",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:16be66",
                        "ysrc": "jeonyl:43:c94cad",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a97773",
                        "ysrc": "jeonyl:43:cb2cd9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0089a8",
                        "ysrc": "jeonyl:43:41d03c",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0393a9",
                        "ysrc": "jeonyl:43:a167a1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f27f1e",
                        "ysrc": "jeonyl:43:fae95b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:fe2a27",
                        "ysrc": "jeonyl:43:b70a5a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:9170e5",
                        "ysrc": "jeonyl:43:900a87",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a108f8",
                        "ysrc": "jeonyl:43:f99555",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:fbcb9d",
                        "ysrc": "jeonyl:43:33fdc6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7a6187",
                        "ysrc": "jeonyl:43:83da9d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:15fa9b",
                        "ysrc": "jeonyl:43:90f576",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0de122",
                        "ysrc": "jeonyl:43:82bac3",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4f4ea4",
                        "ysrc": "jeonyl:43:9d5b25",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6f3565",
                        "ysrc": "jeonyl:43:51de2d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b608f0",
                        "ysrc": "jeonyl:43:872d8d",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:eddd67",
                        "ysrc": "jeonyl:43:de8bea",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:cd46ee",
                        "ysrc": "jeonyl:43:3e1ac5",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f04913",
                        "ysrc": "jeonyl:43:7c00e6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:a15623",
                        "ysrc": "jeonyl:43:d70541",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4c268a",
                        "ysrc": "jeonyl:43:f91340",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5eafbf",
                        "ysrc": "jeonyl:43:4c062e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "59",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ae2a53",
                        "ysrc": "jeonyl:43:f9a8e9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "58",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:41f349",
                        "ysrc": "jeonyl:43:033f2f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "57",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ccd4fa",
                        "ysrc": "jeonyl:43:465ee6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "56",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:fe1326",
                        "ysrc": "jeonyl:43:be5aa7",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "55",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:844719",
                        "ysrc": "jeonyl:43:42a719",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,0,255,0.5)"
                        },
                        "mode": "lines",
                        "name": "54",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:8dc420",
                        "ysrc": "jeonyl:43:523961",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "53",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4c583e",
                        "ysrc": "jeonyl:43:8d924a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "52",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:714732",
                        "ysrc": "jeonyl:43:7b874e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "51",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:89085a",
                        "ysrc": "jeonyl:43:b30d36",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "50",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:d87797",
                        "ysrc": "jeonyl:43:a49a21",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "49",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b4e463",
                        "ysrc": "jeonyl:43:5b2c94",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "48",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:67b2c4",
                        "ysrc": "jeonyl:43:4cb916",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "47",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:3bfd91",
                        "ysrc": "jeonyl:43:f4323e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "46",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:040387",
                        "ysrc": "jeonyl:43:7d7967",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "45",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:87ef9e",
                        "ysrc": "jeonyl:43:29fb39",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "44",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f6582b",
                        "ysrc": "jeonyl:43:cc2e8e",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "43",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:967ec8",
                        "ysrc": "jeonyl:43:9cd4dc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "42",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:aecbd7",
                        "ysrc": "jeonyl:43:985543",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(0,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "41",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:46c4a3",
                        "ysrc": "jeonyl:43:a6c46a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "40",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5986c0",
                        "ysrc": "jeonyl:43:0aa53b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "39",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2c0b5e",
                        "ysrc": "jeonyl:43:4e94eb",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "38",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:73279b",
                        "ysrc": "jeonyl:43:4a5be8",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "37",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:72676d",
                        "ysrc": "jeonyl:43:cfea9b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "36",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:405554",
                        "ysrc": "jeonyl:43:9a0324",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "35",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:6d25ad",
                        "ysrc": "jeonyl:43:73cd37",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "34",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ef5f0c",
                        "ysrc": "jeonyl:43:dde58f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "33",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:bd6800",
                        "ysrc": "jeonyl:43:cab873",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "32",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2b31dc",
                        "ysrc": "jeonyl:43:211d3a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "31",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:684ab7",
                        "ysrc": "jeonyl:43:ca4a85",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "30",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:cee2d5",
                        "ysrc": "jeonyl:43:ff8d64",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "29",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4083d3",
                        "ysrc": "jeonyl:43:c9c534",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,255,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "28",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c84ba5",
                        "ysrc": "jeonyl:43:40c9f1",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "27",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:be619c",
                        "ysrc": "jeonyl:43:5fd3cc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "26",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:f6e266",
                        "ysrc": "jeonyl:43:62a831",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "25",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5aeab0",
                        "ysrc": "jeonyl:43:e22c5b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "24",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:864bb9",
                        "ysrc": "jeonyl:43:7cc270",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "23",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:0b4569",
                        "ysrc": "jeonyl:43:c3050a",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "22",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:83d5ca",
                        "ysrc": "jeonyl:43:e66dca",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "21",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5758bf",
                        "ysrc": "jeonyl:43:26d0a6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "20",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:1b9dbd",
                        "ysrc": "jeonyl:43:ef1235",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "19",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:9b2806",
                        "ysrc": "jeonyl:43:9d3fcc",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "18",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b73f06",
                        "ysrc": "jeonyl:43:2ae880",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "17",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:2b58d2",
                        "ysrc": "jeonyl:43:c8c7fe",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "16",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4bb24e",
                        "ysrc": "jeonyl:43:9bc8de",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,127,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "15",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:3aba51",
                        "ysrc": "jeonyl:43:e520e9",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "14",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:4befe5",
                        "ysrc": "jeonyl:43:d954b4",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "13",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:037f7a",
                        "ysrc": "jeonyl:43:354d95",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "12",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c7fedd",
                        "ysrc": "jeonyl:43:120fa0",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "11",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:fa9fc4",
                        "ysrc": "jeonyl:43:a443ad",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "10",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b8aedc",
                        "ysrc": "jeonyl:43:c9fc7b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "9",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:b945cb",
                        "ysrc": "jeonyl:43:a9926f",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "8",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:ca6b0c",
                        "ysrc": "jeonyl:43:9eac79",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "7",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:e018e2",
                        "ysrc": "jeonyl:43:f3cc9b",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "6",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:717ff6",
                        "ysrc": "jeonyl:43:c2a918",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "5",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:245dca",
                        "ysrc": "jeonyl:43:ac16e6",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "4",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:c2a711",
                        "ysrc": "jeonyl:43:712447",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "3",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:7c7a09",
                        "ysrc": "jeonyl:43:67b225",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "2",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:5a08a8",
                        "ysrc": "jeonyl:43:112475",
                        "showlegend": false
                    },
                    {
                        "line": {
                            "color": "rgba(255,0,0,0.5)"
                        },
                        "mode": "lines",
                        "name": "1",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:9dd39b",
                        "ysrc": "jeonyl:43:3bba86",
                        "showlegend": false
                    },
                    {
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "jeonyl:43:724658",
                        "ysrc": "jeonyl:43:a7b613",
                        "marker": {
                            "cmax": 80,
                            "cmin": 1,
                            "size": 100,
                            "colorbar": {
                                "x": 1.0,
                                "len": 0.95,
                                "title": {
                                    "side": "top",
                                    "text": "remaining life"
                                },
                                "lenmode": "fraction",
                                "xanchor": "left",
                                "tickmode": "array",
                                "thickness": 20,
                                "ticktextsrc": "jeonyl:43:931a73",
                                "tickvalssrc": "jeonyl:43:08b480",
                                "thicknessmode": "pixels"
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.013513513513513514,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.02702702702702703,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.04054054054054054,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.05405405405405406,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.06756756756756757,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.08108108108108109,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.0945945945945946,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.10810810810810811,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.12162162162162163,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.13513513513513514,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.14864864864864866,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.16216216216216217,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.17567567567567569,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.1891891891891892,
                                    "rgba(255,0,0,0.5)"
                                ],
                                [
                                    0.20270270270270271,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.21621621621621623,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.22972972972972974,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.24324324324324326,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.25675675675675674,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.2702702702702703,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.28378378378378377,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.2972972972972973,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.3108108108108108,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.32432432432432434,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.33783783783783783,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.35135135135135137,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.36486486486486486,
                                    "rgba(255,127,0,0.5)"
                                ],
                                [
                                    0.3783783783783784,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.3918918918918919,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.40540540540540543,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.4189189189189189,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.43243243243243246,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.44594594594594594,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.4594594594594595,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.47297297297297297,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.4864864864864865,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.5,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.5135135135135135,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.527027027027027,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.5405405405405406,
                                    "rgba(255,255,0,0.5)"
                                ],
                                [
                                    0.5540540540540541,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.5675675675675675,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.581081081081081,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.5945945945945946,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6081081081081081,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6216216216216216,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6351351351351351,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6486486486486487,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6621621621621622,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6756756756756757,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.6891891891891891,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.7027027027027027,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.7162162162162162,
                                    "rgba(0,255,0,0.5)"
                                ],
                                [
                                    0.7297297297297297,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7432432432432432,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7567567567567568,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7702702702702703,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7837837837837838,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.7972972972972973,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8108108108108109,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8243243243243243,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8378378378378378,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8513513513513513,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8648648648648649,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8783783783783784,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.8918918918918919,
                                    "rgba(0,0,255,0.5)"
                                ],
                                [
                                    0.9054054054054054,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.918918918918919,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.9324324324324325,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.9459459459459459,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.9594594594594594,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.972972972972973,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    0.9864864864864865,
                                    "rgba(75,0,130,0.5)"
                                ],
                                [
                                    1.0,
                                    "rgba(75,0,130,0.5)"
                                ]
                            ]
                        },
                        "hoverinfo": "none",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "time[m]"
                        },
                        "mirror": true
                    },
                    "yaxis": {
                        "title": {
                            "font": {
                                "size": 22
                            },
                            "text": "Relaxation voltage[V]"
                        },
                        "mirror": true
                    },
                    "height": 600,
                    "legend": {
                        "font": {
                            "size": 24
                        }
                    },
                    "margin": {
                        "t": 50
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    }
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T08:17:53.906305Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/31.embed",
            "fid": "jeonyl:31",
            "filename": "kaist_id_E2_#1_capacity_figure",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/31/9_687SKM01C4WAV697VL88YWPMXMA33A.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/31/2_MS3BX41GFCM2OZPHHCY4J24CSODE7F.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/31/8_UZ4KLS2TMQHRIQI2Z948T9PZ7FBKDC.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/31/9_687SKM01C4WAV697VL88YWPMXMA33A.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:31",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/31/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:17:53.916Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "max_dis_Q(Ah)/no.cycle",
                        "type": "scatter",
                        "xsrc": "jeonyl:29:e24088",
                        "ysrc": "jeonyl:29:4d625f",
                        "marker": {
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 22,
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "text": "cycle number"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "yaxis": {
                        "title": {
                            "text": "Qapacity[mAh]"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "height": 600,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T08:04:19.070228Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/23.embed",
            "fid": "jeonyl:23",
            "filename": "kaist_id_E2_#5_capacity_figure.png",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/23/9_EP9XFO70UDQQPF54DNNNGC6HVVN8IM.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/23/2_P8I61TNGIHMBR7EEHWDJU2JY29L9M5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/23/8_2PMN6OWXKSSVN2WMOIXAZ6P0N5X55B.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/23/9_EP9XFO70UDQQPF54DNNNGC6HVVN8IM.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:23",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:23",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/23/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:14:36.181Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "max_dis_Q(Ah)/no.cycle",
                        "type": "scatter",
                        "xsrc": "jeonyl:28:828a13",
                        "ysrc": "jeonyl:28:55b6ba",
                        "marker": {
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 22,
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "text": "cycle number"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "yaxis": {
                        "title": {
                            "text": "Qapacity[mAh]"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "height": 600,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T08:04:13.265079Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/21.embed",
            "fid": "jeonyl:21",
            "filename": "kaist_id_E2_#4_capacity_figure.png",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/21/9_EQU2HPXVTXQAIDS50S3MC5SUJMWTJY.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/21/2_0D9DJ1F2DYU1FLWROJBSZ5D6IZNZFC.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/21/8_7XYBNDJWC7F0JWN64TBIRO1JCRPJJS.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/21/9_EQU2HPXVTXQAIDS50S3MC5SUJMWTJY.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:21",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:21",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/21/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:14:29.611Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/21/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "max_dis_Q(Ah)/no.cycle",
                        "type": "scatter",
                        "xsrc": "jeonyl:27:87de1d",
                        "ysrc": "jeonyl:27:20abbb",
                        "marker": {
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 22,
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "text": "cycle number"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "yaxis": {
                        "title": {
                            "text": "Qapacity[mAh]"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "height": 600,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T08:04:07.760703Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/19.embed",
            "fid": "jeonyl:19",
            "filename": "kaist_id_E2_#3_capacity_figure.png",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/19/9_1CZDEV7B5CJV1G329PE81I8YRKPBXO.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/19/2_3SJJU3E5CJJ8PZC6JZECNNGL09ECSO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/19/8_TCDT4ONHZTF23VP9E5DKWLOSBNNLE6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/19/9_1CZDEV7B5CJV1G329PE81I8YRKPBXO.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:19",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:19",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/19/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:14:22.972Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/19/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "max_dis_Q(Ah)/no.cycle",
                        "type": "scatter",
                        "xsrc": "jeonyl:26:c0a70a",
                        "ysrc": "jeonyl:26:afd784",
                        "marker": {
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 22,
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "text": "cycle number"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "yaxis": {
                        "title": {
                            "text": "Qapacity[mAh]"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "height": 600,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T08:04:02.303266Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/17.embed",
            "fid": "jeonyl:17",
            "filename": "kaist_id_E2_#2_capacity_figure.png",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/17/9_YMI75C7ZHAD6R3RFSLJO90V8XUBI7O.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/17/2_5CA539H2HI2KPGNCZHO1VW0I3Q9S05.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/17/8_VGEM3D0N10OGG84H8TQ0X21EJ59S8U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/17/9_YMI75C7ZHAD6R3RFSLJO90V8XUBI7O.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:17",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:17",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/17/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:14:15.761Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/17/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "max_dis_Q(Ah)/no.cycle",
                        "type": "scatter",
                        "xsrc": "jeonyl:25:49fcb4",
                        "ysrc": "jeonyl:25:c9102e",
                        "marker": {
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 22,
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "text": "cycle number"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "yaxis": {
                        "title": {
                            "text": "Qapacity[mAh]"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "height": 600,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T08:03:56.697772Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonyl/15.embed",
            "fid": "jeonyl:15",
            "filename": "kaist_id_E2_#1_capacity_figure.png",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jeonyl/15/9_3SJW9JYYT8RR78RKVR82RAKMPATISF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeonyl/15/2_K4IHE8H0KMA8EKUQ8MMSB97I2LPO15.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/15/8_EXZGOVFMUA8IQ63KADU28FAJ5QC1MQ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonyl/15/9_3SJW9JYYT8RR78RKVR82RAKMPATISF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonyl:15",
                "plots": "https://api.plotly.com/v2/plots/jeonyl:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonyl"
            },
            "owner": "jeonyl",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonyl/15/",
            "world_readable": true,
            "date_modified": "2024-04-12T08:14:08.586Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonyl/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "max_dis_Q(Ah)/no.cycle",
                        "type": "scatter",
                        "xsrc": "jeonyl:24:0075a6",
                        "ysrc": "jeonyl:24:aae7fd",
                        "marker": {
                            "color": "blue"
                        }
                    }
                ],
                "layout": {
                    "font": {
                        "size": 22,
                        "family": "Arial, sans-serif"
                    },
                    "width": 600,
                    "xaxis": {
                        "title": {
                            "text": "cycle number"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "yaxis": {
                        "title": {
                            "text": "Qapacity[mAh]"
                        },
                        "mirror": true,
                        "showgrid": true,
                        "showline": true,
                        "gridcolor": "lightgray",
                        "linewidth": 0.5
                    },
                    "height": 600,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "rgb(36,36,36)"
                                    },
                                    "error_y": {
                                        "color": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "rgb(237,237,237)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "rgb(217,217,217)"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "rgb(36,36,36)",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "rgb(36,36,36)"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "width": 0.6
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "outside",
                                            "tickcolor": "rgb(36,36,36)",
                                            "outlinewidth": 1
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "outside",
                                        "tickcolor": "rgb(36,36,36)",
                                        "outlinewidth": 1
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#440154"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#482878"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#3e4989"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#31688e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#26828e"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#1f9e89"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#35b779"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#6ece58"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#b5de2b"
                                        ],
                                        [
                                            1.0,
                                            "#fde725"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "rgb(36,36,36)"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "angularaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "zeroline": false,
                                    "gridcolor": "rgb(232,232,232)",
                                    "gridwidth": 2,
                                    "linecolor": "rgb(36,36,36)",
                                    "zerolinecolor": "rgb(36,36,36)",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "yaxis": {
                                "ticks": "outside",
                                "title": {
                                    "standoff": 15
                                },
                                "showgrid": false,
                                "showline": true,
                                "zeroline": false,
                                "gridcolor": "rgb(232,232,232)",
                                "linecolor": "rgb(36,36,36)",
                                "automargin": true,
                                "zerolinecolor": "rgb(36,36,36)"
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "baxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "caxis": {
                                    "ticks": "outside",
                                    "showgrid": false,
                                    "showline": true,
                                    "gridcolor": "rgb(232,232,232)",
                                    "linecolor": "rgb(36,36,36)"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#1F77B4",
                                "#FF7F0E",
                                "#2CA02C",
                                "#D62728",
                                "#9467BD",
                                "#8C564B",
                                "#E377C2",
                                "#7F7F7F",
                                "#BCBD22",
                                "#17BECF"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "outside",
                                    "tickcolor": "rgb(36,36,36)",
                                    "outlinewidth": 1
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "rgb(103,0,31)"
                                    ],
                                    [
                                        0.1,
                                        "rgb(178,24,43)"
                                    ],
                                    [
                                        0.2,
                                        "rgb(214,96,77)"
                                    ],
                                    [
                                        0.3,
                                        "rgb(244,165,130)"
                                    ],
                                    [
                                        0.4,
                                        "rgb(253,219,199)"
                                    ],
                                    [
                                        0.5,
                                        "rgb(247,247,247)"
                                    ],
                                    [
                                        0.6,
                                        "rgb(209,229,240)"
                                    ],
                                    [
                                        0.7,
                                        "rgb(146,197,222)"
                                    ],
                                    [
                                        0.8,
                                        "rgb(67,147,195)"
                                    ],
                                    [
                                        0.9,
                                        "rgb(33,102,172)"
                                    ],
                                    [
                                        1.0,
                                        "rgb(5,48,97)"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#440154"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#482878"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#3e4989"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#31688e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#26828e"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#1f9e89"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#35b779"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#6ece58"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#b5de2b"
                                    ],
                                    [
                                        1.0,
                                        "#fde725"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.3,
                                "fillcolor": "black"
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonyl",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2024-04-12 07:16:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonyl",
                "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-12T07:41:39.358430Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cdia7805/4.embed",
            "fid": "cdia7805:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cdia7805/4/9_H9VNHKKZGVYF365I1CV1RY3NZ8DRT1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cdia7805/4/2_VXTZOEZ0OSLVJ0YJN1NPQCFLA7JB9I.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cdia7805/4/8_QST6I6A0CDRAIHUAWPOUKW6E6SAZHH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cdia7805/4/9_H9VNHKKZGVYF365I1CV1RY3NZ8DRT1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cdia7805:4",
                "plots": "https://api.plotly.com/v2/plots/cdia7805:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=cdia7805"
            },
            "owner": "cdia7805",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~cdia7805/4/",
            "world_readable": true,
            "date_modified": "2025-08-04T12:17:34.293Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cdia7805/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(139, 98, 220)"
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "DWD station Holzhausen",
                        "type": "scatter",
                        "xsrc": "cdia7805:37:379071",
                        "ysrc": "cdia7805:37:f8f4f2",
                        "marker": {
                            "size": 4,
                            "color": "rgb(86, 77, 215)",
                            "symbol": "square",
                            "opacity": 0.69
                        },
                        "showlegend": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Station \"open area\"",
                        "type": "scatter",
                        "xsrc": "cdia7805:3:b07220",
                        "ysrc": "cdia7805:3:dd5612",
                        "marker": {
                            "size": 5,
                            "color": "rgb(21, 36, 225)",
                            "symbol": "circle",
                            "opacity": 0.59
                        }
                    },
                    {
                        "line": {
                            "width": 1
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "none",
                        "name": "Stationär_Wig",
                        "type": "scatter",
                        "xsrc": "cdia7805:21:85a95a",
                        "ysrc": "cdia7805:21:9e9316",
                        "marker": {
                            "size": 5,
                            "color": "rgb(130, 130, 131)",
                            "opacity": 0.3
                        },
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "Station \"Bresser\"",
                        "type": "scatter",
                        "xsrc": "cdia7805:22:a3be25",
                        "ysrc": "cdia7805:22:92c359",
                        "marker": {
                            "size": 5,
                            "color": "rgb(143, 140, 138)",
                            "opacity": 0.7
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "none",
                        "name": "Stationär_TL2",
                        "type": "scatter",
                        "xsrc": "cdia7805:3:b07220",
                        "ysrc": "cdia7805:3:1a5727",
                        "marker": {
                            "size": 4,
                            "color": "rgb(142, 59, 239)",
                            "symbol": "circle",
                            "opacity": 0.71
                        },
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "K"
                            }
                        },
                        "mode": "markers",
                        "name": "Mobile MeteoTracker",
                        "type": "scatter",
                        "xsrc": "cdia7805:2:0fc960",
                        "ysrc": "cdia7805:2:f58901",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 11,
                            "color": "rgb(239, 59, 59)"
                        },
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "F"
                            }
                        },
                        "mode": "markers",
                        "name": "Mobile Sensebox",
                        "type": "scatter",
                        "xsrc": "cdia7805:2:0fc960",
                        "ysrc": "cdia7805:2:2dc5d8",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 10,
                            "color": "rgb(230, 179, 80)"
                        },
                        "showlegend": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers",
                        "name": "Mobile Backpack",
                        "type": "scatter",
                        "xsrc": "cdia7805:9:ac4c3f",
                        "ysrc": "cdia7805:9:0f00a2",
                        "marker": {
                            "line": {
                                "width": 1
                            },
                            "size": 10,
                            "color": "rgb(146, 202, 67)"
                        },
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "x": 0.08,
                        "font": {
                            "size": 20
                        },
                        "text": "<br>"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2023-08-21 06:00",
                            "2023-08-22 23:50"
                        ],
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "Time (CET)"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 14
                        },
                        "autorange": false,
                        "linewidth": 3,
                        "zerolinewidth": 2
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            16,
                            35
                        ],
                        "title": {
                            "font": {
                                "size": 16
                            },
                            "text": "T<sub>air</sub> (°C)"
                        },
                        "showline": true,
                        "tickfont": {
                            "size": 14
                        },
                        "autorange": false,
                        "linewidth": 4
                    },
                    "legend": {
                        "x": 0.8225444469946437,
                        "y": 1.0241293192163503
                    },
                    "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"
                    },
                    "clickmode": "event"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cdia7805",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/35.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-02-22 15:58:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cdia7805",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}