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=cj0xJnA9MjAyNS0wNy0wNyswNSUzQTEzJTNBMTUuODkzNTQ4JTJCMDAlM0EwMA%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=cD0yMDI1LTA3LTA3KzA2JTNBMjYlM0E0Ny43NDQ4NzklMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNy0wNyswOSUzQTE0JTNBMjEuODU4MDU2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-07-07T09:14:21.858056Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Harshmalaviya/1.embed",
            "fid": "Harshmalaviya:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Harshmalaviya/1/9_9IE841ZM4ZBYTPME3R98OS7SPM4J4E.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Harshmalaviya/1/2_WLKOWT1XLGWWXZ31SF5IICYIJ3NWY8.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Harshmalaviya/1/8_SAHY87UGA7VBK2TTK1MYPH8YKUYI22.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Harshmalaviya/1/9_9IE841ZM4ZBYTPME3R98OS7SPM4J4E.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Harshmalaviya:1",
                "plots": "https://api.plotly.com/v2/plots/Harshmalaviya:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Harshmalaviya"
            },
            "owner": "Harshmalaviya",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Harshmalaviya/1/",
            "world_readable": true,
            "date_modified": "2025-07-07T09:16:44.968Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Harshmalaviya/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x",
                                "y": "Trace 0, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Harshmalaviya:0:1f2ff2",
                        "ysrc": "Harshmalaviya:0:abf8f4"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 1, x",
                                "y": "Trace 1, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Harshmalaviya:0:06c067",
                        "ysrc": "Harshmalaviya:0:b07497"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 2, x",
                                "y": "Trace 2, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Harshmalaviya:0:dd40c9",
                        "ysrc": "Harshmalaviya:0:0a9d15"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 3, x",
                                "y": "Trace 3, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Harshmalaviya:0:fbdbac",
                        "ysrc": "Harshmalaviya:0:751666"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 4, x",
                                "y": "Trace 4, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Harshmalaviya:0:546800",
                        "ysrc": "Harshmalaviya:0:3c8470"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Trace 5, x",
                                "y": "Trace 5, y"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Harshmalaviya:0:9290b0",
                        "ysrc": "Harshmalaviya:0:5e3e24"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            305.40987668134557,
                            999.1342518961342
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -96.2719462235634,
                            1668.185641679139
                        ],
                        "autorange": true
                    },
                    "autosize": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Harshmalaviya",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/10.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-07 09:13:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Harshmalaviya",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T09:08:00.686205Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Leejunhee/137.embed",
            "fid": "Leejunhee:137",
            "filename": "성남시 도서관",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Leejunhee/137/9_MV8D2470DM1199GM5TGG60MCUHY04I.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Leejunhee/137/2_M4EMMSLYF29DGPYEBLNHTH87BVQCZK.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Leejunhee/137/8_2ARQEEF6REP6WQWIM6CCCTC6RJFTVZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Leejunhee/137/9_MV8D2470DM1199GM5TGG60MCUHY04I.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Leejunhee:137",
                "plots": "https://api.plotly.com/v2/plots/Leejunhee:137",
                "parent": "https://api.plotly.com/v2/folders/home?user=Leejunhee"
            },
            "owner": "Leejunhee",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 3,
            "web_url": "https://chart-studio.plotly.com/~Leejunhee/137/",
            "world_readable": true,
            "date_modified": "2025-07-07T09:08:00.697Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Leejunhee/137/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "",
                        "type": "scattermapbox",
                        "latsrc": "Leejunhee:136:921430",
                        "lonsrc": "Leejunhee:136:017ea7",
                        "marker": {
                            "size": 15,
                            "color": "blue",
                            "opacity": 0.8
                        },
                        "subplot": "mapbox",
                        "showlegend": false,
                        "legendgroup": "",
                        "hovertextsrc": "Leejunhee:136:301486",
                        "customdatasrc": "Leejunhee:136:81cc4f",
                        "hovertemplate": "<b>%{hovertext}</b><br>좌석수 : %{customdata[0]}<br>도서관전화번호 : %{customdata[1]}<br>홈페이지주소 : <a href='%{customdata[3]}' target='_blank'>%{customdata[3]}</a><extra></extra><br>휴관일 : %{customdata[2]}"
                    }
                ],
                "layout": {
                    "title": {
                        "x": 0.025,
                        "y": 0.98,
                        "font": {
                            "size": 30,
                            "color": "black",
                            "family": "Arial, sans-serif"
                        },
                        "text": "<성남시 도서관>",
                        "xanchor": "left",
                        "yanchor": "top"
                    },
                    "height": 800,
                    "legend": {
                        "tracegroupgap": 0
                    },
                    "mapbox": {
                        "zoom": 13,
                        "style": "open-street-map",
                        "center": {
                            "lat": 37.41520856963171,
                            "lon": 127.13194181033657
                        },
                        "domain": {
                            "x": [
                                0.0,
                                1.0
                            ],
                            "y": [
                                0.0,
                                1.0
                            ]
                        }
                    },
                    "margin": {
                        "b": 0,
                        "l": 300,
                        "r": 0,
                        "t": 0
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1.0,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1.0,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 14,
                            "color": "white",
                            "family": "굴림"
                        },
                        "bgcolor": "rgba(0, 0, 0, 0)"
                    }
                }
            },
            "height": 800,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Leejunhee",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/3.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-06-11 14:21:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Leejunhee",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T08:58:42.490158Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~skunman/5.embed",
            "fid": "skunman:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/skunman:5/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/skunman/5/2_PF24O04ZIAYR5XR6H54K5NZELFTSRS.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/skunman/5/8_6EP5HVFWHU9912ZR8RE96SZRZ72JSL.png",
                "list-thumb": "https://api.plotly.com/v2/files/skunman:5/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/skunman:5",
                "plots": "https://api.plotly.com/v2/plots/skunman:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=skunman"
            },
            "owner": "skunman",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~skunman/5/",
            "world_readable": true,
            "date_modified": "2025-07-07T08:58:42.502Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~skunman/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 0, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:5a0cae",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 1, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:1b81f5",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 2, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:885fe4",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 3, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:1d1f6e",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 4, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:c8aeab",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 5, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:b5fb14",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 6, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:2df93f",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 7, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:6ba1c5",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 8, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:2277ae",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 9, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:634a58",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 10, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:a47f08",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 11, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:dae945",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 12, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:deb22a",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 13, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:bda8af",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 14, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:485098",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 15, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:b3135d",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 16, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:486646",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 17, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:702de6",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 18, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:abb273",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 19, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:70feb4",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 20, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:b9efcc",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 21, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:291394",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 22, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:11174c",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 23, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:1361b8",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 24, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:9e3f74",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 25, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:f42f91",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 26, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:2b0ed3",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 27, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:7db1eb",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 28, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:c5fa25",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 29, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:24f219",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 30, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:147d8f",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 31, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:b0c5af",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 32, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:90231b",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 33, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:0a9468",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 34, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:9f6eb2",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "Trace 0, x; Trace 1, x; Trace 2, x; Trace 3, x; Trace 4, x; Trace 5, x; Trace 6, x; Trace 7, x; Trace 8, x; Trace 9, x; Trace 10, x; Trace 11, x; Trace 12, x; Trace 13, x; Trace 14, x; Trace 15, x; Trace 16, x; Trace 17, x; Trace 18, x; Trace 19, x; Trace 20, x; Trace 21, x; Trace 22, x; Trace 23, x; Trace 24, x; Trace 25, x; Trace 26, x; Trace 27, x; Trace 28, x; Trace 29, x; Trace 30, x; Trace 31, x; Trace 32, x; Trace 33, x; Trace 34, x; Trace 35, x",
                                "y": "Trace 35, y"
                            }
                        },
                        "mode": "lines",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "skunman:4:c5e659",
                        "ysrc": "skunman:4:f101eb",
                        "showlegend": false,
                        "legendgroup": ""
                    },
                    {
                        "line": {
                            "color": "black",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DOS, x",
                                "y": "DOS, y"
                            }
                        },
                        "mode": "lines",
                        "name": "DOS",
                        "type": "scatter",
                        "xsrc": "skunman:4:afd922",
                        "ysrc": "skunman:4:8f6cb0",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "showlegend": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12
                    },
                    "title": {
                        "x": 0.5,
                        "text": "FeSe2 #205 Phonon bands + DOS in cm-1"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            171
                        ],
                        "title": {
                            "text": "Wave Vector"
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            0.6533333333333333
                        ],
                        "tickfont": {
                            "size": 16
                        },
                        "ticktext": [
                            "Γ",
                            "X",
                            "M",
                            "Γ",
                            "R",
                            "X",
                            "M",
                            "R"
                        ],
                        "tickvals": [
                            0,
                            20,
                            40,
                            68,
                            103,
                            131,
                            151,
                            171
                        ]
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            319.08137301766203
                        ],
                        "title": {
                            "text": "Frequency (cm⁻¹)"
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ]
                    },
                    "xaxis2": {
                        "type": "linear",
                        "range": [
                            0,
                            0.49442416547873647
                        ],
                        "anchor": "y2",
                        "domain": [
                            0.6733333333333333,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis2": {
                        "type": "linear",
                        "anchor": "x2",
                        "domain": [
                            0,
                            1
                        ],
                        "matches": "y",
                        "showticklabels": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "hovermode": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~skunman",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-05-25 11:44:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "skunman",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T08:22:24.739075Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~guocj/2.embed",
            "fid": "guocj:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/guocj:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/guocj:2/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/guocj/2/8_KAT1L95AR66XAGX9L3H9HKA3XRZZ3O.png",
                "list-thumb": "https://api.plotly.com/v2/files/guocj:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/guocj:2",
                "plots": "https://api.plotly.com/v2/plots/guocj:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=guocj"
            },
            "owner": "guocj",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~guocj/2/",
            "world_readable": true,
            "date_modified": "2025-07-07T08:22:24.752Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~guocj/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "X",
                                "y": "Y"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "guocj:0:08e0ac",
                        "ysrc": "guocj:0:77f1c4"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "color": "rgb(0, 0, 0)"
                    },
                    "title": {
                        "x": 0.5,
                        "text": "样方1油松点阵分布图"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.4474986462093864,
                            10.448498646209387
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.4935464316423045,
                            10.630546431642305
                        ],
                        "title": {
                            "text": "North"
                        },
                        "autorange": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 160,
                        "r": 160,
                        "t": 40,
                        "pad": 1
                    },
                    "modebar": {
                        "color": "rgba(255, 255, 255, 0.3)",
                        "bgcolor": "rgba(255, 255, 255, 0.5)",
                        "activecolor": "rgba(255, 255, 255, 0.7)",
                        "orientation": "h"
                    },
                    "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"
                    },
                    "separators": ", ",
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~guocj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-07 08:07:05",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "guocj",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T07:57:12.029923Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Gestirn/3.embed",
            "fid": "Gestirn:3",
            "filename": "Plot 3",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Gestirn:3/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Gestirn:3/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Gestirn/3/8_TNIYEGSEYOPLA45SQNNH7ZJJIJ0MW5.png",
                "list-thumb": "https://api.plotly.com/v2/files/Gestirn:3/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Gestirn:3",
                "plots": "https://api.plotly.com/v2/plots/Gestirn:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=Gestirn"
            },
            "owner": "Gestirn",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 12,
            "web_url": "https://chart-studio.plotly.com/~Gestirn/3/",
            "world_readable": true,
            "date_modified": "2025-07-07T07:57:12.041Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Gestirn/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 3.953877639491069
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 0, lat",
                                "lon": "Trace 0, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Hong Kong</b><br>合作论文数: 9<br>机构:<br>Univ Hong Kong (3)<br> Chinese Univ Hong Kong (3)<br> Hong Kong Sports Inst (1)<br> Hong Kong Metropolitan Univ (1)<br> Educ Univ Hong Kong (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:faedb2",
                        "lonsrc": "Gestirn:2:6d634e",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 3.953877639491069
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 1, lat",
                                "lon": "Trace 1, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Guangdong</b><br>合作论文数: 9<br>机构:<br>Shenzhen Univ (5)<br> Guangzhou Sport Univ (2)<br> Shenzhen Kangning Hosp (1)<br> Guangdong Ersha Sports Training Ctr (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:cc02f0",
                        "lonsrc": "Gestirn:2:fe0422",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 3.6191623125197534
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 2, lat",
                                "lon": "Trace 2, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Sichuan</b><br>合作论文数: 7<br>机构:<br>Sichuan Normal Univ (4)<br> Univ Elect Sci & Technol China (3)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:4a98bf",
                        "lonsrc": "Gestirn:2:c251a5",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 3.1876392038420827
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 3, lat",
                                "lon": "Trace 3, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Shanghai</b><br>合作论文数: 5<br>机构:<br>Shanghai Jiao Tong Univ (3)<br> Minist Educ (1)<br> East China Normal Univ (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:7fb23b",
                        "lonsrc": "Gestirn:2:ab00f7",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 3.1876392038420827
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 4, lat",
                                "lon": "Trace 4, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Taiwan</b><br>合作论文数: 5<br>机构:<br>Natl Taiwan Sport Univ (4)<br> Natl Taiwan Normal Univ (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:5a02b7",
                        "lonsrc": "Gestirn:2:b7e341",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 2.9141568686511503
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 5, lat",
                                "lon": "Trace 5, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Hubei</b><br>合作论文数: 4<br>机构:<br>China Univ Geosci (2)<br> Wuhan Sports Univ (1)<br> Wuhan Univ Technol (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:525453",
                        "lonsrc": "Gestirn:2:1dc1b1",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 2.5794415416798357
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 6, lat",
                                "lon": "Trace 6, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Jiangsu</b><br>合作论文数: 3<br>机构:<br>Yangzhou Univ (3)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:8557f8",
                        "lonsrc": "Gestirn:2:1fafce",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 1.5397207708399179
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 7, lat",
                                "lon": "Trace 7, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Fujian</b><br>合作论文数: 1<br>机构:<br>Xiamen Univ (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:58adc6",
                        "lonsrc": "Gestirn:2:a9e119",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 1.5397207708399179
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 8, lat",
                                "lon": "Trace 8, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Zhejiang</b><br>合作论文数: 1<br>机构:<br>Zhejiang Normal Univ (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:d1003b",
                        "lonsrc": "Gestirn:2:ddcde1",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 1.5397207708399179
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 9, lat",
                                "lon": "Trace 9, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Hebei</b><br>合作论文数: 1<br>机构:<br>Hebei Med Univ (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:cbab2e",
                        "lonsrc": "Gestirn:2:74c2ca",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 1.5397207708399179
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 10, lat",
                                "lon": "Trace 10, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Shandong</b><br>合作论文数: 1<br>机构:<br>Shandong Sports Sci Res Ctr (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:2265e9",
                        "lonsrc": "Gestirn:2:71299d",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 1.5397207708399179
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 11, lat",
                                "lon": "Trace 11, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Henan</b><br>合作论文数: 1<br>机构:<br>Henan Univ (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:9a6585",
                        "lonsrc": "Gestirn:2:010df2",
                        "hoverinfo": "text"
                    },
                    {
                        "line": {
                            "color": "rgba(255, 127, 14, 0.6)",
                            "width": 1.5397207708399179
                        },
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 12, lat",
                                "lon": "Trace 12, lon"
                            }
                        },
                        "mode": "lines",
                        "text": "<b>Beijing ↔ Tianjin</b><br>合作论文数: 1<br>机构:<br>Tianjin Univ Sport (1)",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:0abafc",
                        "lonsrc": "Gestirn:2:3ec86c",
                        "hoverinfo": "text"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 13, lat",
                                "lon": "Trace 13, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Hong Kong",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:a2cb0a",
                        "lonsrc": "Gestirn:2:fb3494",
                        "marker": {
                            "size": 24.11809565095832,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Hong Kong</b><br>合作论文数: 9<br>机构:<br>Univ Hong Kong (3)<br> Chinese Univ Hong Kong (3)<br> Hong Kong Sports Inst (1)<br> Hong Kong Metropolitan Univ (1)<br> Educ Univ Hong Kong (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 14, lat",
                                "lon": "Trace 14, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Guangdong",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:d6978f",
                        "lonsrc": "Gestirn:2:78b95a",
                        "marker": {
                            "size": 24.11809565095832,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Guangdong</b><br>合作论文数: 9<br>机构:<br>Shenzhen Univ (5)<br> Guangzhou Sport Univ (2)<br> Shenzhen Kangning Hosp (1)<br> Guangdong Ersha Sports Training Ctr (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 15, lat",
                                "lon": "Trace 15, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Sichuan",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:38f135",
                        "lonsrc": "Gestirn:2:d05fc1",
                        "marker": {
                            "size": 22.556090791758848,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Sichuan</b><br>合作论文数: 7<br>机构:<br>Sichuan Normal Univ (4)<br> Univ Elect Sci & Technol China (3)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 16, lat",
                                "lon": "Trace 16, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Shanghai",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:af19ad",
                        "lonsrc": "Gestirn:2:981055",
                        "marker": {
                            "size": 20.542316284596385,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Shanghai</b><br>合作论文数: 5<br>机构:<br>Shanghai Jiao Tong Univ (3)<br> Minist Educ (1)<br> East China Normal Univ (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 17, lat",
                                "lon": "Trace 17, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Taiwan",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:0e603e",
                        "lonsrc": "Gestirn:2:80bffe",
                        "marker": {
                            "size": 20.542316284596385,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Taiwan</b><br>合作论文数: 5<br>机构:<br>Natl Taiwan Sport Univ (4)<br> Natl Taiwan Normal Univ (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 18, lat",
                                "lon": "Trace 18, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Hubei",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:3f70ed",
                        "lonsrc": "Gestirn:2:d0000c",
                        "marker": {
                            "size": 19.2660653870387,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Hubei</b><br>合作论文数: 4<br>机构:<br>China Univ Geosci (2)<br> Wuhan Sports Univ (1)<br> Wuhan Univ Technol (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 19, lat",
                                "lon": "Trace 19, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Jiangsu",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:dee530",
                        "lonsrc": "Gestirn:2:0336c9",
                        "marker": {
                            "size": 17.704060527839232,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Jiangsu</b><br>合作论文数: 3<br>机构:<br>Yangzhou Univ (3)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 20, lat",
                                "lon": "Trace 20, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Fujian",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:062106",
                        "lonsrc": "Gestirn:2:6ed128",
                        "marker": {
                            "size": 12.852030263919616,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Fujian</b><br>合作论文数: 1<br>机构:<br>Xiamen Univ (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 21, lat",
                                "lon": "Trace 21, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Zhejiang",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:f2c707",
                        "lonsrc": "Gestirn:2:181f94",
                        "marker": {
                            "size": 12.852030263919616,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Zhejiang</b><br>合作论文数: 1<br>机构:<br>Zhejiang Normal Univ (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 22, lat",
                                "lon": "Trace 22, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Hebei",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:d4eb23",
                        "lonsrc": "Gestirn:2:02c6c0",
                        "marker": {
                            "size": 12.852030263919616,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Hebei</b><br>合作论文数: 1<br>机构:<br>Hebei Med Univ (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 23, lat",
                                "lon": "Trace 23, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Shandong",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:df1958",
                        "lonsrc": "Gestirn:2:daf55f",
                        "marker": {
                            "size": 12.852030263919616,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Shandong</b><br>合作论文数: 1<br>机构:<br>Shandong Sports Sci Res Ctr (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 24, lat",
                                "lon": "Trace 24, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Henan",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:ac11b7",
                        "lonsrc": "Gestirn:2:1c1ce3",
                        "marker": {
                            "size": 12.852030263919616,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Henan</b><br>合作论文数: 1<br>机构:<br>Henan Univ (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 25, lat",
                                "lon": "Trace 25, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "text": "Tianjin",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:ebfcb3",
                        "lonsrc": "Gestirn:2:8f97f8",
                        "marker": {
                            "size": 12.852030263919616,
                            "color": "#FF7F0E",
                            "opacity": 0.9
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Tianjin</b><br>合作论文数: 1<br>机构:<br>Tianjin Univ Sport (1)"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "lat": "Trace 26, lat",
                                "lon": "Trace 26, lon"
                            }
                        },
                        "mode": "markers",
                        "name": "",
                        "type": "scattergeo",
                        "latsrc": "Gestirn:2:f2be05",
                        "lonsrc": "Gestirn:2:19567d",
                        "marker": {
                            "line": {
                                "color": "white",
                                "width": 1
                            },
                            "size": 15,
                            "color": "rgba(220, 20, 60, 0.9)",
                            "symbol": "star"
                        },
                        "hoverinfo": "text",
                        "hovertext": "<b>Beijing (主场)</b><br>总合作: 48 篇"
                    }
                ],
                "frames": [],
                "layout": {
                    "geo": {
                        "scope": "asia",
                        "center": {
                            "lat": 30.620949619687458,
                            "lon": 109.03380813692428
                        },
                        "projection": {
                            "type": "mercator",
                            "scale": 2.7790407381122324
                        }
                    },
                    "title": {
                        "x": 0.5,
                        "text": "<b>魏高峡学者 国内与地区合作网络地图</b>"
                    },
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 40
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    },
                                    "error_x": {
                                        "color": "#2a3f5f"
                                    },
                                    "error_y": {
                                        "color": "#2a3f5f"
                                    }
                                }
                            ],
                            "pie": [
                                {
                                    "type": "pie",
                                    "automargin": true
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "white",
                                        "linecolor": "white",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "white",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "fillpattern": {
                                        "size": 10,
                                        "fillmode": "overlay",
                                        "solidity": 0.2
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "barpolar": [
                                {
                                    "type": "barpolar",
                                    "marker": {
                                        "line": {
                                            "color": "#E5ECF6",
                                            "width": 0.5
                                        },
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "pattern": {
                                            "size": 10,
                                            "fillmode": "overlay",
                                            "solidity": 0.2
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermap": [
                                {
                                    "type": "scattermap",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "colorscale": [
                                        [
                                            0,
                                            "#0d0887"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#46039f"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#7201a8"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#9c179e"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#bd3786"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#d8576b"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#ed7953"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#fb9f3a"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#fdca26"
                                        ],
                                        [
                                            1,
                                            "#f0f921"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "#E5ECF6",
                                "showlakes": true,
                                "subunitcolor": "white"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "#E5ECF6",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "gridwidth": 2,
                                    "linecolor": "white",
                                    "zerolinecolor": "white",
                                    "showbackground": true,
                                    "backgroundcolor": "#E5ECF6"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "white",
                                "linecolor": "white",
                                "automargin": true,
                                "zerolinecolor": "white",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "white",
                                    "linecolor": "white"
                                },
                                "bgcolor": "#E5ECF6"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#FFA15A",
                                "#19d3f3",
                                "#FF6692",
                                "#B6E880",
                                "#FF97FF",
                                "#FECB52"
                            ],
                            "coloraxis": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0d0887"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#46039f"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#7201a8"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#9c179e"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#bd3786"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#d8576b"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#ed7953"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#fb9f3a"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#fdca26"
                                    ],
                                    [
                                        1,
                                        "#f0f921"
                                    ]
                                ]
                            },
                            "hoverlabel": {
                                "align": "left"
                            },
                            "plot_bgcolor": "#E5ECF6",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Gestirn",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/85.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-06 17:36:26",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Gestirn",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T07:37:40.970667Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mesic.domagoj/1.embed",
            "fid": "mesic.domagoj:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mesic.domagoj:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/mesic.domagoj/1/2_TVAHYX6ALESKZX4ZHZA4U5CA0WJWSO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mesic.domagoj/1/8_TM02USGBGDCKH76VCBLNKMY811NGA0.png",
                "list-thumb": "https://api.plotly.com/v2/files/mesic.domagoj:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mesic.domagoj:1",
                "plots": "https://api.plotly.com/v2/plots/mesic.domagoj:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=mesic.domagoj"
            },
            "owner": "mesic.domagoj",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~mesic.domagoj/1/",
            "world_readable": true,
            "date_modified": "2025-07-07T07:37:45.613Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mesic.domagoj/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "mesic.domagoj:0:bebf26",
                        "ysrc": "mesic.domagoj:0:19199f"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            5,
                            20
                        ],
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.8333333333333334,
                            4.166666666666667
                        ],
                        "autorange": true
                    },
                    "shapes": [],
                    "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"
                    },
                    "annotations": [
                        {
                            "x": 12.5,
                            "y": 3.5,
                            "text": "Test<br>",
                            "align": "center",
                            "xanchor": "auto",
                            "showarrow": false,
                            "textangle": 2
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mesic.domagoj",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/47.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-07 07:36:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mesic.domagoj",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T06:45:12.687672Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonghaeeun/136.embed",
            "fid": "jeonghaeeun:136",
            "filename": "Alkane_평택(2024연보)_도데칸삭제",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jeonghaeeun:136/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jeonghaeeun:136/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonghaeeun/136/8_MQ745Z8WLSHC31ZKAHG8FAVI1OQ7WV.png",
                "list-thumb": "https://api.plotly.com/v2/files/jeonghaeeun:136/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonghaeeun:136",
                "plots": "https://api.plotly.com/v2/plots/jeonghaeeun:136",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonghaeeun"
            },
            "owner": "jeonghaeeun",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonghaeeun/136/",
            "world_readable": true,
            "date_modified": "2025-07-07T06:46:19.139Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonghaeeun/136/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d9406e",
                        "meta": {
                            "columnNames": {
                                "x": "Alkenes"
                            }
                        },
                        "mode": "markers",
                        "name": "Alkenes",
                        "type": "box",
                        "xsrc": "jeonghaeeun:135:ae3764",
                        "width": 0.6,
                        "boxmean": true,
                        "orientation": "h",
                        "whiskerwidth": 0.2
                    },
                    {
                        "uid": "ad0115",
                        "meta": {
                            "columnNames": {
                                "x": "Alkanes"
                            }
                        },
                        "name": "Alkanes",
                        "type": "box",
                        "xsrc": "jeonghaeeun:135:924727",
                        "width": 0.6,
                        "boxmean": true,
                        "orientation": "h"
                    },
                    {
                        "uid": "2a0dbb",
                        "meta": {
                            "columnNames": {
                                "x": "Aromatics"
                            }
                        },
                        "name": "Aromatics",
                        "type": "box",
                        "xsrc": "jeonghaeeun:135:83f708",
                        "width": 0.6,
                        "marker": {
                            "color": "rgb(247, 26, 4)"
                        },
                        "boxmean": true,
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20,
                        "color": "#444",
                        "family": "\"Open Sans\", verdana, arial, sans-serif"
                    },
                    "smith": false,
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 25,
                            "color": "#444",
                            "family": "Arial"
                        },
                        "text": ""
                    },
                    "width": 1172,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.5,
                            25
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "ppb"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": true,
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": false,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.4444444444444444,
                            2.444444444444444
                        ],
                        "title": {
                            "text": "Click to enter Y axis title"
                        },
                        "domain": [
                            0,
                            0.4
                        ],
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true
                    },
                    "boxgap": 0.4,
                    "height": 590,
                    "legend": {
                        "x": 1.02,
                        "y": 1,
                        "font": {
                            "size": 12,
                            "color": "#444",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "bgcolor": "#fff",
                        "xanchor": "left",
                        "yanchor": "auto",
                        "traceorder": "normal",
                        "bordercolor": "#444",
                        "borderwidth": 0,
                        "orientation": "v"
                    },
                    "margin": {
                        "b": 80,
                        "l": 130,
                        "r": 80,
                        "t": 100,
                        "pad": 0,
                        "autoexpand": true
                    },
                    "shapes": [],
                    "boxmode": "group",
                    "modebar": {
                        "orientation": "v"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "clickmode": "event+select",
                    "hovermode": "closest",
                    "hoverlabel": {
                        "font": {
                            "size": 19
                        },
                        "align": "right"
                    },
                    "separators": ".,",
                    "showlegend": false,
                    "annotations": [],
                    "boxgroupgap": 0.2,
                    "hidesources": false,
                    "plot_bgcolor": "#fff",
                    "paper_bgcolor": "#fff"
                }
            },
            "height": 590,
            "width": 1172,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonghaeeun",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-03-11 08:09:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonghaeeun",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T06:41:53.710025Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeonghaeeun/134.embed",
            "fid": "jeonghaeeun:134",
            "filename": "Alkane_김포(2024연보)_도데칸삭제",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jeonghaeeun:134/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jeonghaeeun:134/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jeonghaeeun/134/8_5G71M0RKHKOZTO7I1F5HBK9067RXPD.png",
                "list-thumb": "https://api.plotly.com/v2/files/jeonghaeeun:134/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeonghaeeun:134",
                "plots": "https://api.plotly.com/v2/plots/jeonghaeeun:134",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeonghaeeun"
            },
            "owner": "jeonghaeeun",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jeonghaeeun/134/",
            "world_readable": true,
            "date_modified": "2025-07-07T06:43:08.791Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeonghaeeun/134/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "d9406e",
                        "meta": {
                            "columnNames": {
                                "x": "Alkenes"
                            }
                        },
                        "mode": "markers",
                        "name": "Alkenes",
                        "type": "box",
                        "xsrc": "jeonghaeeun:133:ae3764",
                        "width": 0.6,
                        "boxmean": true,
                        "orientation": "h",
                        "whiskerwidth": 0.2
                    },
                    {
                        "uid": "ad0115",
                        "meta": {
                            "columnNames": {
                                "x": "Alkanes"
                            }
                        },
                        "name": "Alkanes",
                        "type": "box",
                        "xsrc": "jeonghaeeun:133:924727",
                        "width": 0.6,
                        "boxmean": true,
                        "orientation": "h"
                    },
                    {
                        "uid": "2a0dbb",
                        "meta": {
                            "columnNames": {
                                "x": "Aromatics"
                            }
                        },
                        "name": "Aromatics",
                        "type": "box",
                        "xsrc": "jeonghaeeun:133:83f708",
                        "width": 0.6,
                        "marker": {
                            "color": "rgb(247, 26, 4)"
                        },
                        "boxmean": true,
                        "orientation": "h"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 20,
                        "color": "#444",
                        "family": "\"Open Sans\", verdana, arial, sans-serif"
                    },
                    "smith": false,
                    "title": {
                        "x": 0.5,
                        "font": {
                            "size": 25,
                            "color": "#444",
                            "family": "Arial"
                        },
                        "text": ""
                    },
                    "width": 1172,
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.5,
                            25
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "ppb"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "showline": true,
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": false,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -0.4444444444444444,
                            2.444444444444444
                        ],
                        "title": {
                            "text": "Click to enter Y axis title"
                        },
                        "domain": [
                            0,
                            0.4
                        ],
                        "tickfont": {
                            "size": 15
                        },
                        "autorange": true
                    },
                    "boxgap": 0.4,
                    "height": 590,
                    "legend": {
                        "x": 1.02,
                        "y": 1,
                        "font": {
                            "size": 12,
                            "color": "#444",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "bgcolor": "#fff",
                        "xanchor": "left",
                        "yanchor": "auto",
                        "traceorder": "normal",
                        "bordercolor": "#444",
                        "borderwidth": 0,
                        "orientation": "v"
                    },
                    "margin": {
                        "b": 80,
                        "l": 130,
                        "r": 80,
                        "t": 100,
                        "pad": 0,
                        "autoexpand": true
                    },
                    "shapes": [],
                    "boxmode": "group",
                    "modebar": {
                        "orientation": "v"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "clickmode": "event+select",
                    "hovermode": "closest",
                    "hoverlabel": {
                        "font": {
                            "size": 19
                        },
                        "align": "right"
                    },
                    "separators": ".,",
                    "showlegend": false,
                    "annotations": [],
                    "boxgroupgap": 0.2,
                    "hidesources": false,
                    "plot_bgcolor": "#fff",
                    "paper_bgcolor": "#fff"
                }
            },
            "height": 590,
            "width": 1172,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeonghaeeun",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-03-11 08:09:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeonghaeeun",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T06:40:34.583979Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Arnav1001/6.embed",
            "fid": "Arnav1001:6",
            "filename": "Singapore PM2.5 & NOx Levels",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Arnav1001:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/Arnav1001:6/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Arnav1001/6/8_P79GE4VZRQYQNGKYB8430XVP4DLFUN.png",
                "list-thumb": "https://api.plotly.com/v2/files/Arnav1001:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Arnav1001:6",
                "plots": "https://api.plotly.com/v2/plots/Arnav1001:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=Arnav1001"
            },
            "owner": "Arnav1001",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Arnav1001/6/",
            "world_readable": true,
            "date_modified": "2025-07-11T05:59:29.545Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Arnav1001/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "97dad7",
                        "meta": {
                            "columnNames": {
                                "x": "datetime",
                                "y": "average_pm25"
                            }
                        },
                        "mode": "lines",
                        "name": "Weekly Average <br>PM2.5 Levels",
                        "type": "scatter",
                        "xsrc": "Arnav1001:5:c5f777",
                        "ysrc": "Arnav1001:5:79443a"
                    },
                    {
                        "uid": "10d215",
                        "name": "PM2.5 Level <br>Trend Line",
                        "transforms": [
                            {
                                "rms": 4.318250741899937,
                                "type": "fit",
                                "xmid": "2020-07-05",
                                "ymid": 13.03163481953291,
                                "inputUid": "97dad7",
                                "regressor": "x",
                                "parameters": [
                                    {
                                        "hold": false,
                                        "name": "m",
                                        "error": 2.4196709751344394e-07,
                                        "value": -1.5741267807440365e-06
                                    },
                                    {
                                        "hold": false,
                                        "name": "b",
                                        "error": 0.3973161449433401,
                                        "value": 15.268909730468794
                                    }
                                ],
                                "regressand": "y",
                                "correlation": 0.28769752665447357,
                                "fitfunction": "m*x + b",
                                "inputxrange": [],
                                "outputxrange": [],
                                "interpolation": 50
                            }
                        ]
                    },
                    {
                        "uid": "6b1517",
                        "meta": {
                            "columnNames": {
                                "x": "Year",
                                "y": "NO2_Annual_Mean",
                                "text": "NO2_Annual_Mean"
                            }
                        },
                        "mode": "lines",
                        "name": "Annual Nitrogen <br>Dioxide Levels",
                        "type": "scatter",
                        "xsrc": "Arnav1001:7:9c690e",
                        "ysrc": "Arnav1001:7:8be74c",
                        "error_x": {
                            "type": "percent",
                            "color": "#00cc96",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "textsrc": "Arnav1001:7:8be74c",
                        "hoverinfo": "x+y+text+name",
                        "hoverlabel": {
                            "namelength": 15
                        },
                        "showlegend": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Figure 6. PM2.5 (2016-2025) and Nitrogen Dioxide (2016-2023) Levels in Singapore"
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "2016-01-01",
                            "2025-01-05"
                        ],
                        "title": {
                            "text": "Year"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            2.8688888888888893,
                            55.291111111111114
                        ],
                        "title": {
                            "text": "Microgram Per Cubic Metre"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.85,
                        "y": 1
                    },
                    "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"
                    },
                    "annotations": [
                        {
                            "x": "2019-09-25 14:12:08.0899",
                            "y": 52.44582602339182,
                            "ax": -108,
                            "ay": 67,
                            "font": {
                                "size": 18
                            },
                            "text": "2019 Southeast Asian <br>Haze"
                        },
                        {
                            "x": "2023-10-09 03:15:57.3034",
                            "y": 26.234714912280708,
                            "ax": -35,
                            "ay": -75,
                            "font": {
                                "size": 18
                            },
                            "text": "Regional Haze Situation"
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Arnav1001",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/1.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-05 09:21:14",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Arnav1001",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-07-07T06:26:47.744879Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Santu16/1.embed",
            "fid": "Santu16:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Santu16:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Santu16/1/2_F1HXLHLRBBSW3ZVE6O1C3DZ21KYTLE.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Santu16/1/8_JFKJF0YSPOGSC3FVIQVX6CDS5P0GTY.png",
                "list-thumb": "https://api.plotly.com/v2/files/Santu16:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Santu16:1",
                "plots": "https://api.plotly.com/v2/plots/Santu16:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=Santu16"
            },
            "owner": "Santu16",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Santu16/1/",
            "world_readable": true,
            "date_modified": "2025-07-07T06:27:03.669Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Santu16/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Distance",
                                "y": "Time"
                            }
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "Santu16:0:f68b33",
                        "ysrc": "Santu16:0:29c8e3"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Distance vs Time"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            497.39091718610865
                        ],
                        "autorange": false,
                        "showspikes": false
                    },
                    "yaxis": {
                        "type": "category",
                        "range": [
                            -10.666666666666668,
                            202.66666666666666
                        ],
                        "autorange": true,
                        "showspikes": false
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "closest"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Santu16",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-07 06:24:20",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Santu16",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}