{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "98ecf002",
   "metadata": {},
   "source": [
    "<img src='https://www.actris.eu/sites/default/files/inline-images/Actris%20logo.png' width=200 align=right>\n",
    "\n",
    "# ACTRIS DC \n",
    "## Equivalent black carbon (eBC)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d2fd612b",
   "metadata": {},
   "source": [
    "Some text explaining a bit about eBC, instruments and so on..\n",
    "\n",
    "\n",
    "Filter absorption photometers \n",
    "The aerosol absorption coefficient is measured in \n",
    "\n",
    "\n",
    "The particle number concentrations in [dN/dlogDp] are measured with Mobility Particle Size Spectrometers (SMPS or DMPS), where D in [nm] is the geometric mean of the channels. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 53,
   "id": "4643680b",
   "metadata": {},
   "outputs": [],
   "source": [
    "import xarray as xr \n",
    "import netCDF4 as nc \n",
    "import threddsclient\n",
    "\n",
    "import plotly.express as pxl\n",
    "import statistics"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 54,
   "id": "4114eeb0",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "All NRT filter_absorption_photometer datasets with opendap protocol: \n",
      " ['https://thredds.nilu.no/thredds/dodsC/actris_nrt/RO0010R.20230327050000.20230627051045.filter_absorption_photometer...3mo.1h.RO03L_Magee_AE33_INO_NRT.RO03L_AE33.lev1.5.nc', 'https://thredds.nilu.no/thredds/dodsC/actris_nrt/IT0025U.20230328140000.20230627050609.filter_absorption_photometer...13w.1h.IT06L_Magee_AE33_MIL_NRT.IT06L_AE33.lev1.5.nc', 'https://thredds.nilu.no/thredds/dodsC/actris_nrt/IT0022C.20230327130000.20230627050606.filter_absorption_photometer...3mo.1h.IT06L_Magee_AE33_BO_NRT.IT06L_AE33.lev1.5.nc', 'https://thredds.nilu.no/thredds/dodsC/actris_nrt/IT0009R.20230327050000.20230627050417.filter_absorption_photometer...3mo.1h.IT06L_Magee_AE33_CMN_NRT.IT06L_AE33.lev1.5.nc', 'https://thredds.nilu.no/thredds/dodsC/actris_nrt/GR0100B.20230503000000.20230627050604.filter_absorption_photometer...8w.1h.GR05L_Magee_AE33_DEM_dry_NRT.GR05L_abs_coef_AE33_v1.lev1.5.nc', 'https://thredds.nilu.no/thredds/dodsC/actris_nrt/FR0020R.20230327050000.20230627044803.filter_absorption_photometer...3mo.1h.FR01L_Magee_AE33_SIR_pm1_NRT.FR01L_Magee_AE33_SIR.lev1.5.nc', 'https://thredds.nilu.no/thredds/dodsC/actris_nrt/FR0020R.20230327050000.20230627043402.filter_absorption_photometer...3mo.1h.FR01L_Magee_AE33_SIR_pm10_NRT.FR01L_Magee_AE33_SIR.lev1.5.nc', 'https://thredds.nilu.no/thredds/dodsC/actris_nrt/ES0019U.20230314070000.20230510090404.filter_absorption_photometer...8w.1h.ES05L_Magee_AE33_sn143_NRT.ES05L_AE33.lev1.5.nc', 'https://thredds.nilu.no/thredds/dodsC/actris_nrt/BG0001R.20230325230000.20230625195845.filter_absorption_photometer..aerosol.3mo.1h.BG02L_GMD_CLAP-3W_BEO_NRT.BG02L_abs_coef.lev1.5.nc']\n"
     ]
    }
   ],
   "source": [
    "# Get the ACTRIS NRT thredds catalog\n",
    "all_opendap_urls = threddsclient.opendap_urls('https://thredds.nilu.no/thredds/catalog/actris_nrt/catalog.xml')\n",
    "\n",
    "# Get all filter absorption photometer opendap urls\n",
    "fap_opendap_urls = [x for x in all_opendap_urls if 'filter_absorption_photometer' in x]\n",
    "print('All NRT filter_absorption_photometer datasets with opendap protocol: \\n',fap_opendap_urls)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 55,
   "id": "f67e7d25",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'https://thredds.nilu.no/thredds/dodsC/actris_nrt/BG0001R.20230325230000.20230625195845.filter_absorption_photometer..aerosol.3mo.1h.BG02L_GMD_CLAP-3W_BEO_NRT.BG02L_abs_coef.lev1.5.nc'"
      ]
     },
     "execution_count": 55,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# For this example only one opendap_url is used: \n",
    "opendap_url = fap_opendap_urls[-1]\n",
    "opendap_url"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 56,
   "id": "8f397df0",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
       "<defs>\n",
       "<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
       "<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
       "<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
       "<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
       "</symbol>\n",
       "<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
       "<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
       "<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
       "<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
       "<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
       "</symbol>\n",
       "</defs>\n",
       "</svg>\n",
       "<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
       " *\n",
       " */\n",
       "\n",
       ":root {\n",
       "  --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
       "  --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
       "  --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
       "  --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
       "  --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
       "  --xr-background-color: var(--jp-layout-color0, white);\n",
       "  --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
       "  --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
       "}\n",
       "\n",
       "html[theme=dark],\n",
       "body[data-theme=dark],\n",
       "body.vscode-dark {\n",
       "  --xr-font-color0: rgba(255, 255, 255, 1);\n",
       "  --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
       "  --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
       "  --xr-border-color: #1F1F1F;\n",
       "  --xr-disabled-color: #515151;\n",
       "  --xr-background-color: #111111;\n",
       "  --xr-background-color-row-even: #111111;\n",
       "  --xr-background-color-row-odd: #313131;\n",
       "}\n",
       "\n",
       ".xr-wrap {\n",
       "  display: block !important;\n",
       "  min-width: 300px;\n",
       "  max-width: 700px;\n",
       "}\n",
       "\n",
       ".xr-text-repr-fallback {\n",
       "  /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
       "  display: none;\n",
       "}\n",
       "\n",
       ".xr-header {\n",
       "  padding-top: 6px;\n",
       "  padding-bottom: 6px;\n",
       "  margin-bottom: 4px;\n",
       "  border-bottom: solid 1px var(--xr-border-color);\n",
       "}\n",
       "\n",
       ".xr-header > div,\n",
       ".xr-header > ul {\n",
       "  display: inline;\n",
       "  margin-top: 0;\n",
       "  margin-bottom: 0;\n",
       "}\n",
       "\n",
       ".xr-obj-type,\n",
       ".xr-array-name {\n",
       "  margin-left: 2px;\n",
       "  margin-right: 10px;\n",
       "}\n",
       "\n",
       ".xr-obj-type {\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-sections {\n",
       "  padding-left: 0 !important;\n",
       "  display: grid;\n",
       "  grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
       "}\n",
       "\n",
       ".xr-section-item {\n",
       "  display: contents;\n",
       "}\n",
       "\n",
       ".xr-section-item input {\n",
       "  display: none;\n",
       "}\n",
       "\n",
       ".xr-section-item input + label {\n",
       "  color: var(--xr-disabled-color);\n",
       "}\n",
       "\n",
       ".xr-section-item input:enabled + label {\n",
       "  cursor: pointer;\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-section-item input:enabled + label:hover {\n",
       "  color: var(--xr-font-color0);\n",
       "}\n",
       "\n",
       ".xr-section-summary {\n",
       "  grid-column: 1;\n",
       "  color: var(--xr-font-color2);\n",
       "  font-weight: 500;\n",
       "}\n",
       "\n",
       ".xr-section-summary > span {\n",
       "  display: inline-block;\n",
       "  padding-left: 0.5em;\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:disabled + label {\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-section-summary-in + label:before {\n",
       "  display: inline-block;\n",
       "  content: '►';\n",
       "  font-size: 11px;\n",
       "  width: 15px;\n",
       "  text-align: center;\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:disabled + label:before {\n",
       "  color: var(--xr-disabled-color);\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:checked + label:before {\n",
       "  content: '▼';\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:checked + label > span {\n",
       "  display: none;\n",
       "}\n",
       "\n",
       ".xr-section-summary,\n",
       ".xr-section-inline-details {\n",
       "  padding-top: 4px;\n",
       "  padding-bottom: 4px;\n",
       "}\n",
       "\n",
       ".xr-section-inline-details {\n",
       "  grid-column: 2 / -1;\n",
       "}\n",
       "\n",
       ".xr-section-details {\n",
       "  display: none;\n",
       "  grid-column: 1 / -1;\n",
       "  margin-bottom: 5px;\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:checked ~ .xr-section-details {\n",
       "  display: contents;\n",
       "}\n",
       "\n",
       ".xr-array-wrap {\n",
       "  grid-column: 1 / -1;\n",
       "  display: grid;\n",
       "  grid-template-columns: 20px auto;\n",
       "}\n",
       "\n",
       ".xr-array-wrap > label {\n",
       "  grid-column: 1;\n",
       "  vertical-align: top;\n",
       "}\n",
       "\n",
       ".xr-preview {\n",
       "  color: var(--xr-font-color3);\n",
       "}\n",
       "\n",
       ".xr-array-preview,\n",
       ".xr-array-data {\n",
       "  padding: 0 5px !important;\n",
       "  grid-column: 2;\n",
       "}\n",
       "\n",
       ".xr-array-data,\n",
       ".xr-array-in:checked ~ .xr-array-preview {\n",
       "  display: none;\n",
       "}\n",
       "\n",
       ".xr-array-in:checked ~ .xr-array-data,\n",
       ".xr-array-preview {\n",
       "  display: inline-block;\n",
       "}\n",
       "\n",
       ".xr-dim-list {\n",
       "  display: inline-block !important;\n",
       "  list-style: none;\n",
       "  padding: 0 !important;\n",
       "  margin: 0;\n",
       "}\n",
       "\n",
       ".xr-dim-list li {\n",
       "  display: inline-block;\n",
       "  padding: 0;\n",
       "  margin: 0;\n",
       "}\n",
       "\n",
       ".xr-dim-list:before {\n",
       "  content: '(';\n",
       "}\n",
       "\n",
       ".xr-dim-list:after {\n",
       "  content: ')';\n",
       "}\n",
       "\n",
       ".xr-dim-list li:not(:last-child):after {\n",
       "  content: ',';\n",
       "  padding-right: 5px;\n",
       "}\n",
       "\n",
       ".xr-has-index {\n",
       "  font-weight: bold;\n",
       "}\n",
       "\n",
       ".xr-var-list,\n",
       ".xr-var-item {\n",
       "  display: contents;\n",
       "}\n",
       "\n",
       ".xr-var-item > div,\n",
       ".xr-var-item label,\n",
       ".xr-var-item > .xr-var-name span {\n",
       "  background-color: var(--xr-background-color-row-even);\n",
       "  margin-bottom: 0;\n",
       "}\n",
       "\n",
       ".xr-var-item > .xr-var-name:hover span {\n",
       "  padding-right: 5px;\n",
       "}\n",
       "\n",
       ".xr-var-list > li:nth-child(odd) > div,\n",
       ".xr-var-list > li:nth-child(odd) > label,\n",
       ".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
       "  background-color: var(--xr-background-color-row-odd);\n",
       "}\n",
       "\n",
       ".xr-var-name {\n",
       "  grid-column: 1;\n",
       "}\n",
       "\n",
       ".xr-var-dims {\n",
       "  grid-column: 2;\n",
       "}\n",
       "\n",
       ".xr-var-dtype {\n",
       "  grid-column: 3;\n",
       "  text-align: right;\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-var-preview {\n",
       "  grid-column: 4;\n",
       "}\n",
       "\n",
       ".xr-index-preview {\n",
       "  grid-column: 2 / 5;\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-var-name,\n",
       ".xr-var-dims,\n",
       ".xr-var-dtype,\n",
       ".xr-preview,\n",
       ".xr-attrs dt {\n",
       "  white-space: nowrap;\n",
       "  overflow: hidden;\n",
       "  text-overflow: ellipsis;\n",
       "  padding-right: 10px;\n",
       "}\n",
       "\n",
       ".xr-var-name:hover,\n",
       ".xr-var-dims:hover,\n",
       ".xr-var-dtype:hover,\n",
       ".xr-attrs dt:hover {\n",
       "  overflow: visible;\n",
       "  width: auto;\n",
       "  z-index: 1;\n",
       "}\n",
       "\n",
       ".xr-var-attrs,\n",
       ".xr-var-data,\n",
       ".xr-index-data {\n",
       "  display: none;\n",
       "  background-color: var(--xr-background-color) !important;\n",
       "  padding-bottom: 5px !important;\n",
       "}\n",
       "\n",
       ".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
       ".xr-var-data-in:checked ~ .xr-var-data,\n",
       ".xr-index-data-in:checked ~ .xr-index-data {\n",
       "  display: block;\n",
       "}\n",
       "\n",
       ".xr-var-data > table {\n",
       "  float: right;\n",
       "}\n",
       "\n",
       ".xr-var-name span,\n",
       ".xr-var-data,\n",
       ".xr-index-name div,\n",
       ".xr-index-data,\n",
       ".xr-attrs {\n",
       "  padding-left: 25px !important;\n",
       "}\n",
       "\n",
       ".xr-attrs,\n",
       ".xr-var-attrs,\n",
       ".xr-var-data,\n",
       ".xr-index-data {\n",
       "  grid-column: 1 / -1;\n",
       "}\n",
       "\n",
       "dl.xr-attrs {\n",
       "  padding: 0;\n",
       "  margin: 0;\n",
       "  display: grid;\n",
       "  grid-template-columns: 125px auto;\n",
       "}\n",
       "\n",
       ".xr-attrs dt,\n",
       ".xr-attrs dd {\n",
       "  padding: 0;\n",
       "  margin: 0;\n",
       "  float: left;\n",
       "  padding-right: 10px;\n",
       "  width: auto;\n",
       "}\n",
       "\n",
       ".xr-attrs dt {\n",
       "  font-weight: normal;\n",
       "  grid-column: 1;\n",
       "}\n",
       "\n",
       ".xr-attrs dt:hover span {\n",
       "  display: inline-block;\n",
       "  background: var(--xr-background-color);\n",
       "  padding-right: 10px;\n",
       "}\n",
       "\n",
       ".xr-attrs dd {\n",
       "  grid-column: 2;\n",
       "  white-space: pre-wrap;\n",
       "  word-break: break-all;\n",
       "}\n",
       "\n",
       ".xr-icon-database,\n",
       ".xr-icon-file-text2,\n",
       ".xr-no-icon {\n",
       "  display: inline-block;\n",
       "  vertical-align: middle;\n",
       "  width: 1em;\n",
       "  height: 1.5em !important;\n",
       "  stroke-width: 0;\n",
       "  stroke: currentColor;\n",
       "  fill: currentColor;\n",
       "}\n",
       "</style><pre class='xr-text-repr-fallback'>&lt;xarray.Dataset&gt;\n",
       "Dimensions:                                               (time: 2057,\n",
       "                                                           tbnds: 2,\n",
       "                                                           metadata_time: 1,\n",
       "                                                           Location: 1,\n",
       "                                                           pressure_qc_flags: 2,\n",
       "                                                           temperature_qc_flags: 1,\n",
       "                                                           Wavelength: 3,\n",
       "                                                           aerosol_absorption_coefficient_amean_qc_flags: 1,\n",
       "                                                           aerosol_absorption_coefficient_prec1587_qc_flags: 1,\n",
       "                                                           aerosol_absorption_coefficient_perc8413_qc_flags: 1)\n",
       "Coordinates:\n",
       "  * time                                                  (time) datetime64[ns] ...\n",
       "  * metadata_time                                         (metadata_time) datetime64[ns] ...\n",
       "  * Location                                              (Location) |S64 b&#x27;i...\n",
       "  * Wavelength                                            (Wavelength) float64 ...\n",
       "Dimensions without coordinates: tbnds, pressure_qc_flags, temperature_qc_flags,\n",
       "                                aerosol_absorption_coefficient_amean_qc_flags,\n",
       "                                aerosol_absorption_coefficient_prec1587_qc_flags,\n",
       "                                aerosol_absorption_coefficient_perc8413_qc_flags\n",
       "Data variables: (12/17)\n",
       "    time_bnds                                             (time, tbnds) datetime64[ns] ...\n",
       "    metadata_time_bnds                                    (metadata_time, tbnds) datetime64[ns] ...\n",
       "    pressure_qc                                           (Location, pressure_qc_flags, time) float64 ...\n",
       "    pressure_ebasmetadata                                 (Location, metadata_time) |S64 ...\n",
       "    temperature_qc                                        (Location, temperature_qc_flags, time) float64 ...\n",
       "    temperature_ebasmetadata                              (Location, metadata_time) |S64 ...\n",
       "    ...                                                    ...\n",
       "    aerosol_absorption_coefficient_perc8413_ebasmetadata  (Wavelength, metadata_time) |S64 ...\n",
       "    pressure                                              (Location, time) float64 ...\n",
       "    temperature                                           (Location, time) float64 ...\n",
       "    aerosol_absorption_coefficient_amean                  (Wavelength, time) float64 ...\n",
       "    aerosol_absorption_coefficient_prec1587               (Wavelength, time) float64 ...\n",
       "    aerosol_absorption_coefficient_perc8413               (Wavelength, time) float64 ...\n",
       "Attributes: (12/100)\n",
       "    Conventions:                     CF-1.8, ACDD-1.3\n",
       "    featureType:                     timeSeries\n",
       "    title:                           Ground based in situ observations of fil...\n",
       "    keywords:                        aerosol_absorption_coefficient, ACTRIS_N...\n",
       "    id:                              BG0001R.20230325230000.20230625195845.fi...\n",
       "    naming_authority:                EBAS\n",
       "    ...                              ...\n",
       "    geospatial_lat_units:            degrees_north\n",
       "    geospatial_lon_units:            degrees_east\n",
       "    comment:                         {\\n    &quot;Data definition&quot;: &quot;EBAS_1.1&quot;,\\n ...\n",
       "    standard_name_vocabulary:        CF-1.7, ACDD-1.3\n",
       "    history:                         None\n",
       "    creator_url:                     ebas.nilu.no</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>xarray.Dataset</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-5f92fd87-69c8-402a-a3cf-b78f1c4c22a2' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-5f92fd87-69c8-402a-a3cf-b78f1c4c22a2' class='xr-section-summary'  title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 2057</li><li><span>tbnds</span>: 2</li><li><span class='xr-has-index'>metadata_time</span>: 1</li><li><span class='xr-has-index'>Location</span>: 1</li><li><span>pressure_qc_flags</span>: 2</li><li><span>temperature_qc_flags</span>: 1</li><li><span class='xr-has-index'>Wavelength</span>: 3</li><li><span>aerosol_absorption_coefficient_amean_qc_flags</span>: 1</li><li><span>aerosol_absorption_coefficient_prec1587_qc_flags</span>: 1</li><li><span>aerosol_absorption_coefficient_perc8413_qc_flags</span>: 1</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-5f8fcb9f-1a76-47f9-a3bb-33b2b496c84a' class='xr-section-summary-in' type='checkbox'  checked><label for='section-5f8fcb9f-1a76-47f9-a3bb-33b2b496c84a' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2023-03-25T23:30:00 ... 2023-06-...</div><input id='attrs-3819ae51-53d9-4058-b12e-af47b5c8876a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3819ae51-53d9-4058-b12e-af47b5c8876a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1b2c0b76-741f-4506-9464-09d22fcc4a4e' class='xr-var-data-in' type='checkbox'><label for='data-1b2c0b76-741f-4506-9464-09d22fcc4a4e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>long_name :</span></dt><dd>time of measurement</dd><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bnds</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2023-03-25T23:30:00.000000000&#x27;, &#x27;2023-03-26T00:30:00.000000000&#x27;,\n",
       "       &#x27;2023-03-26T01:30:00.000000000&#x27;, ..., &#x27;2023-06-25T13:30:00.000000000&#x27;,\n",
       "       &#x27;2023-06-25T14:30:00.000000000&#x27;, &#x27;2023-06-25T15:30:00.000000000&#x27;],\n",
       "      dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>metadata_time</span></div><div class='xr-var-dims'>(metadata_time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2023-05-10T19:30:00</div><input id='attrs-abbf4d6e-1d74-463b-9775-d7feb69fcd16' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-abbf4d6e-1d74-463b-9775-d7feb69fcd16' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9c8c8b60-813c-45b2-807c-133d0a325d8e' class='xr-var-data-in' type='checkbox'><label for='data-9c8c8b60-813c-45b2-807c-133d0a325d8e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>long_name :</span></dt><dd>time of ebas metadata intervals</dd><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>metadata_time_bnds</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2023-05-10T19:30:00.000000000&#x27;], dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>Location</span></div><div class='xr-var-dims'>(Location)</div><div class='xr-var-dtype'>|S64</div><div class='xr-var-preview xr-preview'>b&#x27;instrument internal&#x27;</div><input id='attrs-8a65c453-3f58-4345-b6ee-5af901e726a7' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8a65c453-3f58-4345-b6ee-5af901e726a7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b7765ed1-771e-420d-9bfe-483a310c89fe' class='xr-var-data-in' type='checkbox'><label for='data-b7765ed1-771e-420d-9bfe-483a310c89fe' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([b&#x27;instrument internal&#x27;], dtype=&#x27;|S64&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>Wavelength</span></div><div class='xr-var-dims'>(Wavelength)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>467.0 528.0 652.0</div><input id='attrs-8e9f90d2-db75-4f98-bf31-6381034d4935' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8e9f90d2-db75-4f98-bf31-6381034d4935' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0b1ae0c3-5b8d-44c4-a5c9-2514d03b6d6a' class='xr-var-data-in' type='checkbox'><label for='data-0b1ae0c3-5b8d-44c4-a5c9-2514d03b6d6a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([467., 528., 652.])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-5f4e34a8-b044-499d-a245-d70b479227ec' class='xr-section-summary-in' type='checkbox'  ><label for='section-5f4e34a8-b044-499d-a245-d70b479227ec' class='xr-section-summary' >Data variables: <span>(17)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time_bnds</span></div><div class='xr-var-dims'>(time, tbnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9bfbbeb5-7f80-4fdb-a5cd-d28cd5e3c51b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9bfbbeb5-7f80-4fdb-a5cd-d28cd5e3c51b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5f324796-aeba-416f-95b2-9eb6625f2134' class='xr-var-data-in' type='checkbox'><label for='data-5f324796-aeba-416f-95b2-9eb6625f2134' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time bounds for measurement</dd></dl></div><div class='xr-var-data'><pre>[4114 values with dtype=datetime64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>metadata_time_bnds</span></div><div class='xr-var-dims'>(metadata_time, tbnds)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-901a3369-84b4-41b0-9d72-7b311fec9a15' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-901a3369-84b4-41b0-9d72-7b311fec9a15' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a91c1b66-7e0c-4933-8fdd-e060e3c5ef52' class='xr-var-data-in' type='checkbox'><label for='data-a91c1b66-7e0c-4933-8fdd-e060e3c5ef52' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time bounds for ebas metadata intervals</dd></dl></div><div class='xr-var-data'><pre>[2 values with dtype=datetime64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pressure_qc</span></div><div class='xr-var-dims'>(Location, pressure_qc_flags, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-50a5e115-82ce-4d4d-947b-643b01371734' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-50a5e115-82ce-4d4d-947b-643b01371734' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fadff7cd-05ab-41ff-8cdc-3dc4d6b1358a' class='xr-var-data-in' type='checkbox'><label for='data-fadff7cd-05ab-41ff-8cdc-3dc4d6b1358a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>status_flag</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>[4114 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pressure_ebasmetadata</span></div><div class='xr-var-dims'>(Location, metadata_time)</div><div class='xr-var-dtype'>|S64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-658de2e0-0881-4cd8-a5d8-20c3283ce2d1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-658de2e0-0881-4cd8-a5d8-20c3283ce2d1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-616ea415-5499-46c8-b2dc-5f6eac967078' class='xr-var-data-in' type='checkbox'><label for='data-616ea415-5499-46c8-b2dc-5f6eac967078' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>ebas metadata for different time intervals; json encoded</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>temperature_qc</span></div><div class='xr-var-dims'>(Location, temperature_qc_flags, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6d019c32-e91c-41d5-8289-3b36311e8cca' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6d019c32-e91c-41d5-8289-3b36311e8cca' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5f4275dc-8eb3-4a1e-9bf8-ca762ea9b837' class='xr-var-data-in' type='checkbox'><label for='data-5f4275dc-8eb3-4a1e-9bf8-ca762ea9b837' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>status_flag</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>[2057 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>temperature_ebasmetadata</span></div><div class='xr-var-dims'>(Location, metadata_time)</div><div class='xr-var-dtype'>|S64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fe1203c4-cc8b-4143-a924-a47711696486' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fe1203c4-cc8b-4143-a924-a47711696486' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-efdee9fd-cd78-444f-9f65-18fc43f7b053' class='xr-var-data-in' type='checkbox'><label for='data-efdee9fd-cd78-444f-9f65-18fc43f7b053' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>ebas metadata for different time intervals; json encoded</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_amean_qc</span></div><div class='xr-var-dims'>(Wavelength, aerosol_absorption_coefficient_amean_qc_flags, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4020ca41-f0ff-4863-aca1-f7d9962ff604' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4020ca41-f0ff-4863-aca1-f7d9962ff604' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-baa2989b-64a2-47b5-a480-38e1514514df' class='xr-var-data-in' type='checkbox'><label for='data-baa2989b-64a2-47b5-a480-38e1514514df' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>status_flag</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>[6171 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_amean_ebasmetadata</span></div><div class='xr-var-dims'>(Wavelength, metadata_time)</div><div class='xr-var-dtype'>|S64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2119168e-c97d-4084-9bdf-f7cc181714bb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2119168e-c97d-4084-9bdf-f7cc181714bb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5bb0f0ce-0a37-4654-8041-ea597995aa4d' class='xr-var-data-in' type='checkbox'><label for='data-5bb0f0ce-0a37-4654-8041-ea597995aa4d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>ebas metadata for different time intervals; json encoded</dd></dl></div><div class='xr-var-data'><pre>[3 values with dtype=|S64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_prec1587_qc</span></div><div class='xr-var-dims'>(Wavelength, aerosol_absorption_coefficient_prec1587_qc_flags, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9a997a33-4d62-4efb-b80c-f8214cbeba27' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9a997a33-4d62-4efb-b80c-f8214cbeba27' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5576ea73-96d8-4160-ab91-568d640e81aa' class='xr-var-data-in' type='checkbox'><label for='data-5576ea73-96d8-4160-ab91-568d640e81aa' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>status_flag</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>[6171 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_prec1587_ebasmetadata</span></div><div class='xr-var-dims'>(Wavelength, metadata_time)</div><div class='xr-var-dtype'>|S64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e96fe024-1629-42ce-bb01-acdf9a409569' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e96fe024-1629-42ce-bb01-acdf9a409569' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9e847a18-eb89-4425-ae4d-958f6e0da98f' class='xr-var-data-in' type='checkbox'><label for='data-9e847a18-eb89-4425-ae4d-958f6e0da98f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>ebas metadata for different time intervals; json encoded</dd></dl></div><div class='xr-var-data'><pre>[3 values with dtype=|S64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_perc8413_qc</span></div><div class='xr-var-dims'>(Wavelength, aerosol_absorption_coefficient_perc8413_qc_flags, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4d8e7b7c-cc85-4010-8956-cca235cbcf24' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4d8e7b7c-cc85-4010-8956-cca235cbcf24' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-95509c6d-60d6-4495-bf87-0172942a0ede' class='xr-var-data-in' type='checkbox'><label for='data-95509c6d-60d6-4495-bf87-0172942a0ede' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>status_flag</dd><dt><span>units :</span></dt><dd>1</dd></dl></div><div class='xr-var-data'><pre>[6171 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_perc8413_ebasmetadata</span></div><div class='xr-var-dims'>(Wavelength, metadata_time)</div><div class='xr-var-dtype'>|S64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ffdb6783-b3ff-4f16-bd11-2a95b0d42f54' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ffdb6783-b3ff-4f16-bd11-2a95b0d42f54' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a9d5db6e-6ca8-4327-8502-48a455648055' class='xr-var-data-in' type='checkbox'><label for='data-a9d5db6e-6ca8-4327-8502-48a455648055' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>ebas metadata for different time intervals; json encoded</dd></dl></div><div class='xr-var-data'><pre>[3 values with dtype=|S64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pressure</span></div><div class='xr-var-dims'>(Location, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-857a1534-460c-4869-9d07-2ce35ad24570' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-857a1534-460c-4869-9d07-2ce35ad24570' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5b158cf8-e75e-4a85-8d4d-791fa9d7046b' class='xr-var-data-in' type='checkbox'><label for='data-5b158cf8-e75e-4a85-8d4d-791fa9d7046b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>air_pressure</dd><dt><span>units :</span></dt><dd>hPa</dd><dt><span>ancillary_variables :</span></dt><dd>pressure_qc pressure_ebasmetadata</dd><dt><span>cell_methods :</span></dt><dd>time: mean</dd><dt><span>ebas_data_license :</span></dt><dd>https://creativecommons.org/licenses/by/4.0/</dd><dt><span>ebas_revision_date :</span></dt><dd>20230625195845</dd><dt><span>ebas_version :</span></dt><dd>1</dd><dt><span>ebas_version_description :</span></dt><dd>Version numbering not tracked, generated by CPD3 EBAS Export v28-39-gfd238446-m run as da.output.upload (547592) run by aerosol on aeroproc.cmdl.noaa.gov via da.output.upload --profile=nrtfap</dd><dt><span>ebas_statistics :</span></dt><dd>arithmetic mean</dd><dt><span>ebas_data_level :</span></dt><dd>1.5</dd><dt><span>ebas_sample_duration :</span></dt><dd>1h</dd><dt><span>ebas_orig_time_res :</span></dt><dd>1mn</dd><dt><span>ebas_station_code :</span></dt><dd>BG0001R</dd><dt><span>ebas_platform_code :</span></dt><dd>BG0001S</dd><dt><span>ebas_station_name :</span></dt><dd>BEO Moussala</dd><dt><span>ebas_station_latitude :</span></dt><dd>42.166667</dd><dt><span>ebas_station_longitude :</span></dt><dd>23.583333</dd><dt><span>ebas_station_altitude :</span></dt><dd>2971.0 m</dd><dt><span>ebas_measuremenet_latitude :</span></dt><dd>42.179199</dd><dt><span>ebas_measurement_longitude :</span></dt><dd>23.5856</dd><dt><span>ebas_measurement_altitude :</span></dt><dd>2925.0 m</dd><dt><span>ebas_measurement_height :</span></dt><dd>10.0 m</dd><dt><span>ebas_regime :</span></dt><dd>IMG</dd><dt><span>ebas_component :</span></dt><dd>pressure</dd><dt><span>ebas_unit :</span></dt><dd>hPa</dd><dt><span>ebas_matrix :</span></dt><dd>aerosol</dd><dt><span>ebas_laboratory_code :</span></dt><dd>BG02L</dd><dt><span>ebas_instrument_type :</span></dt><dd>filter_absorption_photometer</dd><dt><span>ebas_instrument_name :</span></dt><dd>GMD_CLAP-3W_BEO_NRT</dd><dt><span>ebas_instrument_manufacturer :</span></dt><dd>NOAA/ESRL/GMD</dd><dt><span>ebas_instrument_model :</span></dt><dd>CLAP-10</dd><dt><span>ebas_instrument_serial_number :</span></dt><dd>22</dd><dt><span>ebas_method_ref :</span></dt><dd>BG02L_abs_coef</dd><dt><span>ebas_standard_method :</span></dt><dd>None</dd><dt><span>ebas_inlet_type :</span></dt><dd>Hat or hood</dd><dt><span>ebas_volume_std_temperature :</span></dt><dd>273.15 K</dd><dt><span>ebas_volume_std_pressure :</span></dt><dd>1013.25 hPa</dd><dt><span>ebas_zero_negative_values_code :</span></dt><dd>Zero/negative possible</dd><dt><span>ebas_zero_negative_values :</span></dt><dd>Zero and neg. values may appear due to statistical variations at very low concentrations</dd><dt><span>ebas_organization :</span></dt><dd>BG02L, Name not reported, , , , , , , </dd><dt><span>ebas_framework_acronym :</span></dt><dd>ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT</dd><dt><span>ebas_framework_name :</span></dt><dd>Near Realtime Data for European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases, Near Realtime Data for World Data Centre for Aerosols, </dd><dt><span>ebas_framework_description :</span></dt><dd>ACTRIS is the European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases. ACTRIS is composed of observing stations, exploratory platforms, instruments calibration centres, and a data centre., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation&#x27;s (WMO) Global Atmosphere Watch (GAW) programme., </dd><dt><span>ebas_framework_contact_name :</span></dt><dd>Cathrine Lund Myhre, Markus Fiebig, Markus Fiebig</dd><dt><span>ebas_framework_contact_email :</span></dt><dd>clm@nilu.no, Markus.Fiebig@nilu.no, Markus.Fiebig@nilu.no</dd><dt><span>ebas_originator :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_submitter :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_acknowledgement :</span></dt><dd>Request acknowledgement details from data originator</dd></dl></div><div class='xr-var-data'><pre>[2057 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>temperature</span></div><div class='xr-var-dims'>(Location, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-29954460-acdd-49ee-ae0e-365d25de7718' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-29954460-acdd-49ee-ae0e-365d25de7718' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7aff9908-9d89-4960-9217-db58440cf0a9' class='xr-var-data-in' type='checkbox'><label for='data-7aff9908-9d89-4960-9217-db58440cf0a9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>air_temperature</dd><dt><span>units :</span></dt><dd>K</dd><dt><span>ancillary_variables :</span></dt><dd>temperature_qc temperature_ebasmetadata</dd><dt><span>cell_methods :</span></dt><dd>time: mean</dd><dt><span>ebas_data_license :</span></dt><dd>https://creativecommons.org/licenses/by/4.0/</dd><dt><span>ebas_revision_date :</span></dt><dd>20230625195845</dd><dt><span>ebas_version :</span></dt><dd>1</dd><dt><span>ebas_version_description :</span></dt><dd>Version numbering not tracked, generated by CPD3 EBAS Export v28-39-gfd238446-m run as da.output.upload (547592) run by aerosol on aeroproc.cmdl.noaa.gov via da.output.upload --profile=nrtfap</dd><dt><span>ebas_statistics :</span></dt><dd>arithmetic mean</dd><dt><span>ebas_data_level :</span></dt><dd>1.5</dd><dt><span>ebas_sample_duration :</span></dt><dd>1h</dd><dt><span>ebas_orig_time_res :</span></dt><dd>1mn</dd><dt><span>ebas_station_code :</span></dt><dd>BG0001R</dd><dt><span>ebas_platform_code :</span></dt><dd>BG0001S</dd><dt><span>ebas_station_name :</span></dt><dd>BEO Moussala</dd><dt><span>ebas_station_latitude :</span></dt><dd>42.166667</dd><dt><span>ebas_station_longitude :</span></dt><dd>23.583333</dd><dt><span>ebas_station_altitude :</span></dt><dd>2971.0 m</dd><dt><span>ebas_measuremenet_latitude :</span></dt><dd>42.179199</dd><dt><span>ebas_measurement_longitude :</span></dt><dd>23.5856</dd><dt><span>ebas_measurement_altitude :</span></dt><dd>2925.0 m</dd><dt><span>ebas_measurement_height :</span></dt><dd>10.0 m</dd><dt><span>ebas_regime :</span></dt><dd>IMG</dd><dt><span>ebas_component :</span></dt><dd>temperature</dd><dt><span>ebas_unit :</span></dt><dd>K</dd><dt><span>ebas_matrix :</span></dt><dd>aerosol</dd><dt><span>ebas_laboratory_code :</span></dt><dd>BG02L</dd><dt><span>ebas_instrument_type :</span></dt><dd>filter_absorption_photometer</dd><dt><span>ebas_instrument_name :</span></dt><dd>GMD_CLAP-3W_BEO_NRT</dd><dt><span>ebas_instrument_manufacturer :</span></dt><dd>NOAA/ESRL/GMD</dd><dt><span>ebas_instrument_model :</span></dt><dd>CLAP-10</dd><dt><span>ebas_instrument_serial_number :</span></dt><dd>22</dd><dt><span>ebas_method_ref :</span></dt><dd>BG02L_abs_coef</dd><dt><span>ebas_standard_method :</span></dt><dd>None</dd><dt><span>ebas_inlet_type :</span></dt><dd>Hat or hood</dd><dt><span>ebas_volume_std_temperature :</span></dt><dd>273.15 K</dd><dt><span>ebas_volume_std_pressure :</span></dt><dd>1013.25 hPa</dd><dt><span>ebas_zero_negative_values_code :</span></dt><dd>Zero/negative possible</dd><dt><span>ebas_zero_negative_values :</span></dt><dd>Zero and neg. values may appear due to statistical variations at very low concentrations</dd><dt><span>ebas_organization :</span></dt><dd>BG02L, Name not reported, , , , , , , </dd><dt><span>ebas_framework_acronym :</span></dt><dd>ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT</dd><dt><span>ebas_framework_name :</span></dt><dd>Near Realtime Data for European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases, Near Realtime Data for World Data Centre for Aerosols, </dd><dt><span>ebas_framework_description :</span></dt><dd>ACTRIS is the European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases. ACTRIS is composed of observing stations, exploratory platforms, instruments calibration centres, and a data centre., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation&#x27;s (WMO) Global Atmosphere Watch (GAW) programme., </dd><dt><span>ebas_framework_contact_name :</span></dt><dd>Cathrine Lund Myhre, Markus Fiebig, Markus Fiebig</dd><dt><span>ebas_framework_contact_email :</span></dt><dd>clm@nilu.no, Markus.Fiebig@nilu.no, Markus.Fiebig@nilu.no</dd><dt><span>ebas_originator :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_submitter :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_acknowledgement :</span></dt><dd>Request acknowledgement details from data originator</dd></dl></div><div class='xr-var-data'><pre>[2057 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_amean</span></div><div class='xr-var-dims'>(Wavelength, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c3cc5bbb-1233-4035-9477-65c3bef78e7e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c3cc5bbb-1233-4035-9477-65c3bef78e7e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1a2f3b1c-3317-4869-ab6b-a35d4b97df03' class='xr-var-data-in' type='checkbox'><label for='data-1a2f3b1c-3317-4869-ab6b-a35d4b97df03' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles</dd><dt><span>units :</span></dt><dd>1/Mm</dd><dt><span>ancillary_variables :</span></dt><dd>aerosol_absorption_coefficient_amean_qc aerosol_absorption_coefficient_amean_ebasmetadata</dd><dt><span>cell_methods :</span></dt><dd>time: mean</dd><dt><span>ebas_data_license :</span></dt><dd>https://creativecommons.org/licenses/by/4.0/</dd><dt><span>ebas_revision_date :</span></dt><dd>20230625195845</dd><dt><span>ebas_version :</span></dt><dd>1</dd><dt><span>ebas_version_description :</span></dt><dd>Version numbering not tracked, generated by CPD3 EBAS Export v28-39-gfd238446-m run as da.output.upload (547592) run by aerosol on aeroproc.cmdl.noaa.gov via da.output.upload --profile=nrtfap</dd><dt><span>ebas_statistics :</span></dt><dd>arithmetic mean</dd><dt><span>ebas_data_level :</span></dt><dd>1.5</dd><dt><span>ebas_sample_duration :</span></dt><dd>1h</dd><dt><span>ebas_orig_time_res :</span></dt><dd>1mn</dd><dt><span>ebas_station_code :</span></dt><dd>BG0001R</dd><dt><span>ebas_platform_code :</span></dt><dd>BG0001S</dd><dt><span>ebas_station_name :</span></dt><dd>BEO Moussala</dd><dt><span>ebas_station_latitude :</span></dt><dd>42.166667</dd><dt><span>ebas_station_longitude :</span></dt><dd>23.583333</dd><dt><span>ebas_station_altitude :</span></dt><dd>2971.0 m</dd><dt><span>ebas_measuremenet_latitude :</span></dt><dd>42.179199</dd><dt><span>ebas_measurement_longitude :</span></dt><dd>23.5856</dd><dt><span>ebas_measurement_altitude :</span></dt><dd>2925.0 m</dd><dt><span>ebas_measurement_height :</span></dt><dd>10.0 m</dd><dt><span>ebas_regime :</span></dt><dd>IMG</dd><dt><span>ebas_component :</span></dt><dd>aerosol_absorption_coefficient</dd><dt><span>ebas_unit :</span></dt><dd>1/Mm</dd><dt><span>ebas_matrix :</span></dt><dd>aerosol</dd><dt><span>ebas_laboratory_code :</span></dt><dd>BG02L</dd><dt><span>ebas_instrument_type :</span></dt><dd>filter_absorption_photometer</dd><dt><span>ebas_instrument_name :</span></dt><dd>GMD_CLAP-3W_BEO_NRT</dd><dt><span>ebas_instrument_manufacturer :</span></dt><dd>NOAA/ESRL/GMD</dd><dt><span>ebas_instrument_model :</span></dt><dd>CLAP-10</dd><dt><span>ebas_instrument_serial_number :</span></dt><dd>22</dd><dt><span>ebas_method_ref :</span></dt><dd>BG02L_abs_coef</dd><dt><span>ebas_standard_method :</span></dt><dd>None</dd><dt><span>ebas_inlet_type :</span></dt><dd>Hat or hood</dd><dt><span>ebas_volume_std_temperature :</span></dt><dd>273.15 K</dd><dt><span>ebas_volume_std_pressure :</span></dt><dd>1013.25 hPa</dd><dt><span>ebas_zero_negative_values_code :</span></dt><dd>Zero/negative possible</dd><dt><span>ebas_zero_negative_values :</span></dt><dd>Zero and neg. values may appear due to statistical variations at very low concentrations</dd><dt><span>ebas_organization :</span></dt><dd>BG02L, Name not reported, , , , , , , </dd><dt><span>ebas_framework_acronym :</span></dt><dd>ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT</dd><dt><span>ebas_framework_name :</span></dt><dd>Near Realtime Data for European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases, Near Realtime Data for World Data Centre for Aerosols, </dd><dt><span>ebas_framework_description :</span></dt><dd>ACTRIS is the European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases. ACTRIS is composed of observing stations, exploratory platforms, instruments calibration centres, and a data centre., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation&#x27;s (WMO) Global Atmosphere Watch (GAW) programme., </dd><dt><span>ebas_framework_contact_name :</span></dt><dd>Cathrine Lund Myhre, Markus Fiebig, Markus Fiebig</dd><dt><span>ebas_framework_contact_email :</span></dt><dd>clm@nilu.no, Markus.Fiebig@nilu.no, Markus.Fiebig@nilu.no</dd><dt><span>ebas_originator :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_submitter :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_acknowledgement :</span></dt><dd>Request acknowledgement details from data originator</dd></dl></div><div class='xr-var-data'><pre>[6171 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_prec1587</span></div><div class='xr-var-dims'>(Wavelength, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-80553df2-2dd4-499f-a563-0bb8d9bf3529' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-80553df2-2dd4-499f-a563-0bb8d9bf3529' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9262d91c-e1a8-46a3-9e71-1b8303b04729' class='xr-var-data-in' type='checkbox'><label for='data-9262d91c-e1a8-46a3-9e71-1b8303b04729' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles</dd><dt><span>units :</span></dt><dd>1/Mm</dd><dt><span>ancillary_variables :</span></dt><dd>aerosol_absorption_coefficient_prec1587_qc aerosol_absorption_coefficient_prec1587_ebasmetadata</dd><dt><span>cell_methods :</span></dt><dd>time: percentile:15.87</dd><dt><span>ebas_data_license :</span></dt><dd>https://creativecommons.org/licenses/by/4.0/</dd><dt><span>ebas_revision_date :</span></dt><dd>20230625195845</dd><dt><span>ebas_version :</span></dt><dd>1</dd><dt><span>ebas_version_description :</span></dt><dd>Version numbering not tracked, generated by CPD3 EBAS Export v28-39-gfd238446-m run as da.output.upload (547592) run by aerosol on aeroproc.cmdl.noaa.gov via da.output.upload --profile=nrtfap</dd><dt><span>ebas_statistics :</span></dt><dd>percentile:15.87</dd><dt><span>ebas_data_level :</span></dt><dd>1.5</dd><dt><span>ebas_sample_duration :</span></dt><dd>1h</dd><dt><span>ebas_orig_time_res :</span></dt><dd>1mn</dd><dt><span>ebas_station_code :</span></dt><dd>BG0001R</dd><dt><span>ebas_platform_code :</span></dt><dd>BG0001S</dd><dt><span>ebas_station_name :</span></dt><dd>BEO Moussala</dd><dt><span>ebas_station_latitude :</span></dt><dd>42.166667</dd><dt><span>ebas_station_longitude :</span></dt><dd>23.583333</dd><dt><span>ebas_station_altitude :</span></dt><dd>2971.0 m</dd><dt><span>ebas_measuremenet_latitude :</span></dt><dd>42.179199</dd><dt><span>ebas_measurement_longitude :</span></dt><dd>23.5856</dd><dt><span>ebas_measurement_altitude :</span></dt><dd>2925.0 m</dd><dt><span>ebas_measurement_height :</span></dt><dd>10.0 m</dd><dt><span>ebas_regime :</span></dt><dd>IMG</dd><dt><span>ebas_component :</span></dt><dd>aerosol_absorption_coefficient</dd><dt><span>ebas_unit :</span></dt><dd>1/Mm</dd><dt><span>ebas_matrix :</span></dt><dd>aerosol</dd><dt><span>ebas_laboratory_code :</span></dt><dd>BG02L</dd><dt><span>ebas_instrument_type :</span></dt><dd>filter_absorption_photometer</dd><dt><span>ebas_instrument_name :</span></dt><dd>GMD_CLAP-3W_BEO_NRT</dd><dt><span>ebas_instrument_manufacturer :</span></dt><dd>NOAA/ESRL/GMD</dd><dt><span>ebas_instrument_model :</span></dt><dd>CLAP-10</dd><dt><span>ebas_instrument_serial_number :</span></dt><dd>22</dd><dt><span>ebas_method_ref :</span></dt><dd>BG02L_abs_coef</dd><dt><span>ebas_standard_method :</span></dt><dd>None</dd><dt><span>ebas_inlet_type :</span></dt><dd>Hat or hood</dd><dt><span>ebas_volume_std_temperature :</span></dt><dd>273.15 K</dd><dt><span>ebas_volume_std_pressure :</span></dt><dd>1013.25 hPa</dd><dt><span>ebas_zero_negative_values_code :</span></dt><dd>Zero/negative possible</dd><dt><span>ebas_zero_negative_values :</span></dt><dd>Zero and neg. values may appear due to statistical variations at very low concentrations</dd><dt><span>ebas_organization :</span></dt><dd>BG02L, Name not reported, , , , , , , </dd><dt><span>ebas_framework_acronym :</span></dt><dd>ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT</dd><dt><span>ebas_framework_name :</span></dt><dd>Near Realtime Data for European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases, Near Realtime Data for World Data Centre for Aerosols, </dd><dt><span>ebas_framework_description :</span></dt><dd>ACTRIS is the European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases. ACTRIS is composed of observing stations, exploratory platforms, instruments calibration centres, and a data centre., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation&#x27;s (WMO) Global Atmosphere Watch (GAW) programme., </dd><dt><span>ebas_framework_contact_name :</span></dt><dd>Cathrine Lund Myhre, Markus Fiebig, Markus Fiebig</dd><dt><span>ebas_framework_contact_email :</span></dt><dd>clm@nilu.no, Markus.Fiebig@nilu.no, Markus.Fiebig@nilu.no</dd><dt><span>ebas_originator :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_submitter :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_acknowledgement :</span></dt><dd>Request acknowledgement details from data originator</dd></dl></div><div class='xr-var-data'><pre>[6171 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>aerosol_absorption_coefficient_perc8413</span></div><div class='xr-var-dims'>(Wavelength, time)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-35b3727c-0f4e-45c0-8ef6-fec938a0023a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-35b3727c-0f4e-45c0-8ef6-fec938a0023a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4b93ac8a-c8d3-4e9e-af44-50cc0551e28e' class='xr-var-data-in' type='checkbox'><label for='data-4b93ac8a-c8d3-4e9e-af44-50cc0551e28e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles</dd><dt><span>units :</span></dt><dd>1/Mm</dd><dt><span>ancillary_variables :</span></dt><dd>aerosol_absorption_coefficient_perc8413_qc aerosol_absorption_coefficient_perc8413_ebasmetadata</dd><dt><span>cell_methods :</span></dt><dd>time: percentile:84.13</dd><dt><span>ebas_data_license :</span></dt><dd>https://creativecommons.org/licenses/by/4.0/</dd><dt><span>ebas_revision_date :</span></dt><dd>20230625195845</dd><dt><span>ebas_version :</span></dt><dd>1</dd><dt><span>ebas_version_description :</span></dt><dd>Version numbering not tracked, generated by CPD3 EBAS Export v28-39-gfd238446-m run as da.output.upload (547592) run by aerosol on aeroproc.cmdl.noaa.gov via da.output.upload --profile=nrtfap</dd><dt><span>ebas_statistics :</span></dt><dd>percentile:84.13</dd><dt><span>ebas_data_level :</span></dt><dd>1.5</dd><dt><span>ebas_sample_duration :</span></dt><dd>1h</dd><dt><span>ebas_orig_time_res :</span></dt><dd>1mn</dd><dt><span>ebas_station_code :</span></dt><dd>BG0001R</dd><dt><span>ebas_platform_code :</span></dt><dd>BG0001S</dd><dt><span>ebas_station_name :</span></dt><dd>BEO Moussala</dd><dt><span>ebas_station_latitude :</span></dt><dd>42.166667</dd><dt><span>ebas_station_longitude :</span></dt><dd>23.583333</dd><dt><span>ebas_station_altitude :</span></dt><dd>2971.0 m</dd><dt><span>ebas_measuremenet_latitude :</span></dt><dd>42.179199</dd><dt><span>ebas_measurement_longitude :</span></dt><dd>23.5856</dd><dt><span>ebas_measurement_altitude :</span></dt><dd>2925.0 m</dd><dt><span>ebas_measurement_height :</span></dt><dd>10.0 m</dd><dt><span>ebas_regime :</span></dt><dd>IMG</dd><dt><span>ebas_component :</span></dt><dd>aerosol_absorption_coefficient</dd><dt><span>ebas_unit :</span></dt><dd>1/Mm</dd><dt><span>ebas_matrix :</span></dt><dd>aerosol</dd><dt><span>ebas_laboratory_code :</span></dt><dd>BG02L</dd><dt><span>ebas_instrument_type :</span></dt><dd>filter_absorption_photometer</dd><dt><span>ebas_instrument_name :</span></dt><dd>GMD_CLAP-3W_BEO_NRT</dd><dt><span>ebas_instrument_manufacturer :</span></dt><dd>NOAA/ESRL/GMD</dd><dt><span>ebas_instrument_model :</span></dt><dd>CLAP-10</dd><dt><span>ebas_instrument_serial_number :</span></dt><dd>22</dd><dt><span>ebas_method_ref :</span></dt><dd>BG02L_abs_coef</dd><dt><span>ebas_standard_method :</span></dt><dd>None</dd><dt><span>ebas_inlet_type :</span></dt><dd>Hat or hood</dd><dt><span>ebas_volume_std_temperature :</span></dt><dd>273.15 K</dd><dt><span>ebas_volume_std_pressure :</span></dt><dd>1013.25 hPa</dd><dt><span>ebas_zero_negative_values_code :</span></dt><dd>Zero/negative possible</dd><dt><span>ebas_zero_negative_values :</span></dt><dd>Zero and neg. values may appear due to statistical variations at very low concentrations</dd><dt><span>ebas_organization :</span></dt><dd>BG02L, Name not reported, , , , , , , </dd><dt><span>ebas_framework_acronym :</span></dt><dd>ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT</dd><dt><span>ebas_framework_name :</span></dt><dd>Near Realtime Data for European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases, Near Realtime Data for World Data Centre for Aerosols, </dd><dt><span>ebas_framework_description :</span></dt><dd>ACTRIS is the European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases. ACTRIS is composed of observing stations, exploratory platforms, instruments calibration centres, and a data centre., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation&#x27;s (WMO) Global Atmosphere Watch (GAW) programme., </dd><dt><span>ebas_framework_contact_name :</span></dt><dd>Cathrine Lund Myhre, Markus Fiebig, Markus Fiebig</dd><dt><span>ebas_framework_contact_email :</span></dt><dd>clm@nilu.no, Markus.Fiebig@nilu.no, Markus.Fiebig@nilu.no</dd><dt><span>ebas_originator :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_submitter :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_acknowledgement :</span></dt><dd>Request acknowledgement details from data originator</dd></dl></div><div class='xr-var-data'><pre>[6171 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-7c73bd8b-cc62-46b1-b327-045295f3a00f' class='xr-section-summary-in' type='checkbox'  ><label for='section-7c73bd8b-cc62-46b1-b327-045295f3a00f' class='xr-section-summary' >Indexes: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-index-name'><div>time</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-7aeb5169-c045-4211-90df-dc0b23931f14' class='xr-index-data-in' type='checkbox'/><label for='index-7aeb5169-c045-4211-90df-dc0b23931f14' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(DatetimeIndex([&#x27;2023-03-25 23:30:00&#x27;, &#x27;2023-03-26 00:30:00&#x27;,\n",
       "               &#x27;2023-03-26 01:30:00&#x27;, &#x27;2023-03-26 02:30:00&#x27;,\n",
       "               &#x27;2023-03-26 03:30:00&#x27;, &#x27;2023-03-26 04:30:00&#x27;,\n",
       "               &#x27;2023-03-26 05:30:00&#x27;, &#x27;2023-03-26 08:30:00&#x27;,\n",
       "               &#x27;2023-03-26 09:30:00&#x27;, &#x27;2023-03-26 10:30:00&#x27;,\n",
       "               ...\n",
       "               &#x27;2023-06-25 06:30:00&#x27;, &#x27;2023-06-25 07:30:00&#x27;,\n",
       "               &#x27;2023-06-25 08:30:00&#x27;, &#x27;2023-06-25 09:30:00&#x27;,\n",
       "               &#x27;2023-06-25 10:30:00&#x27;, &#x27;2023-06-25 11:30:00&#x27;,\n",
       "               &#x27;2023-06-25 12:30:00&#x27;, &#x27;2023-06-25 13:30:00&#x27;,\n",
       "               &#x27;2023-06-25 14:30:00&#x27;, &#x27;2023-06-25 15:30:00&#x27;],\n",
       "              dtype=&#x27;datetime64[ns]&#x27;, name=&#x27;time&#x27;, length=2057, freq=None))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>metadata_time</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-cf8380ad-c99c-4be2-9d56-136ba8c0c8bd' class='xr-index-data-in' type='checkbox'/><label for='index-cf8380ad-c99c-4be2-9d56-136ba8c0c8bd' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(DatetimeIndex([&#x27;2023-05-10 19:30:00&#x27;], dtype=&#x27;datetime64[ns]&#x27;, name=&#x27;metadata_time&#x27;, freq=None))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>Location</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-3b5636f9-2493-45a5-becd-4c20392b19ae' class='xr-index-data-in' type='checkbox'/><label for='index-3b5636f9-2493-45a5-becd-4c20392b19ae' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([b&#x27;instrument internal&#x27;], dtype=&#x27;object&#x27;, name=&#x27;Location&#x27;))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>Wavelength</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-d9430770-b2a8-44d8-88db-0a1c43c83c28' class='xr-index-data-in' type='checkbox'/><label for='index-d9430770-b2a8-44d8-88db-0a1c43c83c28' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Float64Index([467.0, 528.0, 652.0], dtype=&#x27;float64&#x27;, name=&#x27;Wavelength&#x27;))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-f2280c29-2695-4058-9091-cbc9ae3a45d5' class='xr-section-summary-in' type='checkbox'  ><label for='section-f2280c29-2695-4058-9091-cbc9ae3a45d5' class='xr-section-summary' >Attributes: <span>(100)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>Conventions :</span></dt><dd>CF-1.8, ACDD-1.3</dd><dt><span>featureType :</span></dt><dd>timeSeries</dd><dt><span>title :</span></dt><dd>Ground based in situ observations of filter_absorption_photometer at BEO Moussala (BG0001R)</dd><dt><span>keywords :</span></dt><dd>aerosol_absorption_coefficient, ACTRIS_NRT, BEO Moussala, BG0001R, GAW-WDCA_NRT, NOAA-ESRL_NRT, aerosol, volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles</dd><dt><span>id :</span></dt><dd>BG0001R.20230325230000.20230625195845.filter_absorption_photometer..aerosol.3mo.1h.BG02L_GMD_CLAP-3W_BEO_NRT.BG02L_abs_coef.lev1.5.nc</dd><dt><span>naming_authority :</span></dt><dd>EBAS</dd><dt><span>project :</span></dt><dd>ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT</dd><dt><span>acknowledgement :</span></dt><dd>Request acknowledgement details from data originator</dd><dt><span>license :</span></dt><dd>https://creativecommons.org/licenses/by/4.0/</dd><dt><span>citation :</span></dt><dd>Ivo Emilov Kalapov, aerosol_absorption_coefficient - filter_absorption_photometer at BEO Moussala, data hosted by EBAS at NILU</dd><dt><span>summary :</span></dt><dd>Ground based in situ observations of filter_absorption_photometer at BEO Moussala (BG0001R). These measurements are gathered as a part of the following projects ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT and they are stored in the EBAS database (http://ebas.nilu.no/). Parameters measured are: aerosol_absorption_coefficient in aerosol (volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles), aerosol_absorption_coefficient in aerosol (volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles), aerosol_absorption_coefficient in aerosol (volume_absorption_coefficient_in_air_due_to_dried_aerosol_particles)</dd><dt><span>source :</span></dt><dd>surface observation</dd><dt><span>institution :</span></dt><dd>BG02L, Name not reported</dd><dt><span>processing_level :</span></dt><dd>processing_level_test</dd><dt><span>date_created :</span></dt><dd>2023-06-25T19:58:45 UTC</dd><dt><span>date_metadata_modified :</span></dt><dd>2023-06-25T19:58:45 UTC</dd><dt><span>creator_name :</span></dt><dd>Ivo Emilov Kalapov</dd><dt><span>creator_type :</span></dt><dd>person</dd><dt><span>creator_email :</span></dt><dd></dd><dt><span>creator_institution :</span></dt><dd></dd><dt><span>contributor_name :</span></dt><dd>Ivo Emilov Kalapov</dd><dt><span>contributor_role :</span></dt><dd>data submitter</dd><dt><span>publisher_type :</span></dt><dd>institution</dd><dt><span>publisher_name :</span></dt><dd>NILU - Norwegian Institute for Air Research, ATMOS, EBAS</dd><dt><span>publisher_institution :</span></dt><dd>NILU - Norwegian Institute for Air Research, ATMOS, EBAS</dd><dt><span>publisher_email :</span></dt><dd>ebas@nilu.no</dd><dt><span>publisher_url :</span></dt><dd>https://www.nilu.no/</dd><dt><span>geospatial_bounds :</span></dt><dd>POINT Z (42.179199 23.5856 2925.0)</dd><dt><span>geospatial_bounds_crs :</span></dt><dd>EPSG:4979</dd><dt><span>geospatial_lat_min :</span></dt><dd>42.179199</dd><dt><span>geospatial_lat_max :</span></dt><dd>42.179199</dd><dt><span>geospatial_lon_min :</span></dt><dd>23.5856</dd><dt><span>geospatial_lon_max :</span></dt><dd>23.5856</dd><dt><span>geospatial_vertical_min :</span></dt><dd>2925.0</dd><dt><span>geospatial_vertical_max :</span></dt><dd>2925.0</dd><dt><span>geospatial_vertical_positive :</span></dt><dd>up</dd><dt><span>time_coverage_start :</span></dt><dd>2023-03-25T23:00:00 UTC</dd><dt><span>time_coverage_end :</span></dt><dd>2023-06-25T16:00:00 UTC</dd><dt><span>time_coverage_duration :</span></dt><dd>P0000-02-30T17:00:00</dd><dt><span>time_coverage_resolution :</span></dt><dd>P0000-00-00T01:00:00</dd><dt><span>timezone :</span></dt><dd>UTC</dd><dt><span>ebas_data_definition :</span></dt><dd>EBAS_1.1</dd><dt><span>ebas_data_license :</span></dt><dd>https://creativecommons.org/licenses/by/4.0/</dd><dt><span>ebas_citation :</span></dt><dd>Ivo Emilov Kalapov, aerosol_absorption_coefficient - filter_absorption_photometer at BEO Moussala, data hosted by EBAS at NILU</dd><dt><span>ebas_set_type_code :</span></dt><dd>TI</dd><dt><span>ebas_timezone :</span></dt><dd>UTC</dd><dt><span>ebas_file_name :</span></dt><dd>BG0001R.20230325230000.20230625195845.filter_absorption_photometer..aerosol.3mo.1h.BG02L_GMD_CLAP-3W_BEO_NRT.BG02L_abs_coef.lev1.5.nc</dd><dt><span>ebas_file_creation :</span></dt><dd>2023-06-25T23:32:55.501864 UTC</dd><dt><span>ebas_export_state :</span></dt><dd>2023-06-25T23:25:04.050040 UTC</dd><dt><span>ebas_export_filter :</span></dt><dd>exclude-900,exclude-invalid</dd><dt><span>ebas_startdate :</span></dt><dd>20230325230000</dd><dt><span>ebas_revision_date :</span></dt><dd>20230625195845</dd><dt><span>ebas_version :</span></dt><dd>1</dd><dt><span>ebas_version_description :</span></dt><dd>Version numbering not tracked, generated by CPD3 EBAS Export v28-39-gfd238446-m run as da.output.upload (547592) run by aerosol on aeroproc.cmdl.noaa.gov via da.output.upload --profile=nrtfap</dd><dt><span>ebas_data_level :</span></dt><dd>1.5</dd><dt><span>ebas_period_code :</span></dt><dd>3mo</dd><dt><span>ebas_resolution_code :</span></dt><dd>1h</dd><dt><span>ebas_sample_duration :</span></dt><dd>1h</dd><dt><span>ebas_orig_time_res :</span></dt><dd>1mn</dd><dt><span>ebas_station_code :</span></dt><dd>BG0001R</dd><dt><span>ebas_platform_code :</span></dt><dd>BG0001S</dd><dt><span>ebas_station_name :</span></dt><dd>BEO Moussala</dd><dt><span>ebas_station_latitude :</span></dt><dd>42.166667</dd><dt><span>ebas_station_longitude :</span></dt><dd>23.583333</dd><dt><span>ebas_station_altitude :</span></dt><dd>2971.0 m</dd><dt><span>ebas_measuremenet_latitude :</span></dt><dd>42.179199</dd><dt><span>ebas_measurement_longitude :</span></dt><dd>23.5856</dd><dt><span>ebas_measurement_altitude :</span></dt><dd>2925.0 m</dd><dt><span>ebas_measurement_height :</span></dt><dd>10.0 m</dd><dt><span>ebas_regime :</span></dt><dd>IMG</dd><dt><span>ebas_matrix :</span></dt><dd>aerosol</dd><dt><span>ebas_laboratory_code :</span></dt><dd>BG02L</dd><dt><span>ebas_instrument_type :</span></dt><dd>filter_absorption_photometer</dd><dt><span>ebas_instrument_name :</span></dt><dd>GMD_CLAP-3W_BEO_NRT</dd><dt><span>ebas_instrument_manufacturer :</span></dt><dd>NOAA/ESRL/GMD</dd><dt><span>ebas_instrument_model :</span></dt><dd>CLAP-10</dd><dt><span>ebas_instrument_serial_number :</span></dt><dd>22</dd><dt><span>ebas_method_ref :</span></dt><dd>BG02L_abs_coef</dd><dt><span>ebas_standard_method :</span></dt><dd>None</dd><dt><span>ebas_inlet_type :</span></dt><dd>Hat or hood</dd><dt><span>ebas_volume_std_temperature :</span></dt><dd>273.15 K</dd><dt><span>ebas_volume_std_pressure :</span></dt><dd>1013.25 hPa</dd><dt><span>ebas_zero_negative_values_code :</span></dt><dd>Zero/negative possible</dd><dt><span>ebas_zero_negative_values :</span></dt><dd>Zero and neg. values may appear due to statistical variations at very low concentrations</dd><dt><span>ebas_organization :</span></dt><dd>BG02L, Name not reported, , , , , , , </dd><dt><span>ebas_framework_acronym :</span></dt><dd>ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT</dd><dt><span>ebas_framework_name :</span></dt><dd>Near Realtime Data for European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases, Near Realtime Data for World Data Centre for Aerosols, </dd><dt><span>ebas_framework_description :</span></dt><dd>ACTRIS is the European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases. ACTRIS is composed of observing stations, exploratory platforms, instruments calibration centres, and a data centre., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation&#x27;s (WMO) Global Atmosphere Watch (GAW) programme., </dd><dt><span>ebas_framework_contact_name :</span></dt><dd>Cathrine Lund Myhre, Markus Fiebig, Markus Fiebig</dd><dt><span>ebas_framework_contact_email :</span></dt><dd>clm@nilu.no, Markus.Fiebig@nilu.no, Markus.Fiebig@nilu.no</dd><dt><span>ebas_originator :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_submitter :</span></dt><dd>Kalapov, Ivo Emilov, , , , , , , , , </dd><dt><span>ebas_acknowledgement :</span></dt><dd>Request acknowledgement details from data originator</dd><dt><span>Metadata_Conventions :</span></dt><dd>Unidata Dataset Discovery v1.0</dd><dt><span>geospatial_lat_units :</span></dt><dd>degrees_north</dd><dt><span>geospatial_lon_units :</span></dt><dd>degrees_east</dd><dt><span>comment :</span></dt><dd>{\n",
       "    &quot;Data definition&quot;: &quot;EBAS_1.1&quot;,\n",
       "    &quot;Data license&quot;: &quot;https://creativecommons.org/licenses/by/4.0/&quot;,\n",
       "    &quot;Citation&quot;: &quot;Ivo Emilov Kalapov, aerosol_absorption_coefficient - filter_absorption_photometer at BEO Moussala, data hosted by EBAS at NILU&quot;,\n",
       "    &quot;Set type code&quot;: &quot;TI&quot;,\n",
       "    &quot;Timezone&quot;: &quot;UTC&quot;,\n",
       "    &quot;File name&quot;: &quot;BG0001R.20230325230000.20230625195845.filter_absorption_photometer..aerosol.3mo.1h.BG02L_GMD_CLAP-3W_BEO_NRT.BG02L_abs_coef.lev1.5.nc&quot;,\n",
       "    &quot;File creation&quot;: &quot;2023-06-25T23:32:55.501864 UTC&quot;,\n",
       "    &quot;Export state&quot;: &quot;2023-06-25T23:25:04.050040 UTC&quot;,\n",
       "    &quot;Export filter&quot;: &quot;exclude-900,exclude-invalid&quot;,\n",
       "    &quot;Startdate&quot;: &quot;20230325230000&quot;,\n",
       "    &quot;Revision date&quot;: &quot;20230625195845&quot;,\n",
       "    &quot;Version&quot;: &quot;1&quot;,\n",
       "    &quot;Version description&quot;: &quot;Version numbering not tracked, generated by CPD3 EBAS Export v28-39-gfd238446-m run as da.output.upload (547592) run by aerosol on aeroproc.cmdl.noaa.gov via da.output.upload --profile=nrtfap&quot;,\n",
       "    &quot;Data level&quot;: &quot;1.5&quot;,\n",
       "    &quot;Period code&quot;: &quot;3mo&quot;,\n",
       "    &quot;Resolution code&quot;: &quot;1h&quot;,\n",
       "    &quot;Sample duration&quot;: &quot;1h&quot;,\n",
       "    &quot;Orig. time res.&quot;: &quot;1mn&quot;,\n",
       "    &quot;Station code&quot;: &quot;BG0001R&quot;,\n",
       "    &quot;Platform code&quot;: &quot;BG0001S&quot;,\n",
       "    &quot;Station name&quot;: &quot;BEO Moussala&quot;,\n",
       "    &quot;Station latitude&quot;: &quot;42.166667&quot;,\n",
       "    &quot;Station longitude&quot;: &quot;23.583333&quot;,\n",
       "    &quot;Station altitude&quot;: &quot;2971.0 m&quot;,\n",
       "    &quot;Measurement latitude&quot;: &quot;42.179199&quot;,\n",
       "    &quot;Measurement longitude&quot;: &quot;23.5856&quot;,\n",
       "    &quot;Measurement altitude&quot;: &quot;2925.0 m&quot;,\n",
       "    &quot;Measurement height&quot;: &quot;10.0 m&quot;,\n",
       "    &quot;Regime&quot;: &quot;IMG&quot;,\n",
       "    &quot;Matrix&quot;: &quot;aerosol&quot;,\n",
       "    &quot;Laboratory code&quot;: &quot;BG02L&quot;,\n",
       "    &quot;Instrument type&quot;: &quot;filter_absorption_photometer&quot;,\n",
       "    &quot;Instrument name&quot;: &quot;GMD_CLAP-3W_BEO_NRT&quot;,\n",
       "    &quot;Instrument manufacturer&quot;: &quot;NOAA/ESRL/GMD&quot;,\n",
       "    &quot;Instrument model&quot;: &quot;CLAP-10&quot;,\n",
       "    &quot;Instrument serial number&quot;: &quot;22&quot;,\n",
       "    &quot;Method ref&quot;: &quot;BG02L_abs_coef&quot;,\n",
       "    &quot;Standard method&quot;: &quot;None&quot;,\n",
       "    &quot;Inlet type&quot;: &quot;Hat or hood&quot;,\n",
       "    &quot;Volume std. temperature&quot;: &quot;273.15 K&quot;,\n",
       "    &quot;Volume std. pressure&quot;: &quot;1013.25 hPa&quot;,\n",
       "    &quot;Zero/negative values code&quot;: &quot;Zero/negative possible&quot;,\n",
       "    &quot;Zero/negative values&quot;: &quot;Zero and neg. values may appear due to statistical variations at very low concentrations&quot;,\n",
       "    &quot;Organization&quot;: &quot;BG02L, Name not reported, , , , , , , &quot;,\n",
       "    &quot;Framework acronym&quot;: &quot;ACTRIS_NRT, GAW-WDCA_NRT, NOAA-ESRL_NRT&quot;,\n",
       "    &quot;Framework name&quot;: &quot;Near Realtime Data for European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases, Near Realtime Data for World Data Centre for Aerosols, &quot;,\n",
       "    &quot;Framework description&quot;: &quot;ACTRIS is the European Research Infrastructure for the observation of Aerosol, Clouds, and Trace gases. ACTRIS is composed of observing stations, exploratory platforms, instruments calibration centres, and a data centre., The World Data Centre for Aerosols is the data repository and archive for microphysical, optical, and chemical properties of atmospheric aerosol of the World Meteorological Organisation&#x27;s (WMO) Global Atmosphere Watch (GAW) programme., &quot;,\n",
       "    &quot;Framework contact name&quot;: &quot;Cathrine Lund Myhre, Markus Fiebig, Markus Fiebig&quot;,\n",
       "    &quot;Framework contact email&quot;: &quot;clm@nilu.no, Markus.Fiebig@nilu.no, Markus.Fiebig@nilu.no&quot;,\n",
       "    &quot;Originator&quot;: &quot;Kalapov, Ivo Emilov, , , , , , , , , &quot;,\n",
       "    &quot;Submitter&quot;: &quot;Kalapov, Ivo Emilov, , , , , , , , , &quot;,\n",
       "    &quot;Acknowledgement&quot;: &quot;Request acknowledgement details from data originator&quot;\n",
       "}</dd><dt><span>standard_name_vocabulary :</span></dt><dd>CF-1.7, ACDD-1.3</dd><dt><span>history :</span></dt><dd>None</dd><dt><span>creator_url :</span></dt><dd>ebas.nilu.no</dd></dl></div></li></ul></div></div>"
      ],
      "text/plain": [
       "<xarray.Dataset>\n",
       "Dimensions:                                               (time: 2057,\n",
       "                                                           tbnds: 2,\n",
       "                                                           metadata_time: 1,\n",
       "                                                           Location: 1,\n",
       "                                                           pressure_qc_flags: 2,\n",
       "                                                           temperature_qc_flags: 1,\n",
       "                                                           Wavelength: 3,\n",
       "                                                           aerosol_absorption_coefficient_amean_qc_flags: 1,\n",
       "                                                           aerosol_absorption_coefficient_prec1587_qc_flags: 1,\n",
       "                                                           aerosol_absorption_coefficient_perc8413_qc_flags: 1)\n",
       "Coordinates:\n",
       "  * time                                                  (time) datetime64[ns] ...\n",
       "  * metadata_time                                         (metadata_time) datetime64[ns] ...\n",
       "  * Location                                              (Location) |S64 b'i...\n",
       "  * Wavelength                                            (Wavelength) float64 ...\n",
       "Dimensions without coordinates: tbnds, pressure_qc_flags, temperature_qc_flags,\n",
       "                                aerosol_absorption_coefficient_amean_qc_flags,\n",
       "                                aerosol_absorption_coefficient_prec1587_qc_flags,\n",
       "                                aerosol_absorption_coefficient_perc8413_qc_flags\n",
       "Data variables: (12/17)\n",
       "    time_bnds                                             (time, tbnds) datetime64[ns] ...\n",
       "    metadata_time_bnds                                    (metadata_time, tbnds) datetime64[ns] ...\n",
       "    pressure_qc                                           (Location, pressure_qc_flags, time) float64 ...\n",
       "    pressure_ebasmetadata                                 (Location, metadata_time) |S64 ...\n",
       "    temperature_qc                                        (Location, temperature_qc_flags, time) float64 ...\n",
       "    temperature_ebasmetadata                              (Location, metadata_time) |S64 ...\n",
       "    ...                                                    ...\n",
       "    aerosol_absorption_coefficient_perc8413_ebasmetadata  (Wavelength, metadata_time) |S64 ...\n",
       "    pressure                                              (Location, time) float64 ...\n",
       "    temperature                                           (Location, time) float64 ...\n",
       "    aerosol_absorption_coefficient_amean                  (Wavelength, time) float64 ...\n",
       "    aerosol_absorption_coefficient_prec1587               (Wavelength, time) float64 ...\n",
       "    aerosol_absorption_coefficient_perc8413               (Wavelength, time) float64 ...\n",
       "Attributes: (12/100)\n",
       "    Conventions:                     CF-1.8, ACDD-1.3\n",
       "    featureType:                     timeSeries\n",
       "    title:                           Ground based in situ observations of fil...\n",
       "    keywords:                        aerosol_absorption_coefficient, ACTRIS_N...\n",
       "    id:                              BG0001R.20230325230000.20230625195845.fi...\n",
       "    naming_authority:                EBAS\n",
       "    ...                              ...\n",
       "    geospatial_lat_units:            degrees_north\n",
       "    geospatial_lon_units:            degrees_east\n",
       "    comment:                         {\\n    \"Data definition\": \"EBAS_1.1\",\\n ...\n",
       "    standard_name_vocabulary:        CF-1.7, ACDD-1.3\n",
       "    history:                         None\n",
       "    creator_url:                     ebas.nilu.no"
      ]
     },
     "execution_count": 56,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# Open and show dataset with xarray \n",
    "ds_xr = xr.open_dataset(opendap_url)\n",
    "ds_xr"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 57,
   "id": "229d66bf",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "652.0"
      ]
     },
     "execution_count": 57,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# Calculate the closest wavelength to 637 nm. This is the wavelength used to calculate eBC.\n",
    "given_wavelength = 637. \n",
    "all_wavelengths = ds_xr.Wavelength.values\n",
    "closest_wavelength = min(all_wavelengths, key=lambda x:abs(x-given_wavelength))\n",
    "\n",
    "closest_wavelength"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 58,
   "id": "35555505",
   "metadata": {
    "scrolled": true
   },
   "outputs": [],
   "source": [
    "# Select data only at the closest wavelength to 637 nm. \n",
    "ds_xr = ds_xr.sel(Wavelength=closest_wavelength)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 59,
   "id": "7c31564c",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
       "<defs>\n",
       "<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
       "<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
       "<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
       "<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
       "</symbol>\n",
       "<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
       "<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
       "<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
       "<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
       "<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
       "</symbol>\n",
       "</defs>\n",
       "</svg>\n",
       "<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
       " *\n",
       " */\n",
       "\n",
       ":root {\n",
       "  --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
       "  --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
       "  --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
       "  --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
       "  --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
       "  --xr-background-color: var(--jp-layout-color0, white);\n",
       "  --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
       "  --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
       "}\n",
       "\n",
       "html[theme=dark],\n",
       "body[data-theme=dark],\n",
       "body.vscode-dark {\n",
       "  --xr-font-color0: rgba(255, 255, 255, 1);\n",
       "  --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
       "  --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
       "  --xr-border-color: #1F1F1F;\n",
       "  --xr-disabled-color: #515151;\n",
       "  --xr-background-color: #111111;\n",
       "  --xr-background-color-row-even: #111111;\n",
       "  --xr-background-color-row-odd: #313131;\n",
       "}\n",
       "\n",
       ".xr-wrap {\n",
       "  display: block !important;\n",
       "  min-width: 300px;\n",
       "  max-width: 700px;\n",
       "}\n",
       "\n",
       ".xr-text-repr-fallback {\n",
       "  /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
       "  display: none;\n",
       "}\n",
       "\n",
       ".xr-header {\n",
       "  padding-top: 6px;\n",
       "  padding-bottom: 6px;\n",
       "  margin-bottom: 4px;\n",
       "  border-bottom: solid 1px var(--xr-border-color);\n",
       "}\n",
       "\n",
       ".xr-header > div,\n",
       ".xr-header > ul {\n",
       "  display: inline;\n",
       "  margin-top: 0;\n",
       "  margin-bottom: 0;\n",
       "}\n",
       "\n",
       ".xr-obj-type,\n",
       ".xr-array-name {\n",
       "  margin-left: 2px;\n",
       "  margin-right: 10px;\n",
       "}\n",
       "\n",
       ".xr-obj-type {\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-sections {\n",
       "  padding-left: 0 !important;\n",
       "  display: grid;\n",
       "  grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
       "}\n",
       "\n",
       ".xr-section-item {\n",
       "  display: contents;\n",
       "}\n",
       "\n",
       ".xr-section-item input {\n",
       "  display: none;\n",
       "}\n",
       "\n",
       ".xr-section-item input + label {\n",
       "  color: var(--xr-disabled-color);\n",
       "}\n",
       "\n",
       ".xr-section-item input:enabled + label {\n",
       "  cursor: pointer;\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-section-item input:enabled + label:hover {\n",
       "  color: var(--xr-font-color0);\n",
       "}\n",
       "\n",
       ".xr-section-summary {\n",
       "  grid-column: 1;\n",
       "  color: var(--xr-font-color2);\n",
       "  font-weight: 500;\n",
       "}\n",
       "\n",
       ".xr-section-summary > span {\n",
       "  display: inline-block;\n",
       "  padding-left: 0.5em;\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:disabled + label {\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-section-summary-in + label:before {\n",
       "  display: inline-block;\n",
       "  content: '►';\n",
       "  font-size: 11px;\n",
       "  width: 15px;\n",
       "  text-align: center;\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:disabled + label:before {\n",
       "  color: var(--xr-disabled-color);\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:checked + label:before {\n",
       "  content: '▼';\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:checked + label > span {\n",
       "  display: none;\n",
       "}\n",
       "\n",
       ".xr-section-summary,\n",
       ".xr-section-inline-details {\n",
       "  padding-top: 4px;\n",
       "  padding-bottom: 4px;\n",
       "}\n",
       "\n",
       ".xr-section-inline-details {\n",
       "  grid-column: 2 / -1;\n",
       "}\n",
       "\n",
       ".xr-section-details {\n",
       "  display: none;\n",
       "  grid-column: 1 / -1;\n",
       "  margin-bottom: 5px;\n",
       "}\n",
       "\n",
       ".xr-section-summary-in:checked ~ .xr-section-details {\n",
       "  display: contents;\n",
       "}\n",
       "\n",
       ".xr-array-wrap {\n",
       "  grid-column: 1 / -1;\n",
       "  display: grid;\n",
       "  grid-template-columns: 20px auto;\n",
       "}\n",
       "\n",
       ".xr-array-wrap > label {\n",
       "  grid-column: 1;\n",
       "  vertical-align: top;\n",
       "}\n",
       "\n",
       ".xr-preview {\n",
       "  color: var(--xr-font-color3);\n",
       "}\n",
       "\n",
       ".xr-array-preview,\n",
       ".xr-array-data {\n",
       "  padding: 0 5px !important;\n",
       "  grid-column: 2;\n",
       "}\n",
       "\n",
       ".xr-array-data,\n",
       ".xr-array-in:checked ~ .xr-array-preview {\n",
       "  display: none;\n",
       "}\n",
       "\n",
       ".xr-array-in:checked ~ .xr-array-data,\n",
       ".xr-array-preview {\n",
       "  display: inline-block;\n",
       "}\n",
       "\n",
       ".xr-dim-list {\n",
       "  display: inline-block !important;\n",
       "  list-style: none;\n",
       "  padding: 0 !important;\n",
       "  margin: 0;\n",
       "}\n",
       "\n",
       ".xr-dim-list li {\n",
       "  display: inline-block;\n",
       "  padding: 0;\n",
       "  margin: 0;\n",
       "}\n",
       "\n",
       ".xr-dim-list:before {\n",
       "  content: '(';\n",
       "}\n",
       "\n",
       ".xr-dim-list:after {\n",
       "  content: ')';\n",
       "}\n",
       "\n",
       ".xr-dim-list li:not(:last-child):after {\n",
       "  content: ',';\n",
       "  padding-right: 5px;\n",
       "}\n",
       "\n",
       ".xr-has-index {\n",
       "  font-weight: bold;\n",
       "}\n",
       "\n",
       ".xr-var-list,\n",
       ".xr-var-item {\n",
       "  display: contents;\n",
       "}\n",
       "\n",
       ".xr-var-item > div,\n",
       ".xr-var-item label,\n",
       ".xr-var-item > .xr-var-name span {\n",
       "  background-color: var(--xr-background-color-row-even);\n",
       "  margin-bottom: 0;\n",
       "}\n",
       "\n",
       ".xr-var-item > .xr-var-name:hover span {\n",
       "  padding-right: 5px;\n",
       "}\n",
       "\n",
       ".xr-var-list > li:nth-child(odd) > div,\n",
       ".xr-var-list > li:nth-child(odd) > label,\n",
       ".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
       "  background-color: var(--xr-background-color-row-odd);\n",
       "}\n",
       "\n",
       ".xr-var-name {\n",
       "  grid-column: 1;\n",
       "}\n",
       "\n",
       ".xr-var-dims {\n",
       "  grid-column: 2;\n",
       "}\n",
       "\n",
       ".xr-var-dtype {\n",
       "  grid-column: 3;\n",
       "  text-align: right;\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-var-preview {\n",
       "  grid-column: 4;\n",
       "}\n",
       "\n",
       ".xr-index-preview {\n",
       "  grid-column: 2 / 5;\n",
       "  color: var(--xr-font-color2);\n",
       "}\n",
       "\n",
       ".xr-var-name,\n",
       ".xr-var-dims,\n",
       ".xr-var-dtype,\n",
       ".xr-preview,\n",
       ".xr-attrs dt {\n",
       "  white-space: nowrap;\n",
       "  overflow: hidden;\n",
       "  text-overflow: ellipsis;\n",
       "  padding-right: 10px;\n",
       "}\n",
       "\n",
       ".xr-var-name:hover,\n",
       ".xr-var-dims:hover,\n",
       ".xr-var-dtype:hover,\n",
       ".xr-attrs dt:hover {\n",
       "  overflow: visible;\n",
       "  width: auto;\n",
       "  z-index: 1;\n",
       "}\n",
       "\n",
       ".xr-var-attrs,\n",
       ".xr-var-data,\n",
       ".xr-index-data {\n",
       "  display: none;\n",
       "  background-color: var(--xr-background-color) !important;\n",
       "  padding-bottom: 5px !important;\n",
       "}\n",
       "\n",
       ".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
       ".xr-var-data-in:checked ~ .xr-var-data,\n",
       ".xr-index-data-in:checked ~ .xr-index-data {\n",
       "  display: block;\n",
       "}\n",
       "\n",
       ".xr-var-data > table {\n",
       "  float: right;\n",
       "}\n",
       "\n",
       ".xr-var-name span,\n",
       ".xr-var-data,\n",
       ".xr-index-name div,\n",
       ".xr-index-data,\n",
       ".xr-attrs {\n",
       "  padding-left: 25px !important;\n",
       "}\n",
       "\n",
       ".xr-attrs,\n",
       ".xr-var-attrs,\n",
       ".xr-var-data,\n",
       ".xr-index-data {\n",
       "  grid-column: 1 / -1;\n",
       "}\n",
       "\n",
       "dl.xr-attrs {\n",
       "  padding: 0;\n",
       "  margin: 0;\n",
       "  display: grid;\n",
       "  grid-template-columns: 125px auto;\n",
       "}\n",
       "\n",
       ".xr-attrs dt,\n",
       ".xr-attrs dd {\n",
       "  padding: 0;\n",
       "  margin: 0;\n",
       "  float: left;\n",
       "  padding-right: 10px;\n",
       "  width: auto;\n",
       "}\n",
       "\n",
       ".xr-attrs dt {\n",
       "  font-weight: normal;\n",
       "  grid-column: 1;\n",
       "}\n",
       "\n",
       ".xr-attrs dt:hover span {\n",
       "  display: inline-block;\n",
       "  background: var(--xr-background-color);\n",
       "  padding-right: 10px;\n",
       "}\n",
       "\n",
       ".xr-attrs dd {\n",
       "  grid-column: 2;\n",
       "  white-space: pre-wrap;\n",
       "  word-break: break-all;\n",
       "}\n",
       "\n",
       ".xr-icon-database,\n",
       ".xr-icon-file-text2,\n",
       ".xr-no-icon {\n",
       "  display: inline-block;\n",
       "  vertical-align: middle;\n",
       "  width: 1em;\n",
       "  height: 1.5em !important;\n",
       "  stroke-width: 0;\n",
       "  stroke: currentColor;\n",
       "  fill: currentColor;\n",
       "}\n",
       "</style><pre class='xr-text-repr-fallback'>&lt;xarray.DataArray &#x27;eBC&#x27; (time: 2057)&gt;\n",
       "array([0.2459414, 0.2055686, 0.1840971, ..., 0.2343101, 0.2080876,\n",
       "       0.1461697])\n",
       "Coordinates:\n",
       "  * time        (time) datetime64[ns] 2023-03-25T23:30:00 ... 2023-06-25T15:3...\n",
       "    Wavelength  float64 652.0</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>xarray.DataArray</div><div class='xr-array-name'>'eBC'</div><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 2057</li></ul></div><ul class='xr-sections'><li class='xr-section-item'><div class='xr-array-wrap'><input id='section-da1c6efb-87f8-4325-8813-602ee93b9a56' class='xr-array-in' type='checkbox' checked><label for='section-da1c6efb-87f8-4325-8813-602ee93b9a56' title='Show/hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-array-preview xr-preview'><span>0.2459 0.2056 0.1841 0.1141 0.04667 ... 0.182 0.2343 0.2081 0.1462</span></div><div class='xr-array-data'><pre>array([0.2459414, 0.2055686, 0.1840971, ..., 0.2343101, 0.2080876,\n",
       "       0.1461697])</pre></div></div></li><li class='xr-section-item'><input id='section-3a087d81-74d1-46cf-a3ed-f79f2e7d9c96' class='xr-section-summary-in' type='checkbox'  checked><label for='section-3a087d81-74d1-46cf-a3ed-f79f2e7d9c96' class='xr-section-summary' >Coordinates: <span>(2)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2023-03-25T23:30:00 ... 2023-06-...</div><input id='attrs-7a1b44e4-0e22-437b-a3fe-54573bf83f1d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7a1b44e4-0e22-437b-a3fe-54573bf83f1d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fe373377-d48f-4b7a-a616-a901f8df4e7a' class='xr-var-data-in' type='checkbox'><label for='data-fe373377-d48f-4b7a-a616-a901f8df4e7a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>long_name :</span></dt><dd>time of measurement</dd><dt><span>axis :</span></dt><dd>T</dd><dt><span>bounds :</span></dt><dd>time_bnds</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2023-03-25T23:30:00.000000000&#x27;, &#x27;2023-03-26T00:30:00.000000000&#x27;,\n",
       "       &#x27;2023-03-26T01:30:00.000000000&#x27;, ..., &#x27;2023-06-25T13:30:00.000000000&#x27;,\n",
       "       &#x27;2023-06-25T14:30:00.000000000&#x27;, &#x27;2023-06-25T15:30:00.000000000&#x27;],\n",
       "      dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>Wavelength</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>652.0</div><input id='attrs-10812ad5-7e7d-4a0a-9fef-f057dec21966' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-10812ad5-7e7d-4a0a-9fef-f057dec21966' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e9575423-472c-4b08-a921-60c018d8ca24' class='xr-var-data-in' type='checkbox'><label for='data-e9575423-472c-4b08-a921-60c018d8ca24' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array(652.)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-420e9bfa-8611-4ab3-b18e-4a3a527179d4' class='xr-section-summary-in' type='checkbox'  ><label for='section-420e9bfa-8611-4ab3-b18e-4a3a527179d4' class='xr-section-summary' >Indexes: <span>(1)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-index-name'><div>time</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-2da6e8e6-9688-4a27-be3d-bf3c9fe5979f' class='xr-index-data-in' type='checkbox'/><label for='index-2da6e8e6-9688-4a27-be3d-bf3c9fe5979f' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(DatetimeIndex([&#x27;2023-03-25 23:30:00&#x27;, &#x27;2023-03-26 00:30:00&#x27;,\n",
       "               &#x27;2023-03-26 01:30:00&#x27;, &#x27;2023-03-26 02:30:00&#x27;,\n",
       "               &#x27;2023-03-26 03:30:00&#x27;, &#x27;2023-03-26 04:30:00&#x27;,\n",
       "               &#x27;2023-03-26 05:30:00&#x27;, &#x27;2023-03-26 08:30:00&#x27;,\n",
       "               &#x27;2023-03-26 09:30:00&#x27;, &#x27;2023-03-26 10:30:00&#x27;,\n",
       "               ...\n",
       "               &#x27;2023-06-25 06:30:00&#x27;, &#x27;2023-06-25 07:30:00&#x27;,\n",
       "               &#x27;2023-06-25 08:30:00&#x27;, &#x27;2023-06-25 09:30:00&#x27;,\n",
       "               &#x27;2023-06-25 10:30:00&#x27;, &#x27;2023-06-25 11:30:00&#x27;,\n",
       "               &#x27;2023-06-25 12:30:00&#x27;, &#x27;2023-06-25 13:30:00&#x27;,\n",
       "               &#x27;2023-06-25 14:30:00&#x27;, &#x27;2023-06-25 15:30:00&#x27;],\n",
       "              dtype=&#x27;datetime64[ns]&#x27;, name=&#x27;time&#x27;, length=2057, freq=None))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-56bc82fc-40de-4ca1-95e7-9dbc4a129f99' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-56bc82fc-40de-4ca1-95e7-9dbc4a129f99' class='xr-section-summary'  title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div>"
      ],
      "text/plain": [
       "<xarray.DataArray 'eBC' (time: 2057)>\n",
       "array([0.2459414, 0.2055686, 0.1840971, ..., 0.2343101, 0.2080876,\n",
       "       0.1461697])\n",
       "Coordinates:\n",
       "  * time        (time) datetime64[ns] 2023-03-25T23:30:00 ... 2023-06-25T15:3...\n",
       "    Wavelength  float64 652.0"
      ]
     },
     "execution_count": 59,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# Calculate equivalent black carbon from aerosol absorption coefficient. \n",
    "da_eBC = (ds_xr.aerosol_absorption_coefficient_amean/10).rename('eBC')\n",
    "da_eBC"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 60,
   "id": "a7f405f1",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "variable=eBC<br>time=%{x}<br>value=%{y}<extra></extra>",
         "legendgroup": "eBC",
         "line": {
          "color": "#636efa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "eBC",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          "2023-03-25T23:30:00",
          "2023-03-26T00:30:00",
          "2023-03-26T01:30:00",
          "2023-03-26T02:30:00",
          "2023-03-26T03:30:00",
          "2023-03-26T04:30:00",
          "2023-03-26T05:30:00",
          "2023-03-26T08:30:00",
          "2023-03-26T09:30:00",
          "2023-03-26T10:30:00",
          "2023-03-26T11:30:00",
          "2023-03-26T12:30:00",
          "2023-03-26T13:30:00",
          "2023-03-26T14:30:00",
          "2023-03-26T15:30:00",
          "2023-03-26T16:30:00",
          "2023-03-26T17:30:00",
          "2023-03-26T18:30:00",
          "2023-03-26T19:30:00",
          "2023-03-26T20:30:00",
          "2023-03-26T21:30:00",
          "2023-03-26T22:30:00",
          "2023-03-27T00:30:00",
          "2023-03-27T01:30:00",
          "2023-03-27T02:30:00",
          "2023-03-27T03:30:00",
          "2023-03-27T04:30:00",
          "2023-03-27T05:30:00",
          "2023-03-27T06:30:00",
          "2023-03-27T07:30:00",
          "2023-03-27T08:30:00",
          "2023-03-27T09:30:00",
          "2023-03-27T10:30:00",
          "2023-03-27T11:30:00",
          "2023-03-27T12:30:00",
          "2023-03-27T13:30:00",
          "2023-03-27T14:30:00",
          "2023-03-27T15:30:00",
          "2023-03-27T16:30:00",
          "2023-03-27T17:30:00",
          "2023-03-27T18:30:00",
          "2023-03-27T19:30:00",
          "2023-03-27T20:30:00",
          "2023-03-27T21:30:00",
          "2023-03-27T22:30:00",
          "2023-03-29T14:30:00",
          "2023-03-29T15:30:00",
          "2023-03-29T16:30:00",
          "2023-03-29T17:30:00",
          "2023-03-29T18:30:00",
          "2023-03-29T19:30:00",
          "2023-03-29T20:30:00",
          "2023-03-29T21:30:00",
          "2023-03-29T22:30:00",
          "2023-03-29T23:30:00",
          "2023-03-30T00:30:00",
          "2023-03-30T01:30:00",
          "2023-03-30T02:30:00",
          "2023-03-30T03:30:00",
          "2023-03-30T04:30:00",
          "2023-03-30T05:30:00",
          "2023-03-30T06:30:00",
          "2023-03-30T07:30:00",
          "2023-03-30T08:30:00",
          "2023-03-30T09:30:00",
          "2023-03-30T10:30:00",
          "2023-03-30T11:30:00",
          "2023-03-30T12:30:00",
          "2023-03-30T13:30:00",
          "2023-03-30T14:30:00",
          "2023-03-30T15:30:00",
          "2023-03-30T16:30:00",
          "2023-03-30T17:30:00",
          "2023-03-30T18:30:00",
          "2023-03-30T19:30:00",
          "2023-03-30T20:30:00",
          "2023-03-30T21:30:00",
          "2023-03-30T22:30:00",
          "2023-03-30T23:30:00",
          "2023-03-31T00:30:00",
          "2023-03-31T01:30:00",
          "2023-03-31T02:30:00",
          "2023-03-31T03:30:00",
          "2023-03-31T04:30:00",
          "2023-03-31T05:30:00",
          "2023-03-31T06:30:00",
          "2023-03-31T07:30:00",
          "2023-03-31T08:30:00",
          "2023-03-31T09:30:00",
          "2023-03-31T10:30:00",
          "2023-03-31T11:30:00",
          "2023-03-31T12:30:00",
          "2023-03-31T13:30:00",
          "2023-04-01T04:30:00",
          "2023-04-01T05:30:00",
          "2023-04-01T06:30:00",
          "2023-04-01T07:30:00",
          "2023-04-01T08:30:00",
          "2023-04-01T09:30:00",
          "2023-04-01T10:30:00",
          "2023-04-01T11:30:00",
          "2023-04-01T12:30:00",
          "2023-04-01T13:30:00",
          "2023-04-01T14:30:00",
          "2023-04-01T15:30:00",
          "2023-04-01T16:30:00",
          "2023-04-01T17:30:00",
          "2023-04-01T18:30:00",
          "2023-04-01T19:30:00",
          "2023-04-01T20:30:00",
          "2023-04-01T21:30:00",
          "2023-04-02T00:30:00",
          "2023-04-02T01:30:00",
          "2023-04-02T02:30:00",
          "2023-04-02T03:30:00",
          "2023-04-02T04:30:00",
          "2023-04-02T05:30:00",
          "2023-04-02T06:30:00",
          "2023-04-02T07:30:00",
          "2023-04-02T08:30:00",
          "2023-04-02T09:30:00",
          "2023-04-02T10:30:00",
          "2023-04-02T11:30:00",
          "2023-04-02T12:30:00",
          "2023-04-02T13:30:00",
          "2023-04-02T14:30:00",
          "2023-04-02T15:30:00",
          "2023-04-02T16:30:00",
          "2023-04-02T17:30:00",
          "2023-04-02T18:30:00",
          "2023-04-02T19:30:00",
          "2023-04-02T20:30:00",
          "2023-04-02T21:30:00",
          "2023-04-02T22:30:00",
          "2023-04-02T23:30:00",
          "2023-04-03T00:30:00",
          "2023-04-03T01:30:00",
          "2023-04-03T02:30:00",
          "2023-04-03T03:30:00",
          "2023-04-03T04:30:00",
          "2023-04-03T05:30:00",
          "2023-04-03T06:30:00",
          "2023-04-03T07:30:00",
          "2023-04-03T08:30:00",
          "2023-04-03T09:30:00",
          "2023-04-03T10:30:00",
          "2023-04-03T11:30:00",
          "2023-04-03T12:30:00",
          "2023-04-03T13:30:00",
          "2023-04-03T14:30:00",
          "2023-04-03T15:30:00",
          "2023-04-03T16:30:00",
          "2023-04-03T18:30:00",
          "2023-04-03T19:30:00",
          "2023-04-03T20:30:00",
          "2023-04-03T21:30:00",
          "2023-04-03T23:30:00",
          "2023-04-04T00:30:00",
          "2023-04-04T01:30:00",
          "2023-04-04T03:30:00",
          "2023-04-04T04:30:00",
          "2023-04-04T05:30:00",
          "2023-04-04T06:30:00",
          "2023-04-04T07:30:00",
          "2023-04-04T08:30:00",
          "2023-04-04T09:30:00",
          "2023-04-04T10:30:00",
          "2023-04-04T11:30:00",
          "2023-04-04T14:30:00",
          "2023-04-04T16:30:00",
          "2023-04-04T18:30:00",
          "2023-04-04T19:30:00",
          "2023-04-04T20:30:00",
          "2023-04-04T21:30:00",
          "2023-04-04T22:30:00",
          "2023-04-04T23:30:00",
          "2023-04-05T00:30:00",
          "2023-04-05T01:30:00",
          "2023-04-05T02:30:00",
          "2023-04-05T03:30:00",
          "2023-04-05T04:30:00",
          "2023-04-05T05:30:00",
          "2023-04-05T06:30:00",
          "2023-04-05T07:30:00",
          "2023-04-05T08:30:00",
          "2023-04-05T09:30:00",
          "2023-04-05T10:30:00",
          "2023-04-05T11:30:00",
          "2023-04-05T12:30:00",
          "2023-04-05T13:30:00",
          "2023-04-05T14:30:00",
          "2023-04-05T15:30:00",
          "2023-04-05T16:30:00",
          "2023-04-05T17:30:00",
          "2023-04-05T18:30:00",
          "2023-04-05T19:30:00",
          "2023-04-05T20:30:00",
          "2023-04-05T21:30:00",
          "2023-04-05T22:30:00",
          "2023-04-06T00:30:00",
          "2023-04-06T01:30:00",
          "2023-04-06T02:30:00",
          "2023-04-06T03:30:00",
          "2023-04-06T04:30:00",
          "2023-04-06T05:30:00",
          "2023-04-06T06:30:00",
          "2023-04-06T07:30:00",
          "2023-04-06T08:30:00",
          "2023-04-06T09:30:00",
          "2023-04-06T10:30:00",
          "2023-04-06T11:30:00",
          "2023-04-06T12:30:00",
          "2023-04-06T13:30:00",
          "2023-04-06T14:30:00",
          "2023-04-06T15:30:00",
          "2023-04-06T16:30:00",
          "2023-04-06T17:30:00",
          "2023-04-06T18:30:00",
          "2023-04-06T19:30:00",
          "2023-04-06T20:30:00",
          "2023-04-06T21:30:00",
          "2023-04-06T22:30:00",
          "2023-04-06T23:30:00",
          "2023-04-07T00:30:00",
          "2023-04-07T01:30:00",
          "2023-04-07T02:30:00",
          "2023-04-07T03:30:00",
          "2023-04-07T04:30:00",
          "2023-04-07T05:30:00",
          "2023-04-07T06:30:00",
          "2023-04-07T07:30:00",
          "2023-04-07T08:30:00",
          "2023-04-07T09:30:00",
          "2023-04-07T10:30:00",
          "2023-04-07T11:30:00",
          "2023-04-07T12:30:00",
          "2023-04-07T13:30:00",
          "2023-04-07T14:30:00",
          "2023-04-07T15:30:00",
          "2023-04-07T16:30:00",
          "2023-04-07T17:30:00",
          "2023-04-07T18:30:00",
          "2023-04-07T19:30:00",
          "2023-04-07T20:30:00",
          "2023-04-07T21:30:00",
          "2023-04-07T22:30:00",
          "2023-04-07T23:30:00",
          "2023-04-08T00:30:00",
          "2023-04-08T01:30:00",
          "2023-04-08T02:30:00",
          "2023-04-08T03:30:00",
          "2023-04-08T04:30:00",
          "2023-04-08T05:30:00",
          "2023-04-08T06:30:00",
          "2023-04-08T07:30:00",
          "2023-04-08T08:30:00",
          "2023-04-08T09:30:00",
          "2023-04-08T10:30:00",
          "2023-04-08T11:30:00",
          "2023-04-08T12:30:00",
          "2023-04-08T13:30:00",
          "2023-04-08T14:30:00",
          "2023-04-08T15:30:00",
          "2023-04-08T16:30:00",
          "2023-04-08T17:30:00",
          "2023-04-08T18:30:00",
          "2023-04-08T19:30:00",
          "2023-04-08T20:30:00",
          "2023-04-08T21:30:00",
          "2023-04-08T22:30:00",
          "2023-04-08T23:30:00",
          "2023-04-09T00:30:00",
          "2023-04-09T01:30:00",
          "2023-04-09T02:30:00",
          "2023-04-09T03:30:00",
          "2023-04-09T04:30:00",
          "2023-04-09T05:30:00",
          "2023-04-09T06:30:00",
          "2023-04-09T07:30:00",
          "2023-04-09T08:30:00",
          "2023-04-09T09:30:00",
          "2023-04-09T10:30:00",
          "2023-04-09T11:30:00",
          "2023-04-09T12:30:00",
          "2023-04-09T13:30:00",
          "2023-04-09T14:30:00",
          "2023-04-09T15:30:00",
          "2023-04-09T16:30:00",
          "2023-04-09T17:30:00",
          "2023-04-09T18:30:00",
          "2023-04-09T19:30:00",
          "2023-04-09T20:30:00",
          "2023-04-09T21:30:00",
          "2023-04-09T22:30:00",
          "2023-04-09T23:30:00",
          "2023-04-10T00:30:00",
          "2023-04-10T01:30:00",
          "2023-04-10T02:30:00",
          "2023-04-10T03:30:00",
          "2023-04-10T04:30:00",
          "2023-04-10T05:30:00",
          "2023-04-10T06:30:00",
          "2023-04-10T07:30:00",
          "2023-04-10T08:30:00",
          "2023-04-10T09:30:00",
          "2023-04-10T10:30:00",
          "2023-04-10T11:30:00",
          "2023-04-10T12:30:00",
          "2023-04-10T13:30:00",
          "2023-04-10T14:30:00",
          "2023-04-10T15:30:00",
          "2023-04-10T16:30:00",
          "2023-04-10T17:30:00",
          "2023-04-10T18:30:00",
          "2023-04-10T19:30:00",
          "2023-04-10T20:30:00",
          "2023-04-10T21:30:00",
          "2023-04-10T23:30:00",
          "2023-04-11T00:30:00",
          "2023-04-11T01:30:00",
          "2023-04-11T02:30:00",
          "2023-04-11T03:30:00",
          "2023-04-11T04:30:00",
          "2023-04-11T05:30:00",
          "2023-04-11T06:30:00",
          "2023-04-11T07:30:00",
          "2023-04-11T08:30:00",
          "2023-04-11T09:30:00",
          "2023-04-11T10:30:00",
          "2023-04-11T11:30:00",
          "2023-04-11T12:30:00",
          "2023-04-11T13:30:00",
          "2023-04-11T14:30:00",
          "2023-04-11T15:30:00",
          "2023-04-11T16:30:00",
          "2023-04-11T17:30:00",
          "2023-04-11T18:30:00",
          "2023-04-11T19:30:00",
          "2023-04-11T20:30:00",
          "2023-04-11T21:30:00",
          "2023-04-11T22:30:00",
          "2023-04-11T23:30:00",
          "2023-04-12T00:30:00",
          "2023-04-12T01:30:00",
          "2023-04-12T02:30:00",
          "2023-04-12T03:30:00",
          "2023-04-12T04:30:00",
          "2023-04-12T05:30:00",
          "2023-04-12T06:30:00",
          "2023-04-12T07:30:00",
          "2023-04-12T08:30:00",
          "2023-04-12T09:30:00",
          "2023-04-12T10:30:00",
          "2023-04-12T11:30:00",
          "2023-04-12T12:30:00",
          "2023-04-12T13:30:00",
          "2023-04-12T14:30:00",
          "2023-04-12T15:30:00",
          "2023-04-12T16:30:00",
          "2023-04-12T17:30:00",
          "2023-04-12T18:30:00",
          "2023-04-12T19:30:00",
          "2023-04-12T20:30:00",
          "2023-04-12T21:30:00",
          "2023-04-12T22:30:00",
          "2023-04-12T23:30:00",
          "2023-04-13T00:30:00",
          "2023-04-13T01:30:00",
          "2023-04-13T02:30:00",
          "2023-04-13T03:30:00",
          "2023-04-13T04:30:00",
          "2023-04-13T05:30:00",
          "2023-04-13T06:30:00",
          "2023-04-13T07:30:00",
          "2023-04-13T08:30:00",
          "2023-04-13T09:30:00",
          "2023-04-13T10:30:00",
          "2023-04-13T11:30:00",
          "2023-04-13T12:30:00",
          "2023-04-13T13:30:00",
          "2023-04-13T14:30:00",
          "2023-04-13T15:30:00",
          "2023-04-13T16:30:00",
          "2023-04-13T17:30:00",
          "2023-04-13T18:30:00",
          "2023-04-13T19:30:00",
          "2023-04-13T20:30:00",
          "2023-04-13T21:30:00",
          "2023-04-13T22:30:00",
          "2023-04-13T23:30:00",
          "2023-04-14T00:30:00",
          "2023-04-14T01:30:00",
          "2023-04-14T02:30:00",
          "2023-04-14T03:30:00",
          "2023-04-14T04:30:00",
          "2023-04-14T05:30:00",
          "2023-04-14T06:30:00",
          "2023-04-14T07:30:00",
          "2023-04-14T08:30:00",
          "2023-04-14T09:30:00",
          "2023-04-14T10:30:00",
          "2023-04-14T11:30:00",
          "2023-04-14T12:30:00",
          "2023-04-14T13:30:00",
          "2023-04-14T14:30:00",
          "2023-04-14T15:30:00",
          "2023-04-14T16:30:00",
          "2023-04-14T17:30:00",
          "2023-04-14T18:30:00",
          "2023-04-14T19:30:00",
          "2023-04-14T20:30:00",
          "2023-04-14T21:30:00",
          "2023-04-14T22:30:00",
          "2023-04-14T23:30:00",
          "2023-04-15T00:30:00",
          "2023-04-15T01:30:00",
          "2023-04-15T02:30:00",
          "2023-04-15T03:30:00",
          "2023-04-15T04:30:00",
          "2023-04-15T05:30:00",
          "2023-04-15T06:30:00",
          "2023-04-15T07:30:00",
          "2023-04-15T08:30:00",
          "2023-04-15T09:30:00",
          "2023-04-15T10:30:00",
          "2023-04-15T11:30:00",
          "2023-04-15T12:30:00",
          "2023-04-15T13:30:00",
          "2023-04-15T14:30:00",
          "2023-04-15T15:30:00",
          "2023-04-15T16:30:00",
          "2023-04-15T17:30:00",
          "2023-04-15T18:30:00",
          "2023-04-15T19:30:00",
          "2023-04-15T20:30:00",
          "2023-04-15T21:30:00",
          "2023-04-15T22:30:00",
          "2023-04-15T23:30:00",
          "2023-04-16T00:30:00",
          "2023-04-16T01:30:00",
          "2023-04-16T02:30:00",
          "2023-04-16T03:30:00",
          "2023-04-16T04:30:00",
          "2023-04-16T05:30:00",
          "2023-04-16T06:30:00",
          "2023-04-16T07:30:00",
          "2023-04-16T08:30:00",
          "2023-04-16T09:30:00",
          "2023-04-16T10:30:00",
          "2023-04-16T11:30:00",
          "2023-04-16T12:30:00",
          "2023-04-16T13:30:00",
          "2023-04-16T14:30:00",
          "2023-04-16T15:30:00",
          "2023-04-16T16:30:00",
          "2023-04-16T17:30:00",
          "2023-04-16T18:30:00",
          "2023-04-16T19:30:00",
          "2023-04-16T20:30:00",
          "2023-04-16T21:30:00",
          "2023-04-16T22:30:00",
          "2023-04-16T23:30:00",
          "2023-04-17T00:30:00",
          "2023-04-17T01:30:00",
          "2023-04-17T02:30:00",
          "2023-04-17T03:30:00",
          "2023-04-17T04:30:00",
          "2023-04-17T05:30:00",
          "2023-04-17T06:30:00",
          "2023-04-17T07:30:00",
          "2023-04-17T08:30:00",
          "2023-04-17T09:30:00",
          "2023-04-17T10:30:00",
          "2023-04-17T11:30:00",
          "2023-04-17T12:30:00",
          "2023-04-17T13:30:00",
          "2023-04-17T14:30:00",
          "2023-04-17T15:30:00",
          "2023-04-17T16:30:00",
          "2023-04-17T17:30:00",
          "2023-04-17T18:30:00",
          "2023-04-17T19:30:00",
          "2023-04-17T20:30:00",
          "2023-04-17T21:30:00",
          "2023-04-17T22:30:00",
          "2023-04-17T23:30:00",
          "2023-04-18T00:30:00",
          "2023-04-18T01:30:00",
          "2023-04-18T02:30:00",
          "2023-04-18T03:30:00",
          "2023-04-18T04:30:00",
          "2023-04-18T05:30:00",
          "2023-04-18T06:30:00",
          "2023-04-18T07:30:00",
          "2023-04-18T08:30:00",
          "2023-04-18T09:30:00",
          "2023-04-18T10:30:00",
          "2023-04-18T11:30:00",
          "2023-04-18T12:30:00",
          "2023-04-18T13:30:00",
          "2023-04-18T14:30:00",
          "2023-04-18T15:30:00",
          "2023-04-18T16:30:00",
          "2023-04-18T17:30:00",
          "2023-04-18T18:30:00",
          "2023-04-18T19:30:00",
          "2023-04-18T20:30:00",
          "2023-04-18T21:30:00",
          "2023-04-18T23:30:00",
          "2023-04-19T00:30:00",
          "2023-04-19T01:30:00",
          "2023-04-19T02:30:00",
          "2023-04-19T03:30:00",
          "2023-04-19T04:30:00",
          "2023-04-19T05:30:00",
          "2023-04-19T06:30:00",
          "2023-04-19T07:30:00",
          "2023-04-19T08:30:00",
          "2023-04-19T09:30:00",
          "2023-04-19T10:30:00",
          "2023-04-19T11:30:00",
          "2023-04-19T12:30:00",
          "2023-04-19T13:30:00",
          "2023-04-19T14:30:00",
          "2023-04-19T15:30:00",
          "2023-04-19T16:30:00",
          "2023-04-19T17:30:00",
          "2023-04-19T18:30:00",
          "2023-04-19T19:30:00",
          "2023-04-19T20:30:00",
          "2023-04-19T21:30:00",
          "2023-04-19T22:30:00",
          "2023-04-19T23:30:00",
          "2023-04-20T01:30:00",
          "2023-04-20T02:30:00",
          "2023-04-20T05:30:00",
          "2023-04-20T06:30:00",
          "2023-04-20T07:30:00",
          "2023-04-20T08:30:00",
          "2023-04-20T09:30:00",
          "2023-04-20T10:30:00",
          "2023-04-20T11:30:00",
          "2023-04-20T12:30:00",
          "2023-04-20T13:30:00",
          "2023-04-20T14:30:00",
          "2023-04-20T15:30:00",
          "2023-04-20T16:30:00",
          "2023-04-20T17:30:00",
          "2023-04-20T18:30:00",
          "2023-04-20T19:30:00",
          "2023-04-20T20:30:00",
          "2023-04-20T21:30:00",
          "2023-04-20T22:30:00",
          "2023-04-20T23:30:00",
          "2023-04-21T00:30:00",
          "2023-04-21T01:30:00",
          "2023-04-21T02:30:00",
          "2023-04-21T03:30:00",
          "2023-04-21T04:30:00",
          "2023-04-21T05:30:00",
          "2023-04-21T06:30:00",
          "2023-04-21T07:30:00",
          "2023-04-21T08:30:00",
          "2023-04-21T09:30:00",
          "2023-04-21T10:30:00",
          "2023-04-21T11:30:00",
          "2023-04-21T12:30:00",
          "2023-04-21T13:30:00",
          "2023-04-21T14:30:00",
          "2023-04-21T15:30:00",
          "2023-04-21T16:30:00",
          "2023-04-21T17:30:00",
          "2023-04-21T18:30:00",
          "2023-04-21T19:30:00",
          "2023-04-21T20:30:00",
          "2023-04-21T22:30:00",
          "2023-04-21T23:30:00",
          "2023-04-22T00:30:00",
          "2023-04-22T01:30:00",
          "2023-04-22T02:30:00",
          "2023-04-22T03:30:00",
          "2023-04-22T04:30:00",
          "2023-04-22T05:30:00",
          "2023-04-22T06:30:00",
          "2023-04-22T07:30:00",
          "2023-04-22T08:30:00",
          "2023-04-22T09:30:00",
          "2023-04-22T10:30:00",
          "2023-04-22T11:30:00",
          "2023-04-22T12:30:00",
          "2023-04-22T13:30:00",
          "2023-04-22T14:30:00",
          "2023-04-22T15:30:00",
          "2023-04-22T16:30:00",
          "2023-04-22T17:30:00",
          "2023-04-22T18:30:00",
          "2023-04-22T19:30:00",
          "2023-04-22T20:30:00",
          "2023-04-22T21:30:00",
          "2023-04-22T22:30:00",
          "2023-04-22T23:30:00",
          "2023-04-23T00:30:00",
          "2023-04-23T01:30:00",
          "2023-04-23T02:30:00",
          "2023-04-23T03:30:00",
          "2023-04-23T04:30:00",
          "2023-04-23T05:30:00",
          "2023-04-23T06:30:00",
          "2023-04-23T07:30:00",
          "2023-04-23T09:30:00",
          "2023-04-23T10:30:00",
          "2023-04-23T11:30:00",
          "2023-04-23T12:30:00",
          "2023-04-23T13:30:00",
          "2023-04-23T14:30:00",
          "2023-04-23T15:30:00",
          "2023-04-23T16:30:00",
          "2023-04-23T17:30:00",
          "2023-04-23T18:30:00",
          "2023-04-23T19:30:00",
          "2023-04-23T20:30:00",
          "2023-04-23T21:30:00",
          "2023-04-23T22:30:00",
          "2023-04-23T23:30:00",
          "2023-04-24T00:30:00",
          "2023-04-24T01:30:00",
          "2023-04-24T02:30:00",
          "2023-04-24T03:30:00",
          "2023-04-24T04:30:00",
          "2023-04-24T05:30:00",
          "2023-04-24T06:30:00",
          "2023-04-24T07:30:00",
          "2023-04-24T08:30:00",
          "2023-04-24T09:30:00",
          "2023-04-24T11:30:00",
          "2023-04-24T12:30:00",
          "2023-04-24T13:30:00",
          "2023-04-24T14:30:00",
          "2023-04-24T15:30:00",
          "2023-04-24T16:30:00",
          "2023-04-24T17:30:00",
          "2023-04-24T18:30:00",
          "2023-04-24T19:30:00",
          "2023-04-24T20:30:00",
          "2023-04-24T21:30:00",
          "2023-04-24T22:30:00",
          "2023-04-24T23:30:00",
          "2023-04-25T00:30:00",
          "2023-04-25T01:30:00",
          "2023-04-25T02:30:00",
          "2023-04-25T03:30:00",
          "2023-04-25T04:30:00",
          "2023-04-25T05:30:00",
          "2023-04-25T06:30:00",
          "2023-04-25T08:30:00",
          "2023-04-25T09:30:00",
          "2023-04-25T10:30:00",
          "2023-04-25T11:30:00",
          "2023-04-25T12:30:00",
          "2023-04-25T13:30:00",
          "2023-04-25T14:30:00",
          "2023-04-25T15:30:00",
          "2023-04-25T16:30:00",
          "2023-04-25T17:30:00",
          "2023-04-25T19:30:00",
          "2023-04-25T20:30:00",
          "2023-04-25T21:30:00",
          "2023-04-25T22:30:00",
          "2023-04-25T23:30:00",
          "2023-04-26T00:30:00",
          "2023-04-26T01:30:00",
          "2023-04-26T02:30:00",
          "2023-04-26T03:30:00",
          "2023-04-26T04:30:00",
          "2023-04-26T05:30:00",
          "2023-04-26T06:30:00",
          "2023-04-26T07:30:00",
          "2023-04-26T08:30:00",
          "2023-04-26T09:30:00",
          "2023-04-26T10:30:00",
          "2023-04-26T11:30:00",
          "2023-04-26T12:30:00",
          "2023-04-26T13:30:00",
          "2023-04-26T14:30:00",
          "2023-04-26T15:30:00",
          "2023-04-26T16:30:00",
          "2023-04-26T17:30:00",
          "2023-04-26T18:30:00",
          "2023-04-26T19:30:00",
          "2023-04-26T20:30:00",
          "2023-04-26T21:30:00",
          "2023-04-26T22:30:00",
          "2023-04-26T23:30:00",
          "2023-04-27T00:30:00",
          "2023-04-27T01:30:00",
          "2023-04-27T02:30:00",
          "2023-04-27T03:30:00",
          "2023-04-27T04:30:00",
          "2023-04-27T05:30:00",
          "2023-04-27T06:30:00",
          "2023-04-27T07:30:00",
          "2023-04-27T08:30:00",
          "2023-04-27T09:30:00",
          "2023-04-27T10:30:00",
          "2023-04-27T11:30:00",
          "2023-04-27T12:30:00",
          "2023-04-27T13:30:00",
          "2023-04-27T14:30:00",
          "2023-04-27T15:30:00",
          "2023-04-27T16:30:00",
          "2023-04-27T17:30:00",
          "2023-04-27T18:30:00",
          "2023-04-27T19:30:00",
          "2023-04-27T20:30:00",
          "2023-04-27T21:30:00",
          "2023-04-27T22:30:00",
          "2023-04-27T23:30:00",
          "2023-04-28T00:30:00",
          "2023-04-28T01:30:00",
          "2023-04-28T02:30:00",
          "2023-04-28T03:30:00",
          "2023-04-28T04:30:00",
          "2023-04-28T05:30:00",
          "2023-04-28T06:30:00",
          "2023-04-28T07:30:00",
          "2023-04-28T08:30:00",
          "2023-04-28T09:30:00",
          "2023-04-28T10:30:00",
          "2023-04-28T11:30:00",
          "2023-04-28T12:30:00",
          "2023-04-28T13:30:00",
          "2023-04-28T14:30:00",
          "2023-04-28T15:30:00",
          "2023-04-28T17:30:00",
          "2023-04-28T18:30:00",
          "2023-04-28T19:30:00",
          "2023-04-28T20:30:00",
          "2023-04-28T21:30:00",
          "2023-04-28T22:30:00",
          "2023-04-28T23:30:00",
          "2023-04-29T00:30:00",
          "2023-04-29T01:30:00",
          "2023-04-29T02:30:00",
          "2023-04-29T03:30:00",
          "2023-04-29T04:30:00",
          "2023-04-29T05:30:00",
          "2023-04-29T06:30:00",
          "2023-04-29T07:30:00",
          "2023-04-29T08:30:00",
          "2023-04-29T09:30:00",
          "2023-04-29T10:30:00",
          "2023-04-29T11:30:00",
          "2023-04-29T12:30:00",
          "2023-04-29T13:30:00",
          "2023-04-29T14:30:00",
          "2023-04-29T15:30:00",
          "2023-04-29T16:30:00",
          "2023-04-29T17:30:00",
          "2023-04-29T18:30:00",
          "2023-04-29T19:30:00",
          "2023-04-29T20:30:00",
          "2023-04-29T21:30:00",
          "2023-04-29T22:30:00",
          "2023-04-29T23:30:00",
          "2023-04-30T00:30:00",
          "2023-04-30T01:30:00",
          "2023-04-30T02:30:00",
          "2023-04-30T03:30:00",
          "2023-04-30T04:30:00",
          "2023-04-30T05:30:00",
          "2023-04-30T06:30:00",
          "2023-04-30T07:30:00",
          "2023-04-30T08:30:00",
          "2023-04-30T09:30:00",
          "2023-04-30T10:30:00",
          "2023-04-30T11:30:00",
          "2023-04-30T12:30:00",
          "2023-04-30T13:30:00",
          "2023-04-30T14:30:00",
          "2023-04-30T15:30:00",
          "2023-04-30T16:30:00",
          "2023-04-30T17:30:00",
          "2023-04-30T18:30:00",
          "2023-04-30T19:30:00",
          "2023-04-30T20:30:00",
          "2023-04-30T21:30:00",
          "2023-04-30T22:30:00",
          "2023-04-30T23:30:00",
          "2023-05-01T00:30:00",
          "2023-05-01T01:30:00",
          "2023-05-01T02:30:00",
          "2023-05-01T03:30:00",
          "2023-05-01T04:30:00",
          "2023-05-01T05:30:00",
          "2023-05-01T06:30:00",
          "2023-05-01T07:30:00",
          "2023-05-01T08:30:00",
          "2023-05-01T09:30:00",
          "2023-05-01T10:30:00",
          "2023-05-01T11:30:00",
          "2023-05-01T12:30:00",
          "2023-05-01T13:30:00",
          "2023-05-01T14:30:00",
          "2023-05-01T15:30:00",
          "2023-05-01T16:30:00",
          "2023-05-01T17:30:00",
          "2023-05-01T18:30:00",
          "2023-05-01T19:30:00",
          "2023-05-01T20:30:00",
          "2023-05-01T21:30:00",
          "2023-05-01T22:30:00",
          "2023-05-01T23:30:00",
          "2023-05-02T00:30:00",
          "2023-05-02T01:30:00",
          "2023-05-02T02:30:00",
          "2023-05-02T03:30:00",
          "2023-05-02T04:30:00",
          "2023-05-02T05:30:00",
          "2023-05-02T06:30:00",
          "2023-05-02T07:30:00",
          "2023-05-02T08:30:00",
          "2023-05-02T09:30:00",
          "2023-05-02T10:30:00",
          "2023-05-02T11:30:00",
          "2023-05-02T12:30:00",
          "2023-05-02T13:30:00",
          "2023-05-02T14:30:00",
          "2023-05-02T15:30:00",
          "2023-05-02T16:30:00",
          "2023-05-02T17:30:00",
          "2023-05-02T18:30:00",
          "2023-05-02T19:30:00",
          "2023-05-02T20:30:00",
          "2023-05-02T21:30:00",
          "2023-05-02T22:30:00",
          "2023-05-02T23:30:00",
          "2023-05-03T00:30:00",
          "2023-05-03T01:30:00",
          "2023-05-03T02:30:00",
          "2023-05-03T03:30:00",
          "2023-05-03T04:30:00",
          "2023-05-03T06:30:00",
          "2023-05-03T07:30:00",
          "2023-05-03T08:30:00",
          "2023-05-03T09:30:00",
          "2023-05-03T10:30:00",
          "2023-05-03T11:30:00",
          "2023-05-03T12:30:00",
          "2023-05-03T13:30:00",
          "2023-05-03T14:30:00",
          "2023-05-03T15:30:00",
          "2023-05-03T16:30:00",
          "2023-05-03T17:30:00",
          "2023-05-03T18:30:00",
          "2023-05-03T19:30:00",
          "2023-05-03T20:30:00",
          "2023-05-03T21:30:00",
          "2023-05-03T22:30:00",
          "2023-05-03T23:30:00",
          "2023-05-04T00:30:00",
          "2023-05-04T03:30:00",
          "2023-05-04T06:30:00",
          "2023-05-04T07:30:00",
          "2023-05-04T08:30:00",
          "2023-05-04T09:30:00",
          "2023-05-04T10:30:00",
          "2023-05-04T11:30:00",
          "2023-05-04T12:30:00",
          "2023-05-04T13:30:00",
          "2023-05-04T14:30:00",
          "2023-05-04T15:30:00",
          "2023-05-04T16:30:00",
          "2023-05-04T17:30:00",
          "2023-05-04T18:30:00",
          "2023-05-04T19:30:00",
          "2023-05-04T20:30:00",
          "2023-05-04T21:30:00",
          "2023-05-04T22:30:00",
          "2023-05-04T23:30:00",
          "2023-05-05T00:30:00",
          "2023-05-05T01:30:00",
          "2023-05-05T02:30:00",
          "2023-05-05T03:30:00",
          "2023-05-05T04:30:00",
          "2023-05-05T05:30:00",
          "2023-05-05T06:30:00",
          "2023-05-05T07:30:00",
          "2023-05-05T08:30:00",
          "2023-05-05T09:30:00",
          "2023-05-05T10:30:00",
          "2023-05-05T11:30:00",
          "2023-05-05T12:30:00",
          "2023-05-05T13:30:00",
          "2023-05-05T14:30:00",
          "2023-05-05T15:30:00",
          "2023-05-05T16:30:00",
          "2023-05-05T17:30:00",
          "2023-05-05T18:30:00",
          "2023-05-05T19:30:00",
          "2023-05-05T20:30:00",
          "2023-05-05T21:30:00",
          "2023-05-05T22:30:00",
          "2023-05-05T23:30:00",
          "2023-05-06T00:30:00",
          "2023-05-06T01:30:00",
          "2023-05-06T02:30:00",
          "2023-05-06T03:30:00",
          "2023-05-06T04:30:00",
          "2023-05-06T05:30:00",
          "2023-05-06T06:30:00",
          "2023-05-06T07:30:00",
          "2023-05-06T08:30:00",
          "2023-05-06T09:30:00",
          "2023-05-06T10:30:00",
          "2023-05-06T11:30:00",
          "2023-05-06T12:30:00",
          "2023-05-06T13:30:00",
          "2023-05-06T14:30:00",
          "2023-05-06T15:30:00",
          "2023-05-06T16:30:00",
          "2023-05-06T17:30:00",
          "2023-05-06T18:30:00",
          "2023-05-06T19:30:00",
          "2023-05-06T20:30:00",
          "2023-05-06T21:30:00",
          "2023-05-06T22:30:00",
          "2023-05-07T00:30:00",
          "2023-05-07T01:30:00",
          "2023-05-07T02:30:00",
          "2023-05-07T03:30:00",
          "2023-05-07T04:30:00",
          "2023-05-07T05:30:00",
          "2023-05-07T06:30:00",
          "2023-05-07T07:30:00",
          "2023-05-07T08:30:00",
          "2023-05-07T09:30:00",
          "2023-05-07T10:30:00",
          "2023-05-07T11:30:00",
          "2023-05-07T12:30:00",
          "2023-05-07T13:30:00",
          "2023-05-07T14:30:00",
          "2023-05-07T15:30:00",
          "2023-05-07T16:30:00",
          "2023-05-07T17:30:00",
          "2023-05-07T18:30:00",
          "2023-05-07T19:30:00",
          "2023-05-07T20:30:00",
          "2023-05-07T21:30:00",
          "2023-05-07T22:30:00",
          "2023-05-07T23:30:00",
          "2023-05-08T00:30:00",
          "2023-05-08T01:30:00",
          "2023-05-08T02:30:00",
          "2023-05-08T03:30:00",
          "2023-05-08T04:30:00",
          "2023-05-08T05:30:00",
          "2023-05-08T06:30:00",
          "2023-05-08T07:30:00",
          "2023-05-08T08:30:00",
          "2023-05-08T09:30:00",
          "2023-05-08T10:30:00",
          "2023-05-08T11:30:00",
          "2023-05-08T12:30:00",
          "2023-05-08T13:30:00",
          "2023-05-08T14:30:00",
          "2023-05-08T15:30:00",
          "2023-05-08T16:30:00",
          "2023-05-08T17:30:00",
          "2023-05-08T18:30:00",
          "2023-05-08T19:30:00",
          "2023-05-08T20:30:00",
          "2023-05-08T21:30:00",
          "2023-05-08T22:30:00",
          "2023-05-08T23:30:00",
          "2023-05-09T00:30:00",
          "2023-05-09T02:30:00",
          "2023-05-09T03:30:00",
          "2023-05-09T04:30:00",
          "2023-05-09T05:30:00",
          "2023-05-09T06:30:00",
          "2023-05-09T07:30:00",
          "2023-05-09T08:30:00",
          "2023-05-09T09:30:00",
          "2023-05-09T10:30:00",
          "2023-05-09T11:30:00",
          "2023-05-09T13:30:00",
          "2023-05-09T14:30:00",
          "2023-05-09T15:30:00",
          "2023-05-09T16:30:00",
          "2023-05-09T18:30:00",
          "2023-05-09T22:30:00",
          "2023-05-10T00:30:00",
          "2023-05-10T07:30:00",
          "2023-05-10T08:30:00",
          "2023-05-10T10:30:00",
          "2023-05-10T11:30:00",
          "2023-05-10T12:30:00",
          "2023-05-10T13:30:00",
          "2023-05-10T14:30:00",
          "2023-05-10T15:30:00",
          "2023-05-10T16:30:00",
          "2023-05-10T17:30:00",
          "2023-05-10T18:30:00",
          "2023-05-10T19:30:00",
          "2023-05-10T20:30:00",
          "2023-05-10T21:30:00",
          "2023-05-10T22:30:00",
          "2023-05-10T23:30:00",
          "2023-05-11T00:30:00",
          "2023-05-11T01:30:00",
          "2023-05-11T02:30:00",
          "2023-05-11T03:30:00",
          "2023-05-11T04:30:00",
          "2023-05-11T05:30:00",
          "2023-05-11T06:30:00",
          "2023-05-11T07:30:00",
          "2023-05-11T08:30:00",
          "2023-05-11T09:30:00",
          "2023-05-11T10:30:00",
          "2023-05-11T11:30:00",
          "2023-05-11T12:30:00",
          "2023-05-11T13:30:00",
          "2023-05-11T14:30:00",
          "2023-05-11T15:30:00",
          "2023-05-11T16:30:00",
          "2023-05-11T17:30:00",
          "2023-05-11T18:30:00",
          "2023-05-11T19:30:00",
          "2023-05-11T20:30:00",
          "2023-05-11T21:30:00",
          "2023-05-11T22:30:00",
          "2023-05-11T23:30:00",
          "2023-05-12T00:30:00",
          "2023-05-12T01:30:00",
          "2023-05-12T02:30:00",
          "2023-05-12T03:30:00",
          "2023-05-12T04:30:00",
          "2023-05-12T05:30:00",
          "2023-05-12T06:30:00",
          "2023-05-12T07:30:00",
          "2023-05-12T08:30:00",
          "2023-05-12T09:30:00",
          "2023-05-12T10:30:00",
          "2023-05-12T11:30:00",
          "2023-05-12T12:30:00",
          "2023-05-12T13:30:00",
          "2023-05-12T14:30:00",
          "2023-05-12T15:30:00",
          "2023-05-12T16:30:00",
          "2023-05-12T17:30:00",
          "2023-05-12T18:30:00",
          "2023-05-12T20:30:00",
          "2023-05-12T21:30:00",
          "2023-05-12T22:30:00",
          "2023-05-12T23:30:00",
          "2023-05-13T00:30:00",
          "2023-05-13T01:30:00",
          "2023-05-13T02:30:00",
          "2023-05-13T03:30:00",
          "2023-05-13T04:30:00",
          "2023-05-13T05:30:00",
          "2023-05-13T06:30:00",
          "2023-05-13T07:30:00",
          "2023-05-13T08:30:00",
          "2023-05-13T09:30:00",
          "2023-05-13T10:30:00",
          "2023-05-13T11:30:00",
          "2023-05-13T12:30:00",
          "2023-05-13T13:30:00",
          "2023-05-13T14:30:00",
          "2023-05-13T15:30:00",
          "2023-05-13T16:30:00",
          "2023-05-13T17:30:00",
          "2023-05-13T18:30:00",
          "2023-05-13T19:30:00",
          "2023-05-13T20:30:00",
          "2023-05-13T21:30:00",
          "2023-05-13T22:30:00",
          "2023-05-13T23:30:00",
          "2023-05-14T00:30:00",
          "2023-05-14T01:30:00",
          "2023-05-14T02:30:00",
          "2023-05-14T03:30:00",
          "2023-05-14T04:30:00",
          "2023-05-14T05:30:00",
          "2023-05-14T07:30:00",
          "2023-05-14T09:30:00",
          "2023-05-14T10:30:00",
          "2023-05-14T11:30:00",
          "2023-05-14T12:30:00",
          "2023-05-14T13:30:00",
          "2023-05-14T14:30:00",
          "2023-05-14T15:30:00",
          "2023-05-14T18:30:00",
          "2023-05-14T19:30:00",
          "2023-05-14T20:30:00",
          "2023-05-14T21:30:00",
          "2023-05-14T22:30:00",
          "2023-05-14T23:30:00",
          "2023-05-15T00:30:00",
          "2023-05-15T01:30:00",
          "2023-05-15T02:30:00",
          "2023-05-15T03:30:00",
          "2023-05-15T04:30:00",
          "2023-05-15T05:30:00",
          "2023-05-15T06:30:00",
          "2023-05-15T07:30:00",
          "2023-05-15T08:30:00",
          "2023-05-15T09:30:00",
          "2023-05-15T10:30:00",
          "2023-05-15T12:30:00",
          "2023-05-15T13:30:00",
          "2023-05-15T14:30:00",
          "2023-05-15T15:30:00",
          "2023-05-15T16:30:00",
          "2023-05-15T17:30:00",
          "2023-05-15T18:30:00",
          "2023-05-15T19:30:00",
          "2023-05-15T20:30:00",
          "2023-05-15T21:30:00",
          "2023-05-15T22:30:00",
          "2023-05-15T23:30:00",
          "2023-05-16T00:30:00",
          "2023-05-16T01:30:00",
          "2023-05-16T02:30:00",
          "2023-05-16T03:30:00",
          "2023-05-16T04:30:00",
          "2023-05-16T05:30:00",
          "2023-05-16T06:30:00",
          "2023-05-16T07:30:00",
          "2023-05-16T08:30:00",
          "2023-05-16T09:30:00",
          "2023-05-16T10:30:00",
          "2023-05-16T11:30:00",
          "2023-05-16T12:30:00",
          "2023-05-16T13:30:00",
          "2023-05-16T14:30:00",
          "2023-05-16T15:30:00",
          "2023-05-16T16:30:00",
          "2023-05-16T17:30:00",
          "2023-05-16T18:30:00",
          "2023-05-16T19:30:00",
          "2023-05-16T20:30:00",
          "2023-05-16T21:30:00",
          "2023-05-16T22:30:00",
          "2023-05-16T23:30:00",
          "2023-05-17T00:30:00",
          "2023-05-17T01:30:00",
          "2023-05-17T02:30:00",
          "2023-05-17T03:30:00",
          "2023-05-17T05:30:00",
          "2023-05-17T06:30:00",
          "2023-05-17T07:30:00",
          "2023-05-17T08:30:00",
          "2023-05-17T09:30:00",
          "2023-05-17T10:30:00",
          "2023-05-17T11:30:00",
          "2023-05-17T12:30:00",
          "2023-05-17T13:30:00",
          "2023-05-17T14:30:00",
          "2023-05-17T15:30:00",
          "2023-05-17T16:30:00",
          "2023-05-17T17:30:00",
          "2023-05-17T18:30:00",
          "2023-05-17T19:30:00",
          "2023-05-17T20:30:00",
          "2023-05-17T21:30:00",
          "2023-05-17T22:30:00",
          "2023-05-17T23:30:00",
          "2023-05-18T00:30:00",
          "2023-05-18T01:30:00",
          "2023-05-18T02:30:00",
          "2023-05-18T04:30:00",
          "2023-05-18T05:30:00",
          "2023-05-18T06:30:00",
          "2023-05-18T07:30:00",
          "2023-05-18T08:30:00",
          "2023-05-18T09:30:00",
          "2023-05-18T10:30:00",
          "2023-05-18T11:30:00",
          "2023-05-18T13:30:00",
          "2023-05-18T14:30:00",
          "2023-05-18T15:30:00",
          "2023-05-18T16:30:00",
          "2023-05-18T17:30:00",
          "2023-05-18T18:30:00",
          "2023-05-18T19:30:00",
          "2023-05-18T20:30:00",
          "2023-05-18T21:30:00",
          "2023-05-18T22:30:00",
          "2023-05-18T23:30:00",
          "2023-05-19T00:30:00",
          "2023-05-19T01:30:00",
          "2023-05-19T02:30:00",
          "2023-05-19T03:30:00",
          "2023-05-19T04:30:00",
          "2023-05-19T05:30:00",
          "2023-05-19T06:30:00",
          "2023-05-19T07:30:00",
          "2023-05-19T08:30:00",
          "2023-05-19T09:30:00",
          "2023-05-19T10:30:00",
          "2023-05-19T11:30:00",
          "2023-05-19T12:30:00",
          "2023-05-19T13:30:00",
          "2023-05-19T14:30:00",
          "2023-05-19T15:30:00",
          "2023-05-19T16:30:00",
          "2023-05-19T17:30:00",
          "2023-05-19T18:30:00",
          "2023-05-19T19:30:00",
          "2023-05-19T20:30:00",
          "2023-05-19T21:30:00",
          "2023-05-19T22:30:00",
          "2023-05-19T23:30:00",
          "2023-05-20T00:30:00",
          "2023-05-20T01:30:00",
          "2023-05-20T02:30:00",
          "2023-05-20T03:30:00",
          "2023-05-20T04:30:00",
          "2023-05-20T05:30:00",
          "2023-05-20T06:30:00",
          "2023-05-20T07:30:00",
          "2023-05-20T08:30:00",
          "2023-05-20T09:30:00",
          "2023-05-20T10:30:00",
          "2023-05-20T11:30:00",
          "2023-05-20T12:30:00",
          "2023-05-20T13:30:00",
          "2023-05-20T14:30:00",
          "2023-05-20T15:30:00",
          "2023-05-20T16:30:00",
          "2023-05-20T17:30:00",
          "2023-05-20T18:30:00",
          "2023-05-20T19:30:00",
          "2023-05-20T20:30:00",
          "2023-05-20T21:30:00",
          "2023-05-20T22:30:00",
          "2023-05-20T23:30:00",
          "2023-05-21T00:30:00",
          "2023-05-21T01:30:00",
          "2023-05-21T02:30:00",
          "2023-05-21T03:30:00",
          "2023-05-21T04:30:00",
          "2023-05-21T05:30:00",
          "2023-05-21T06:30:00",
          "2023-05-21T07:30:00",
          "2023-05-21T08:30:00",
          "2023-05-21T09:30:00",
          "2023-05-21T10:30:00",
          "2023-05-21T11:30:00",
          "2023-05-21T12:30:00",
          "2023-05-21T13:30:00",
          "2023-05-21T14:30:00",
          "2023-05-21T15:30:00",
          "2023-05-21T16:30:00",
          "2023-05-21T17:30:00",
          "2023-05-21T18:30:00",
          "2023-05-21T19:30:00",
          "2023-05-21T20:30:00",
          "2023-05-21T21:30:00",
          "2023-05-21T22:30:00",
          "2023-05-21T23:30:00",
          "2023-05-22T00:30:00",
          "2023-05-22T01:30:00",
          "2023-05-22T02:30:00",
          "2023-05-22T03:30:00",
          "2023-05-22T04:30:00",
          "2023-05-22T05:30:00",
          "2023-05-22T06:30:00",
          "2023-05-22T07:30:00",
          "2023-05-22T08:30:00",
          "2023-05-22T09:30:00",
          "2023-05-22T10:30:00",
          "2023-05-22T11:30:00",
          "2023-05-22T12:30:00",
          "2023-05-22T13:30:00",
          "2023-05-22T14:30:00",
          "2023-05-22T15:30:00",
          "2023-05-22T16:30:00",
          "2023-05-22T17:30:00",
          "2023-05-22T18:30:00",
          "2023-05-22T19:30:00",
          "2023-05-22T20:30:00",
          "2023-05-22T21:30:00",
          "2023-05-22T22:30:00",
          "2023-05-22T23:30:00",
          "2023-05-23T00:30:00",
          "2023-05-23T01:30:00",
          "2023-05-23T02:30:00",
          "2023-05-23T03:30:00",
          "2023-05-23T04:30:00",
          "2023-05-23T05:30:00",
          "2023-05-23T06:30:00",
          "2023-05-23T07:30:00",
          "2023-05-23T08:30:00",
          "2023-05-23T09:30:00",
          "2023-05-23T10:30:00",
          "2023-05-23T11:30:00",
          "2023-05-23T12:30:00",
          "2023-05-23T13:30:00",
          "2023-05-23T14:30:00",
          "2023-05-23T15:30:00",
          "2023-05-23T16:30:00",
          "2023-05-23T17:30:00",
          "2023-05-23T18:30:00",
          "2023-05-23T19:30:00",
          "2023-05-23T20:30:00",
          "2023-05-23T21:30:00",
          "2023-05-23T22:30:00",
          "2023-05-23T23:30:00",
          "2023-05-24T00:30:00",
          "2023-05-24T01:30:00",
          "2023-05-24T02:30:00",
          "2023-05-24T03:30:00",
          "2023-05-24T04:30:00",
          "2023-05-24T05:30:00",
          "2023-05-24T06:30:00",
          "2023-05-24T07:30:00",
          "2023-05-24T08:30:00",
          "2023-05-24T09:30:00",
          "2023-05-24T10:30:00",
          "2023-05-24T11:30:00",
          "2023-05-24T12:30:00",
          "2023-05-24T13:30:00",
          "2023-05-24T14:30:00",
          "2023-05-24T15:30:00",
          "2023-05-24T16:30:00",
          "2023-05-24T17:30:00",
          "2023-05-24T18:30:00",
          "2023-05-24T19:30:00",
          "2023-05-24T20:30:00",
          "2023-05-24T21:30:00",
          "2023-05-24T22:30:00",
          "2023-05-24T23:30:00",
          "2023-05-25T00:30:00",
          "2023-05-25T01:30:00",
          "2023-05-25T02:30:00",
          "2023-05-25T03:30:00",
          "2023-05-25T04:30:00",
          "2023-05-25T05:30:00",
          "2023-05-25T06:30:00",
          "2023-05-25T07:30:00",
          "2023-05-25T08:30:00",
          "2023-05-25T09:30:00",
          "2023-05-25T10:30:00",
          "2023-05-25T11:30:00",
          "2023-05-25T12:30:00",
          "2023-05-25T13:30:00",
          "2023-05-25T14:30:00",
          "2023-05-25T15:30:00",
          "2023-05-25T16:30:00",
          "2023-05-25T17:30:00",
          "2023-05-25T18:30:00",
          "2023-05-25T19:30:00",
          "2023-05-25T20:30:00",
          "2023-05-25T21:30:00",
          "2023-05-25T22:30:00",
          "2023-05-25T23:30:00",
          "2023-05-26T00:30:00",
          "2023-05-26T01:30:00",
          "2023-05-26T02:30:00",
          "2023-05-26T03:30:00",
          "2023-05-26T04:30:00",
          "2023-05-26T05:30:00",
          "2023-05-26T06:30:00",
          "2023-05-26T07:30:00",
          "2023-05-26T08:30:00",
          "2023-05-26T09:30:00",
          "2023-05-26T10:30:00",
          "2023-05-26T11:30:00",
          "2023-05-26T12:30:00",
          "2023-05-26T13:30:00",
          "2023-05-26T14:30:00",
          "2023-05-26T15:30:00",
          "2023-05-26T16:30:00",
          "2023-05-26T17:30:00",
          "2023-05-26T18:30:00",
          "2023-05-26T19:30:00",
          "2023-05-26T20:30:00",
          "2023-05-26T21:30:00",
          "2023-05-26T22:30:00",
          "2023-05-26T23:30:00",
          "2023-05-27T00:30:00",
          "2023-05-27T01:30:00",
          "2023-05-27T02:30:00",
          "2023-05-27T03:30:00",
          "2023-05-27T04:30:00",
          "2023-05-27T05:30:00",
          "2023-05-27T06:30:00",
          "2023-05-27T07:30:00",
          "2023-05-27T08:30:00",
          "2023-05-28T06:30:00",
          "2023-05-28T07:30:00",
          "2023-05-28T08:30:00",
          "2023-05-28T09:30:00",
          "2023-05-28T11:30:00",
          "2023-05-28T12:30:00",
          "2023-05-28T13:30:00",
          "2023-05-28T14:30:00",
          "2023-05-28T15:30:00",
          "2023-05-28T16:30:00",
          "2023-05-28T17:30:00",
          "2023-05-28T18:30:00",
          "2023-05-28T19:30:00",
          "2023-05-28T20:30:00",
          "2023-05-28T21:30:00",
          "2023-05-28T22:30:00",
          "2023-05-28T23:30:00",
          "2023-05-29T00:30:00",
          "2023-05-29T01:30:00",
          "2023-05-29T02:30:00",
          "2023-05-29T03:30:00",
          "2023-05-29T04:30:00",
          "2023-05-29T05:30:00",
          "2023-05-29T06:30:00",
          "2023-05-29T07:30:00",
          "2023-05-29T08:30:00",
          "2023-05-29T09:30:00",
          "2023-05-29T10:30:00",
          "2023-05-29T11:30:00",
          "2023-05-29T12:30:00",
          "2023-05-29T13:30:00",
          "2023-05-29T14:30:00",
          "2023-05-29T15:30:00",
          "2023-05-29T16:30:00",
          "2023-05-29T17:30:00",
          "2023-05-29T18:30:00",
          "2023-05-29T19:30:00",
          "2023-05-29T20:30:00",
          "2023-05-29T21:30:00",
          "2023-05-29T22:30:00",
          "2023-05-29T23:30:00",
          "2023-05-30T00:30:00",
          "2023-05-30T01:30:00",
          "2023-05-30T02:30:00",
          "2023-05-30T03:30:00",
          "2023-05-30T04:30:00",
          "2023-05-30T05:30:00",
          "2023-05-30T06:30:00",
          "2023-05-30T08:30:00",
          "2023-05-30T09:30:00",
          "2023-05-30T10:30:00",
          "2023-05-30T11:30:00",
          "2023-05-30T12:30:00",
          "2023-05-30T13:30:00",
          "2023-05-30T14:30:00",
          "2023-05-30T15:30:00",
          "2023-05-30T16:30:00",
          "2023-05-30T17:30:00",
          "2023-05-30T18:30:00",
          "2023-05-30T19:30:00",
          "2023-05-30T20:30:00",
          "2023-05-30T21:30:00",
          "2023-05-30T22:30:00",
          "2023-05-30T23:30:00",
          "2023-05-31T00:30:00",
          "2023-05-31T01:30:00",
          "2023-05-31T02:30:00",
          "2023-05-31T03:30:00",
          "2023-05-31T04:30:00",
          "2023-05-31T05:30:00",
          "2023-05-31T06:30:00",
          "2023-05-31T07:30:00",
          "2023-05-31T08:30:00",
          "2023-05-31T09:30:00",
          "2023-05-31T10:30:00",
          "2023-05-31T11:30:00",
          "2023-05-31T12:30:00",
          "2023-05-31T13:30:00",
          "2023-05-31T14:30:00",
          "2023-05-31T15:30:00",
          "2023-05-31T16:30:00",
          "2023-05-31T17:30:00",
          "2023-05-31T18:30:00",
          "2023-05-31T19:30:00",
          "2023-05-31T20:30:00",
          "2023-05-31T21:30:00",
          "2023-05-31T22:30:00",
          "2023-05-31T23:30:00",
          "2023-06-01T00:30:00",
          "2023-06-01T01:30:00",
          "2023-06-01T02:30:00",
          "2023-06-01T03:30:00",
          "2023-06-01T04:30:00",
          "2023-06-01T05:30:00",
          "2023-06-01T06:30:00",
          "2023-06-01T07:30:00",
          "2023-06-01T08:30:00",
          "2023-06-01T09:30:00",
          "2023-06-01T10:30:00",
          "2023-06-01T11:30:00",
          "2023-06-01T12:30:00",
          "2023-06-01T13:30:00",
          "2023-06-01T14:30:00",
          "2023-06-01T15:30:00",
          "2023-06-01T16:30:00",
          "2023-06-01T17:30:00",
          "2023-06-01T18:30:00",
          "2023-06-01T19:30:00",
          "2023-06-01T20:30:00",
          "2023-06-01T21:30:00",
          "2023-06-01T22:30:00",
          "2023-06-01T23:30:00",
          "2023-06-02T00:30:00",
          "2023-06-02T01:30:00",
          "2023-06-02T02:30:00",
          "2023-06-02T03:30:00",
          "2023-06-02T04:30:00",
          "2023-06-02T05:30:00",
          "2023-06-02T06:30:00",
          "2023-06-02T07:30:00",
          "2023-06-02T08:30:00",
          "2023-06-02T09:30:00",
          "2023-06-02T10:30:00",
          "2023-06-02T11:30:00",
          "2023-06-02T12:30:00",
          "2023-06-02T13:30:00",
          "2023-06-02T14:30:00",
          "2023-06-02T15:30:00",
          "2023-06-02T16:30:00",
          "2023-06-02T17:30:00",
          "2023-06-02T18:30:00",
          "2023-06-02T19:30:00",
          "2023-06-02T20:30:00",
          "2023-06-02T21:30:00",
          "2023-06-02T22:30:00",
          "2023-06-02T23:30:00",
          "2023-06-03T00:30:00",
          "2023-06-03T01:30:00",
          "2023-06-03T02:30:00",
          "2023-06-03T03:30:00",
          "2023-06-03T04:30:00",
          "2023-06-03T05:30:00",
          "2023-06-03T06:30:00",
          "2023-06-03T07:30:00",
          "2023-06-03T08:30:00",
          "2023-06-03T09:30:00",
          "2023-06-03T10:30:00",
          "2023-06-03T11:30:00",
          "2023-06-03T12:30:00",
          "2023-06-03T13:30:00",
          "2023-06-03T14:30:00",
          "2023-06-03T15:30:00",
          "2023-06-03T16:30:00",
          "2023-06-03T17:30:00",
          "2023-06-03T18:30:00",
          "2023-06-03T19:30:00",
          "2023-06-03T20:30:00",
          "2023-06-03T21:30:00",
          "2023-06-03T22:30:00",
          "2023-06-03T23:30:00",
          "2023-06-04T00:30:00",
          "2023-06-04T01:30:00",
          "2023-06-04T02:30:00",
          "2023-06-04T03:30:00",
          "2023-06-04T04:30:00",
          "2023-06-04T05:30:00",
          "2023-06-04T06:30:00",
          "2023-06-04T07:30:00",
          "2023-06-04T08:30:00",
          "2023-06-04T09:30:00",
          "2023-06-04T10:30:00",
          "2023-06-04T11:30:00",
          "2023-06-04T12:30:00",
          "2023-06-04T13:30:00",
          "2023-06-04T14:30:00",
          "2023-06-04T15:30:00",
          "2023-06-04T16:30:00",
          "2023-06-04T17:30:00",
          "2023-06-04T18:30:00",
          "2023-06-04T19:30:00",
          "2023-06-04T20:30:00",
          "2023-06-04T21:30:00",
          "2023-06-04T22:30:00",
          "2023-06-04T23:30:00",
          "2023-06-05T00:30:00",
          "2023-06-05T01:30:00",
          "2023-06-05T02:30:00",
          "2023-06-05T03:30:00",
          "2023-06-05T04:30:00",
          "2023-06-05T05:30:00",
          "2023-06-05T06:30:00",
          "2023-06-05T07:30:00",
          "2023-06-05T08:30:00",
          "2023-06-05T09:30:00",
          "2023-06-05T10:30:00",
          "2023-06-05T11:30:00",
          "2023-06-05T12:30:00",
          "2023-06-05T13:30:00",
          "2023-06-05T14:30:00",
          "2023-06-05T15:30:00",
          "2023-06-05T16:30:00",
          "2023-06-05T17:30:00",
          "2023-06-05T18:30:00",
          "2023-06-05T19:30:00",
          "2023-06-05T20:30:00",
          "2023-06-05T21:30:00",
          "2023-06-05T22:30:00",
          "2023-06-05T23:30:00",
          "2023-06-06T00:30:00",
          "2023-06-06T01:30:00",
          "2023-06-06T02:30:00",
          "2023-06-06T03:30:00",
          "2023-06-06T04:30:00",
          "2023-06-06T05:30:00",
          "2023-06-06T06:30:00",
          "2023-06-06T07:30:00",
          "2023-06-06T08:30:00",
          "2023-06-06T09:30:00",
          "2023-06-06T10:30:00",
          "2023-06-06T11:30:00",
          "2023-06-06T12:30:00",
          "2023-06-06T13:30:00",
          "2023-06-06T14:30:00",
          "2023-06-06T15:30:00",
          "2023-06-06T16:30:00",
          "2023-06-06T18:30:00",
          "2023-06-06T19:30:00",
          "2023-06-06T20:30:00",
          "2023-06-06T21:30:00",
          "2023-06-06T22:30:00",
          "2023-06-06T23:30:00",
          "2023-06-07T00:30:00",
          "2023-06-07T01:30:00",
          "2023-06-07T02:30:00",
          "2023-06-07T03:30:00",
          "2023-06-07T04:30:00",
          "2023-06-07T05:30:00",
          "2023-06-07T06:30:00",
          "2023-06-07T07:30:00",
          "2023-06-07T08:30:00",
          "2023-06-07T09:30:00",
          "2023-06-07T10:30:00",
          "2023-06-07T11:30:00",
          "2023-06-07T12:30:00",
          "2023-06-07T13:30:00",
          "2023-06-07T14:30:00",
          "2023-06-07T15:30:00",
          "2023-06-07T16:30:00",
          "2023-06-07T17:30:00",
          "2023-06-07T18:30:00",
          "2023-06-07T19:30:00",
          "2023-06-07T20:30:00",
          "2023-06-07T21:30:00",
          "2023-06-07T22:30:00",
          "2023-06-07T23:30:00",
          "2023-06-08T00:30:00",
          "2023-06-08T01:30:00",
          "2023-06-08T02:30:00",
          "2023-06-08T03:30:00",
          "2023-06-08T04:30:00",
          "2023-06-08T05:30:00",
          "2023-06-08T06:30:00",
          "2023-06-08T07:30:00",
          "2023-06-08T08:30:00",
          "2023-06-08T09:30:00",
          "2023-06-08T10:30:00",
          "2023-06-08T11:30:00",
          "2023-06-08T12:30:00",
          "2023-06-08T13:30:00",
          "2023-06-08T14:30:00",
          "2023-06-08T15:30:00",
          "2023-06-08T16:30:00",
          "2023-06-08T17:30:00",
          "2023-06-08T18:30:00",
          "2023-06-08T19:30:00",
          "2023-06-08T20:30:00",
          "2023-06-08T21:30:00",
          "2023-06-08T22:30:00",
          "2023-06-08T23:30:00",
          "2023-06-09T00:30:00",
          "2023-06-09T01:30:00",
          "2023-06-09T02:30:00",
          "2023-06-09T03:30:00",
          "2023-06-09T04:30:00",
          "2023-06-09T05:30:00",
          "2023-06-09T06:30:00",
          "2023-06-09T07:30:00",
          "2023-06-09T08:30:00",
          "2023-06-09T09:30:00",
          "2023-06-09T10:30:00",
          "2023-06-09T11:30:00",
          "2023-06-09T12:30:00",
          "2023-06-09T13:30:00",
          "2023-06-09T14:30:00",
          "2023-06-09T15:30:00",
          "2023-06-09T16:30:00",
          "2023-06-09T17:30:00",
          "2023-06-09T18:30:00",
          "2023-06-09T19:30:00",
          "2023-06-09T20:30:00",
          "2023-06-09T21:30:00",
          "2023-06-09T22:30:00",
          "2023-06-09T23:30:00",
          "2023-06-10T00:30:00",
          "2023-06-10T01:30:00",
          "2023-06-10T02:30:00",
          "2023-06-10T03:30:00",
          "2023-06-10T04:30:00",
          "2023-06-10T05:30:00",
          "2023-06-10T06:30:00",
          "2023-06-10T07:30:00",
          "2023-06-10T08:30:00",
          "2023-06-10T09:30:00",
          "2023-06-10T10:30:00",
          "2023-06-10T11:30:00",
          "2023-06-10T12:30:00",
          "2023-06-10T13:30:00",
          "2023-06-10T14:30:00",
          "2023-06-10T15:30:00",
          "2023-06-10T16:30:00",
          "2023-06-10T17:30:00",
          "2023-06-10T18:30:00",
          "2023-06-10T19:30:00",
          "2023-06-10T20:30:00",
          "2023-06-10T21:30:00",
          "2023-06-10T22:30:00",
          "2023-06-10T23:30:00",
          "2023-06-11T00:30:00",
          "2023-06-11T01:30:00",
          "2023-06-11T02:30:00",
          "2023-06-11T03:30:00",
          "2023-06-11T04:30:00",
          "2023-06-11T05:30:00",
          "2023-06-11T06:30:00",
          "2023-06-11T07:30:00",
          "2023-06-11T08:30:00",
          "2023-06-11T09:30:00",
          "2023-06-11T10:30:00",
          "2023-06-11T11:30:00",
          "2023-06-11T12:30:00",
          "2023-06-11T13:30:00",
          "2023-06-11T14:30:00",
          "2023-06-11T15:30:00",
          "2023-06-11T16:30:00",
          "2023-06-11T17:30:00",
          "2023-06-11T18:30:00",
          "2023-06-11T19:30:00",
          "2023-06-11T20:30:00",
          "2023-06-11T21:30:00",
          "2023-06-11T22:30:00",
          "2023-06-11T23:30:00",
          "2023-06-12T00:30:00",
          "2023-06-12T01:30:00",
          "2023-06-12T02:30:00",
          "2023-06-12T03:30:00",
          "2023-06-12T04:30:00",
          "2023-06-12T05:30:00",
          "2023-06-12T06:30:00",
          "2023-06-12T07:30:00",
          "2023-06-12T08:30:00",
          "2023-06-12T09:30:00",
          "2023-06-12T10:30:00",
          "2023-06-12T11:30:00",
          "2023-06-12T12:30:00",
          "2023-06-12T13:30:00",
          "2023-06-12T14:30:00",
          "2023-06-12T15:30:00",
          "2023-06-12T16:30:00",
          "2023-06-12T17:30:00",
          "2023-06-12T18:30:00",
          "2023-06-12T19:30:00",
          "2023-06-12T20:30:00",
          "2023-06-12T21:30:00",
          "2023-06-12T22:30:00",
          "2023-06-12T23:30:00",
          "2023-06-13T00:30:00",
          "2023-06-13T01:30:00",
          "2023-06-13T02:30:00",
          "2023-06-13T03:30:00",
          "2023-06-13T04:30:00",
          "2023-06-13T05:30:00",
          "2023-06-13T06:30:00",
          "2023-06-13T07:30:00",
          "2023-06-13T08:30:00",
          "2023-06-13T09:30:00",
          "2023-06-13T10:30:00",
          "2023-06-13T11:30:00",
          "2023-06-13T12:30:00",
          "2023-06-13T13:30:00",
          "2023-06-13T14:30:00",
          "2023-06-13T15:30:00",
          "2023-06-13T16:30:00",
          "2023-06-13T17:30:00",
          "2023-06-13T18:30:00",
          "2023-06-13T19:30:00",
          "2023-06-13T20:30:00",
          "2023-06-13T21:30:00",
          "2023-06-13T22:30:00",
          "2023-06-13T23:30:00",
          "2023-06-14T00:30:00",
          "2023-06-14T01:30:00",
          "2023-06-14T02:30:00",
          "2023-06-14T03:30:00",
          "2023-06-14T04:30:00",
          "2023-06-14T05:30:00",
          "2023-06-14T06:30:00",
          "2023-06-14T07:30:00",
          "2023-06-14T08:30:00",
          "2023-06-14T09:30:00",
          "2023-06-14T10:30:00",
          "2023-06-14T11:30:00",
          "2023-06-14T12:30:00",
          "2023-06-14T13:30:00",
          "2023-06-14T14:30:00",
          "2023-06-14T15:30:00",
          "2023-06-14T16:30:00",
          "2023-06-14T17:30:00",
          "2023-06-14T18:30:00",
          "2023-06-14T19:30:00",
          "2023-06-14T20:30:00",
          "2023-06-14T21:30:00",
          "2023-06-14T22:30:00",
          "2023-06-14T23:30:00",
          "2023-06-15T00:30:00",
          "2023-06-15T01:30:00",
          "2023-06-15T02:30:00",
          "2023-06-15T03:30:00",
          "2023-06-15T04:30:00",
          "2023-06-15T05:30:00",
          "2023-06-15T06:30:00",
          "2023-06-15T07:30:00",
          "2023-06-15T08:30:00",
          "2023-06-15T09:30:00",
          "2023-06-15T10:30:00",
          "2023-06-15T11:30:00",
          "2023-06-15T12:30:00",
          "2023-06-15T13:30:00",
          "2023-06-15T14:30:00",
          "2023-06-15T15:30:00",
          "2023-06-15T16:30:00",
          "2023-06-15T17:30:00",
          "2023-06-15T18:30:00",
          "2023-06-15T19:30:00",
          "2023-06-15T20:30:00",
          "2023-06-15T21:30:00",
          "2023-06-15T22:30:00",
          "2023-06-15T23:30:00",
          "2023-06-16T00:30:00",
          "2023-06-16T01:30:00",
          "2023-06-16T02:30:00",
          "2023-06-16T03:30:00",
          "2023-06-16T04:30:00",
          "2023-06-16T05:30:00",
          "2023-06-16T06:30:00",
          "2023-06-16T07:30:00",
          "2023-06-16T08:30:00",
          "2023-06-16T09:30:00",
          "2023-06-16T10:30:00",
          "2023-06-16T11:30:00",
          "2023-06-16T12:30:00",
          "2023-06-16T13:30:00",
          "2023-06-16T14:30:00",
          "2023-06-16T15:30:00",
          "2023-06-16T16:30:00",
          "2023-06-16T17:30:00",
          "2023-06-16T18:30:00",
          "2023-06-16T19:30:00",
          "2023-06-16T20:30:00",
          "2023-06-16T21:30:00",
          "2023-06-16T22:30:00",
          "2023-06-16T23:30:00",
          "2023-06-17T00:30:00",
          "2023-06-17T01:30:00",
          "2023-06-17T02:30:00",
          "2023-06-17T03:30:00",
          "2023-06-17T04:30:00",
          "2023-06-17T07:30:00",
          "2023-06-17T08:30:00",
          "2023-06-17T09:30:00",
          "2023-06-17T10:30:00",
          "2023-06-17T11:30:00",
          "2023-06-17T12:30:00",
          "2023-06-17T13:30:00",
          "2023-06-17T14:30:00",
          "2023-06-17T16:30:00",
          "2023-06-17T17:30:00",
          "2023-06-17T18:30:00",
          "2023-06-17T19:30:00",
          "2023-06-17T20:30:00",
          "2023-06-17T21:30:00",
          "2023-06-17T23:30:00",
          "2023-06-18T03:30:00",
          "2023-06-18T04:30:00",
          "2023-06-18T05:30:00",
          "2023-06-18T06:30:00",
          "2023-06-18T08:30:00",
          "2023-06-18T11:30:00",
          "2023-06-18T13:30:00",
          "2023-06-18T14:30:00",
          "2023-06-18T15:30:00",
          "2023-06-18T16:30:00",
          "2023-06-18T17:30:00",
          "2023-06-18T18:30:00",
          "2023-06-18T19:30:00",
          "2023-06-18T20:30:00",
          "2023-06-18T21:30:00",
          "2023-06-18T22:30:00",
          "2023-06-18T23:30:00",
          "2023-06-19T00:30:00",
          "2023-06-19T01:30:00",
          "2023-06-19T02:30:00",
          "2023-06-19T03:30:00",
          "2023-06-19T04:30:00",
          "2023-06-19T05:30:00",
          "2023-06-19T06:30:00",
          "2023-06-19T07:30:00",
          "2023-06-19T08:30:00",
          "2023-06-19T09:30:00",
          "2023-06-19T10:30:00",
          "2023-06-19T11:30:00",
          "2023-06-19T12:30:00",
          "2023-06-19T13:30:00",
          "2023-06-19T14:30:00",
          "2023-06-19T15:30:00",
          "2023-06-19T16:30:00",
          "2023-06-19T17:30:00",
          "2023-06-19T18:30:00",
          "2023-06-19T19:30:00",
          "2023-06-19T20:30:00",
          "2023-06-19T21:30:00",
          "2023-06-19T22:30:00",
          "2023-06-19T23:30:00",
          "2023-06-20T00:30:00",
          "2023-06-20T01:30:00",
          "2023-06-20T02:30:00",
          "2023-06-20T03:30:00",
          "2023-06-20T04:30:00",
          "2023-06-20T05:30:00",
          "2023-06-20T06:30:00",
          "2023-06-20T07:30:00",
          "2023-06-20T08:30:00",
          "2023-06-20T09:30:00",
          "2023-06-20T10:30:00",
          "2023-06-20T11:30:00",
          "2023-06-20T12:30:00",
          "2023-06-20T13:30:00",
          "2023-06-20T14:30:00",
          "2023-06-20T15:30:00",
          "2023-06-20T16:30:00",
          "2023-06-20T17:30:00",
          "2023-06-20T18:30:00",
          "2023-06-20T19:30:00",
          "2023-06-20T20:30:00",
          "2023-06-20T21:30:00",
          "2023-06-20T22:30:00",
          "2023-06-20T23:30:00",
          "2023-06-21T00:30:00",
          "2023-06-21T01:30:00",
          "2023-06-21T02:30:00",
          "2023-06-21T03:30:00",
          "2023-06-21T04:30:00",
          "2023-06-21T05:30:00",
          "2023-06-21T06:30:00",
          "2023-06-21T07:30:00",
          "2023-06-21T08:30:00",
          "2023-06-21T09:30:00",
          "2023-06-21T12:30:00",
          "2023-06-21T13:30:00",
          "2023-06-21T14:30:00",
          "2023-06-21T15:30:00",
          "2023-06-21T16:30:00",
          "2023-06-21T18:30:00",
          "2023-06-21T19:30:00",
          "2023-06-21T20:30:00",
          "2023-06-21T21:30:00",
          "2023-06-21T22:30:00",
          "2023-06-21T23:30:00",
          "2023-06-22T00:30:00",
          "2023-06-22T01:30:00",
          "2023-06-22T02:30:00",
          "2023-06-22T03:30:00",
          "2023-06-22T04:30:00",
          "2023-06-22T05:30:00",
          "2023-06-22T06:30:00",
          "2023-06-22T07:30:00",
          "2023-06-22T08:30:00",
          "2023-06-22T09:30:00",
          "2023-06-22T10:30:00",
          "2023-06-22T11:30:00",
          "2023-06-22T12:30:00",
          "2023-06-22T13:30:00",
          "2023-06-22T14:30:00",
          "2023-06-22T15:30:00",
          "2023-06-22T16:30:00",
          "2023-06-22T17:30:00",
          "2023-06-22T18:30:00",
          "2023-06-22T19:30:00",
          "2023-06-22T20:30:00",
          "2023-06-22T21:30:00",
          "2023-06-22T22:30:00",
          "2023-06-22T23:30:00",
          "2023-06-23T00:30:00",
          "2023-06-23T01:30:00",
          "2023-06-23T02:30:00",
          "2023-06-23T03:30:00",
          "2023-06-23T04:30:00",
          "2023-06-23T05:30:00",
          "2023-06-23T06:30:00",
          "2023-06-23T07:30:00",
          "2023-06-23T08:30:00",
          "2023-06-23T09:30:00",
          "2023-06-23T10:30:00",
          "2023-06-23T11:30:00",
          "2023-06-23T12:30:00",
          "2023-06-23T13:30:00",
          "2023-06-23T14:30:00",
          "2023-06-23T15:30:00",
          "2023-06-23T16:30:00",
          "2023-06-23T17:30:00",
          "2023-06-23T18:30:00",
          "2023-06-23T19:30:00",
          "2023-06-23T20:30:00",
          "2023-06-23T21:30:00",
          "2023-06-23T22:30:00",
          "2023-06-23T23:30:00",
          "2023-06-24T00:30:00",
          "2023-06-24T01:30:00",
          "2023-06-24T02:30:00",
          "2023-06-24T03:30:00",
          "2023-06-24T04:30:00",
          "2023-06-24T05:30:00",
          "2023-06-24T06:30:00",
          "2023-06-24T07:30:00",
          "2023-06-24T08:30:00",
          "2023-06-24T09:30:00",
          "2023-06-24T10:30:00",
          "2023-06-24T11:30:00",
          "2023-06-24T12:30:00",
          "2023-06-24T13:30:00",
          "2023-06-24T14:30:00",
          "2023-06-24T15:30:00",
          "2023-06-24T16:30:00",
          "2023-06-24T17:30:00",
          "2023-06-24T18:30:00",
          "2023-06-24T19:30:00",
          "2023-06-24T20:30:00",
          "2023-06-24T21:30:00",
          "2023-06-24T22:30:00",
          "2023-06-24T23:30:00",
          "2023-06-25T00:30:00",
          "2023-06-25T01:30:00",
          "2023-06-25T02:30:00",
          "2023-06-25T03:30:00",
          "2023-06-25T04:30:00",
          "2023-06-25T05:30:00",
          "2023-06-25T06:30:00",
          "2023-06-25T07:30:00",
          "2023-06-25T08:30:00",
          "2023-06-25T09:30:00",
          "2023-06-25T10:30:00",
          "2023-06-25T11:30:00",
          "2023-06-25T12:30:00",
          "2023-06-25T13:30:00",
          "2023-06-25T14:30:00",
          "2023-06-25T15:30:00"
         ],
         "xaxis": "x",
         "y": [
          0.24594140000000003,
          0.20556860000000002,
          0.18409709999999999,
          0.1141119,
          0.0466728,
          0.014913299999999999,
          0.0168405,
          0.0148969,
          0.0189096,
          0.0156448,
          0.029326799999999997,
          0.0402876,
          0.0370877,
          0.0796587,
          0.0471936,
          0.0443206,
          0.064207,
          0.0984284,
          0.0985235,
          0.1491181,
          0.1883943,
          0.1814357,
          0.1980493,
          0.19775910000000002,
          0.1592594,
          0.084533,
          0.0569074,
          0.0634596,
          0.0643084,
          0.0489319,
          0.0879127,
          0.10857349999999999,
          0.1209978,
          0.109294,
          0.0668357,
          0.014058399999999999,
          -0.0026623000000000003,
          -0.007649100000000001,
          0.011114,
          0.0170126,
          0.0213043,
          0.026143899999999998,
          0.0151498,
          0.0092634,
          0.015375400000000001,
          0.077074,
          0.0865401,
          0.0955654,
          0.0753953,
          0.06999649999999999,
          0.045711299999999996,
          0.055074599999999994,
          0.0916048,
          0.10604430000000001,
          0.10057940000000001,
          0.0977386,
          0.08706080000000001,
          0.0606224,
          0.0420615,
          0.037157499999999996,
          0.0485518,
          0.0655331,
          0.0537404,
          0.0427221,
          0.0244491,
          0.0255511,
          0.029597400000000003,
          0.024491199999999998,
          0.029370800000000002,
          0.0374977,
          0.048795,
          0.06646260000000001,
          0.0291687,
          0.0461862,
          0.0328496,
          0.0525588,
          0.0632339,
          0.047535100000000004,
          0.04893,
          0.056044300000000005,
          0.05624900000000001,
          0.035405900000000004,
          0.0195568,
          0.0179535,
          0.036560999999999996,
          0.0447283,
          0.06641129999999999,
          0.1042495,
          0.0918312,
          0.1034149,
          0.1274845,
          0.1216481,
          0.12386539999999999,
          0.10566070000000001,
          0.0712777,
          0.1544537,
          0.1480004,
          0.12480949999999999,
          0.1213521,
          0.1234272,
          0.152526,
          0.0901172,
          0.007722,
          0.0083394,
          0.0109391,
          0.0422505,
          0.0204732,
          0.0132988,
          0.015334400000000002,
          0.009647300000000001,
          0.0022379,
          -0.0015629,
          -0.0005045,
          0.0007209,
          0.0082356,
          0.0092444,
          0.0048707,
          0.004678,
          0.011576300000000001,
          0.0146978,
          0.013885100000000001,
          0.021682299999999998,
          0.0283283,
          0.0352717,
          0.0370074,
          0.039017,
          0.033986699999999995,
          0.0373855,
          0.0413018,
          0.0350702,
          0.0408153,
          0.036588999999999997,
          0.0346223,
          0.0398191,
          0.0331213,
          0.0472586,
          0.050424800000000006,
          0.0473771,
          0.0445093,
          0.0584417,
          0.059706499999999996,
          0.0632123,
          0.05744590000000001,
          0.055243799999999996,
          0.0531034,
          0.0316373,
          0.0186587,
          0.0144402,
          0.0046992,
          0.0027708,
          0.0032067,
          0.0028719,
          0.0191798,
          0.0028465,
          0.006863900000000001,
          0.0028056,
          0.0016533,
          0.0001448,
          0.0036268000000000003,
          -0.0024877,
          0.0031614000000000004,
          0.014946999999999998,
          0.017047399999999997,
          0.0318318,
          0.0066264,
          -0.013217000000000001,
          0.020613600000000003,
          0.21056119999999998,
          0.0170336,
          0.0101969,
          0.0107926,
          0.0125582,
          0.0191041,
          0.019429,
          0.0193074,
          0.0197721,
          0.0186443,
          0.017665900000000002,
          0.021091,
          0.017610999999999998,
          0.017349700000000003,
          0.0122668,
          0.0094193,
          0.0170436,
          0.021946399999999998,
          0.0133653,
          0.019364100000000002,
          0.017238800000000002,
          0.021931700000000002,
          0.022156500000000003,
          0.0088738,
          -0.0055751,
          0.0144954,
          0.0218198,
          0.0171284,
          0.0178759,
          0.0114703,
          0.0088319,
          0.0041129,
          0.0037098,
          0.006303100000000001,
          0.0061181,
          0.0095718,
          0.0113665,
          0.0123479,
          0.014254600000000001,
          0.0095097,
          0.014377200000000001,
          0.0162424,
          0.0292362,
          0.022115299999999997,
          0.0297803,
          0.018482699999999998,
          0.0162946,
          0.0413009,
          0.0289289,
          0.040321,
          0.037536,
          0.025264199999999997,
          0.0196876,
          0.0092224,
          0.0186498,
          0.0139429,
          -0.0134739,
          0.0010163,
          0.0061965,
          0.0128522,
          0.013048599999999999,
          0.0164823,
          0.01888,
          0.0171379,
          0.0373208,
          0.0890937,
          0.1057588,
          0.1475245,
          0.14345159999999998,
          0.1393975,
          0.1480869,
          0.1819403,
          0.1938428,
          0.1688335,
          0.15463849999999998,
          0.16269640000000002,
          0.1334033,
          0.1778837,
          0.21401560000000003,
          0.23185129999999998,
          0.2517762,
          0.2447413,
          0.1919416,
          0.1732958,
          0.19523410000000002,
          0.194634,
          0.218481,
          0.233609,
          0.24215779999999998,
          0.24569290000000002,
          0.2182559,
          0.22025860000000003,
          0.1880644,
          0.1351039,
          0.11775150000000001,
          0.14095960000000002,
          0.1397535,
          0.145063,
          0.1390002,
          0.1259564,
          0.1006141,
          0.0916236,
          0.13233299999999998,
          0.1288984,
          0.10472030000000002,
          0.1023523,
          0.13644430000000002,
          0.12524,
          0.1147265,
          0.088239,
          0.0918409,
          0.11350819999999999,
          0.1143546,
          0.1371154,
          0.1319994,
          0.1403779,
          0.1471875,
          0.1066249,
          0.040074900000000004,
          0.031897999999999996,
          0.0438623,
          0.057282599999999996,
          0.0691498,
          0.07019919999999999,
          0.0459647,
          0.0584165,
          0.0686164,
          0.0661193,
          0.0382946,
          0.0406314,
          0.0512667,
          0.0754031,
          0.0676957,
          0.08026839999999999,
          0.0742298,
          0.057922799999999997,
          0.041922,
          0.05793739999999999,
          0.0607425,
          0.0561319,
          0.069757,
          0.0632462,
          0.0598307,
          0.0612593,
          0.0442117,
          0.0434325,
          0.0859345,
          0.1118872,
          0.043428299999999996,
          0.07913909999999999,
          0.0523741,
          0.0316886,
          0.054586199999999994,
          0.0389843,
          0.0541855,
          0.0426917,
          0.07276629999999999,
          0.1087621,
          0.11182430000000002,
          0.1107113,
          0.1061226,
          0.09770419999999999,
          0.0776774,
          0.0798826,
          0.0744228,
          0.0694574,
          0.0582492,
          0.0852649,
          0.10259149999999999,
          0.10098940000000001,
          0.12920210000000001,
          0.0920465,
          0.07314659999999999,
          0.0809613,
          0.0717651,
          0.0596515,
          0.0588431,
          0.0607432,
          0.0393886,
          0.048599199999999995,
          0.0414641,
          0.0258422,
          0.029586499999999998,
          0.0453202,
          0.0444335,
          0.0441409,
          0.05254640000000001,
          0.064517,
          0.07826999999999999,
          0.0774379,
          0.0741055,
          0.0711142,
          0.0515042,
          0.0469488,
          0.0377578,
          0.022412,
          0.0209347,
          0.014181599999999999,
          0.025498,
          0.0207408,
          0.0234178,
          0.0409321,
          0.0791817,
          0.0630574,
          0.0733886,
          0.0788816,
          0.060501799999999994,
          0.0463726,
          0.05059519999999999,
          0.05006119999999999,
          0.0679373,
          0.089046,
          0.0848888,
          0.1002888,
          0.12235009999999999,
          0.11322689999999999,
          0.07783419999999999,
          0.12287390000000001,
          0.1527911,
          0.1536025,
          0.1810747,
          0.16590169999999999,
          0.1580115,
          0.12243790000000002,
          0.1825093,
          0.2107069,
          0.1899131,
          0.1856287,
          0.2611001,
          0.2529728,
          0.2397942,
          0.2572648,
          0.2356455,
          0.1949022,
          0.0710461,
          0.0756552,
          0.0293549,
          0.0103233,
          0.0211263,
          0.0366969,
          0.012506900000000001,
          0.023908699999999998,
          0.0321793,
          0.0289771,
          0.0277667,
          0.027881499999999997,
          0.0303019,
          0.026547300000000003,
          0.0366773,
          0.049448,
          0.2081464,
          0.0380431,
          0.0178387,
          0.0178506,
          0.0159135,
          0.018804599999999998,
          0.0638055,
          0.0906864,
          0.08779630000000001,
          0.0748099,
          0.0913007,
          0.0767829,
          0.0829115,
          0.0805216,
          0.0716387,
          0.053643399999999994,
          0.0521509,
          0.0541514,
          0.0244966,
          0.0478963,
          0.06926109999999999,
          0.0679485,
          0.054156499999999996,
          0.0372861,
          0.036542200000000004,
          0.02302,
          0.0178875,
          0.0207397,
          0.0329459,
          0.050644800000000004,
          0.0640384,
          0.0591803,
          0.0636463,
          0.0651508,
          0.08120190000000001,
          0.030312899999999997,
          0.0167337,
          0.0362016,
          0.0405714,
          0.040457900000000005,
          0.045359699999999996,
          0.0438074,
          0.0459932,
          0.0383913,
          0.0253458,
          0.0288376,
          0.037080999999999996,
          0.0488168,
          0.0542346,
          0.049947000000000005,
          0.0414335,
          0.0202992,
          0.004780100000000001,
          0.0080237,
          0.0138881,
          0.0106002,
          0.0304385,
          0.0490527,
          0.0512069,
          0.0584196,
          0.044437500000000005,
          0.0185553,
          0.015862599999999998,
          0.021547900000000002,
          0.020252600000000003,
          0.0190951,
          0.0202956,
          0.018425,
          0.0123283,
          0.009477,
          0.008605,
          0.0100325,
          0.0061182,
          0.010868800000000001,
          0.0127213,
          0.0319611,
          0.0433213,
          0.0498313,
          0.050724000000000005,
          0.0580305,
          0.06993089999999999,
          0.0785165,
          0.0933069,
          0.0547369,
          0.0390379,
          0.0197881,
          0.014034099999999999,
          0.010276299999999999,
          0.0096205,
          0.0123581,
          0.0152926,
          0.0453611,
          0.06947400000000001,
          0.0714679,
          0.0685289,
          0.0700271,
          0.07504079999999999,
          0.0731434,
          0.0648367,
          0.0677529,
          0.0709356,
          0.0722348,
          0.06583520000000001,
          0.0649778,
          0.0547543,
          0.0482227,
          0.0389042,
          0.0504896,
          0.0557833,
          0.106914,
          0.1237362,
          0.1450699,
          0.1575628,
          0.1418589,
          0.1584583,
          0.1742754,
          0.11832290000000001,
          0.1471026,
          0.0831035,
          0.08420760000000001,
          0.10359290000000002,
          0.0988913,
          0.0762407,
          0.0807366,
          0.1084808,
          0.09857010000000001,
          0.11945779999999999,
          0.14922580000000002,
          0.0946433,
          0.1350412,
          0.1214245,
          0.1229916,
          0.1580168,
          0.1432561,
          0.1572627,
          0.17106,
          0.1867846,
          0.1834327,
          0.1774633,
          0.1664455,
          0.1387102,
          0.0787442,
          0.058667800000000006,
          0.09455369999999999,
          0.1166113,
          0.11462000000000001,
          0.137047,
          0.1493091,
          0.1582828,
          0.1754596,
          0.18183359999999998,
          0.1798969,
          0.13451660000000001,
          0.1502056,
          0.1689584,
          0.1679571,
          0.1997234,
          0.23023319999999997,
          0.2187548,
          0.22093159999999998,
          0.21469490000000002,
          0.19468080000000001,
          0.1148998,
          0.1579269,
          0.1631493,
          0.1292991,
          0.1578155,
          0.18227100000000002,
          0.1711569,
          0.1920294,
          0.17961270000000001,
          0.2037383,
          0.226301,
          0.2561896,
          0.25403929999999997,
          0.19175029999999998,
          0.1925541,
          0.1818379,
          0.12819370000000002,
          0.1141316,
          0.1216268,
          0.13387549999999998,
          0.14141779999999998,
          0.15364150000000001,
          0.12006570000000001,
          0.12342919999999999,
          0.1326381,
          0.1296665,
          0.1532222,
          0.1625152,
          0.171941,
          0.1738258,
          0.2059755,
          0.21851189999999998,
          0.198431,
          0.20871559999999997,
          0.22595200000000001,
          0.2335333,
          0.23887239999999998,
          0.2654871,
          0.2492858,
          0.2525204,
          0.24294600000000002,
          0.2402832,
          0.23588309999999998,
          0.2749581,
          0.2910273,
          0.2654546,
          0.2211516,
          0.219007,
          0.1940313,
          0.2374264,
          0.22579,
          0.23864459999999998,
          0.2258979,
          0.22166389999999997,
          0.2272652,
          0.17357,
          0.1594605,
          0.1541283,
          0.1766608,
          0.1626738,
          0.1600565,
          0.1763842,
          0.12354689999999999,
          -0.0011347,
          0.0163836,
          0.027405000000000002,
          0.050812800000000005,
          0.0157544,
          0.007070999999999999,
          0.017169,
          0.0201258,
          0.0152642,
          0.022528100000000002,
          0.0104684,
          0.0100328,
          0.0112733,
          0.0178361,
          0.02814,
          0.0088465,
          0.0169386,
          0.0098103,
          0.010397199999999999,
          0.0125241,
          0.0298917,
          0.017432,
          0.0040815,
          0.0008908,
          0.0088198,
          0.0025068,
          0.0051134,
          0.0094884,
          0.0165882,
          0.0173543,
          0.017859,
          0.0197537,
          0.0267745,
          0.0298717,
          0.032283400000000004,
          0.0159072,
          0.0185823,
          0.0326511,
          0.036522700000000005,
          0.024792500000000002,
          0.0259999,
          0.0272108,
          0.0243723,
          0.0222413,
          0.0587568,
          0.0565258,
          0.053977699999999997,
          0.0540134,
          0.037095,
          0.030245499999999998,
          0.033330900000000004,
          0.0333238,
          0.034915299999999996,
          0.0217288,
          0.027133499999999998,
          0.034353,
          0.026891500000000002,
          0.0212793,
          0.030001299999999998,
          0.0376235,
          0.06267249999999999,
          0.09336910000000001,
          0.049194100000000004,
          0.1293843,
          0.12751969999999999,
          0.1307679,
          0.1132107,
          0.11549020000000002,
          0.1143216,
          0.0938936,
          0.0876737,
          0.0933678,
          0.07942,
          0.066755,
          0.0357432,
          0.0288256,
          0.032995000000000003,
          0.0285423,
          0.0390215,
          0.055978700000000006,
          0.0635926,
          0.054379,
          0.045349600000000004,
          0.054241300000000006,
          0.0870332,
          0.1100977,
          0.12482889999999999,
          0.1583659,
          0.1864533,
          0.169841,
          0.1799291,
          0.1769826,
          0.2418561,
          0.1712808,
          0.04897,
          0.0494847,
          0.0337488,
          0.0237618,
          0.023003299999999997,
          0.0262031,
          0.021476600000000002,
          0.022423199999999997,
          0.0171793,
          0.0178792,
          0.019100100000000002,
          0.0414899,
          0.0638185,
          0.0944454,
          0.1096002,
          0.1556526,
          0.1951929,
          0.20923419999999998,
          0.2117852,
          0.1845005,
          0.1978582,
          0.2153619,
          0.23195179999999999,
          0.1941719,
          0.2235399,
          0.2250057,
          0.20025089999999998,
          0.1335847,
          0.0927373,
          0.085028,
          0.07778850000000001,
          0.0647552,
          0.1323956,
          0.16206389999999998,
          0.0908111,
          0.0467767,
          0.0491876,
          0.0575897,
          0.0672271,
          0.143066,
          0.08478569999999999,
          0.13056589999999998,
          0.0965057,
          0.0968831,
          0.10877010000000001,
          0.1126789,
          0.13069360000000002,
          0.1109904,
          0.1046255,
          0.1156315,
          0.11755260000000001,
          0.1158169,
          0.1080619,
          0.1029201,
          0.0959325,
          0.0852576,
          0.0525918,
          0.0516505,
          0.0980405,
          0.1004993,
          0.1004396,
          0.1025152,
          0.1022443,
          0.1140629,
          0.10149459999999999,
          0.101014,
          0.1362829,
          0.06872890000000001,
          0.08424899999999999,
          0.1586574,
          0.15071079999999998,
          0.1530552,
          0.1302204,
          0.1470761,
          0.15733250000000001,
          0.1703458,
          0.1459872,
          0.1307451,
          0.1238773,
          0.138287,
          0.1334634,
          0.12285410000000001,
          0.1190154,
          0.11322479999999999,
          0.14233769999999998,
          0.1549498,
          0.15164919999999998,
          0.1671985,
          0.165295,
          0.2069283,
          0.2193133,
          0.1975203,
          0.1709754,
          0.1532684,
          0.13469230000000001,
          0.1263795,
          0.11713309999999999,
          0.1039672,
          0.1223488,
          0.19567600000000002,
          0.133226,
          0.1232254,
          0.1049345,
          0.051986500000000005,
          0.014074900000000001,
          0.0189113,
          0.0506317,
          0.0562747,
          0.031003399999999997,
          0.0231913,
          0.0404625,
          0.025598100000000002,
          0.007611999999999999,
          0.0202055,
          0.0336909,
          0.0277897,
          0.0190114,
          0.062334900000000006,
          0.0686998,
          0.0521625,
          0.0685393,
          0.0567922,
          0.034335700000000004,
          0.0252967,
          0.0087635,
          0.0249577,
          0.0271356,
          0.0300049,
          0.02152,
          0.030716399999999998,
          0.0408841,
          0.0548524,
          0.0423044,
          0.05696639999999999,
          0.05989989999999999,
          0.0595285,
          0.0535428,
          0.0685282,
          0.071096,
          0.0657538,
          0.0584716,
          0.05836670000000001,
          0.0522837,
          0.0422275,
          0.032651400000000004,
          0.0209308,
          0.032941700000000004,
          0.0488042,
          0.046902,
          0.0494214,
          0.0394684,
          0.0383451,
          0.0431881,
          0.071536,
          0.0607444,
          0.0874493,
          0.0905027,
          0.10114039999999999,
          0.1053231,
          0.0812199,
          0.0669897,
          0.0660245,
          0.0219518,
          0.026771299999999998,
          0.0538084,
          0.098136,
          0.0737469,
          0.0515016,
          0.036509799999999995,
          0.0324426,
          0.0440032,
          0.0778509,
          0.0997394,
          0.10672839999999999,
          0.12192620000000001,
          0.1775043,
          0.20552120000000001,
          0.20737009999999997,
          0.2032444,
          0.2056777,
          0.20452910000000002,
          0.1987676,
          0.1897971,
          0.1994918,
          0.1849337,
          0.1613251,
          0.1650238,
          0.1536701,
          0.1322292,
          0.1178326,
          0.11520040000000001,
          0.1476326,
          0.1557685,
          0.17857130000000002,
          0.1999092,
          0.2051136,
          0.2144175,
          0.2243214,
          0.20782340000000002,
          0.2072369,
          0.20324979999999998,
          0.21615250000000003,
          0.21312820000000002,
          0.2372223,
          0.2289864,
          0.2355675,
          0.2560167,
          0.2576528,
          0.28602669999999997,
          0.2940261,
          0.2950148,
          0.2881332,
          0.2643613,
          0.2568401,
          0.2462192,
          0.22141709999999998,
          0.19301200000000002,
          0.1737686,
          0.1583504,
          0.1494625,
          0.16087590000000002,
          0.1690971,
          0.1749329,
          0.1942485,
          0.2017146,
          0.1456673,
          0.1575636,
          0.1636311,
          0.20428280000000001,
          0.0506128,
          0.1019426,
          0.1326036,
          0.11656550000000002,
          0.11418330000000002,
          0.0886672,
          0.0849685,
          0.0536168,
          0.034821000000000005,
          0.0158222,
          0.0272849,
          0.025203999999999997,
          0.028527999999999998,
          0.0318915,
          0.035384399999999996,
          0.0312905,
          0.0394597,
          0.0274835,
          0.0419186,
          0.0395265,
          0.0206817,
          0.0188007,
          0.0164516,
          0.0121002,
          0.012534300000000002,
          0.015221199999999999,
          0.011682099999999999,
          0.0175645,
          0.0108902,
          0.013538900000000001,
          0.018194099999999998,
          0.014949899999999999,
          0.022403799999999998,
          0.0088482,
          0.029443900000000002,
          0.0201356,
          0.0206987,
          0.0236282,
          0.0155196,
          0.0176797,
          0.0141736,
          0.0177691,
          0.0212842,
          0.0213135,
          0.0225745,
          0.0296195,
          0.0296367,
          0.028891499999999997,
          0.032702999999999996,
          0.0396463,
          0.0386815,
          0.0397623,
          0.042315900000000004,
          0.030557099999999997,
          0.031081199999999996,
          0.0238903,
          0.021397,
          0.0319754,
          0.0455072,
          0.0416727,
          0.051552,
          0.057686400000000006,
          0.0648169,
          0.06443489999999999,
          0.0741144,
          0.0691435,
          0.0640055,
          0.0665911,
          0.0805504,
          0.0372504,
          0.037569399999999996,
          0.0290635,
          0.0306335,
          0.0361957,
          0.0356449,
          0.039753300000000005,
          0.0391374,
          0.0371587,
          0.0384445,
          0.0413443,
          0.0295055,
          0.0348346,
          0.0438189,
          0.0561329,
          0.061493299999999994,
          0.064621,
          0.07114709999999999,
          0.0727181,
          0.07372480000000001,
          0.0755945,
          0.049229,
          0.0202389,
          0.0140839,
          0.0162356,
          0.0124169,
          0.0252417,
          0.0480779,
          0.0511626,
          0.0693159,
          0.0774117,
          0.0791734,
          0.0733773,
          0.0707593,
          0.0769996,
          0.0798368,
          0.0868631,
          0.0868111,
          0.0867213,
          0.0951803,
          0.10304390000000001,
          0.1104977,
          0.09078549999999999,
          0.0973723,
          0.0686755,
          0.0571346,
          0.026059,
          0.0013032999999999999,
          0.0066345,
          0.0030755,
          null,
          0.0021849,
          0.0237519,
          0.0901367,
          0.10049809999999999,
          0.06468009999999999,
          0.024660099999999997,
          0.0135979,
          0.0043844,
          0.0166159,
          0.0179809,
          0.039504,
          0.0483981,
          0.0743382,
          0.0157882,
          0.0077027,
          0.0260413,
          0.0605942,
          0.0894495,
          0.1066454,
          0.10764689999999999,
          0.11389279999999999,
          0.1300899,
          0.2573248,
          0.2496813,
          0.1754691,
          0.1226702,
          0.1232486,
          0.1403208,
          0.1342544,
          0.1283299,
          0.11182410000000001,
          0.1046849,
          0.1057951,
          0.1021495,
          0.1071067,
          0.09798860000000001,
          0.09282470000000001,
          0.088521,
          0.08790590000000001,
          0.0960164,
          0.10921929999999999,
          0.1447,
          0.16775020000000002,
          0.15294570000000002,
          0.146754,
          0.2023782,
          0.2058663,
          0.2185624,
          0.1796528,
          0.1343755,
          0.11932799999999999,
          0.10034019999999999,
          0.058779700000000004,
          0.030122799999999998,
          0.048088399999999996,
          0.0173122,
          0.0129687,
          0.0201653,
          0.012909499999999999,
          0.012710599999999999,
          0.0344429,
          0.0406764,
          0.054222000000000006,
          0.0672571,
          0.0830274,
          0.0560523,
          0.0602504,
          0.0691262,
          0.07913099999999999,
          0.029086499999999998,
          0.0904885,
          0.0389743,
          0.0658631,
          0.0812294,
          0.041545,
          0.003056,
          0.0092301,
          0.0102691,
          0.0120522,
          0.00836,
          0.0162414,
          0.0287675,
          0.0179845,
          0.0176357,
          0.0182268,
          0.0172035,
          0.0074557,
          0.009958999999999999,
          0.0106355,
          0.014105500000000002,
          0.0122204,
          0.0121869,
          0.0120111,
          0.022552,
          0.0169459,
          0.0252186,
          0.029250500000000002,
          0.0320674,
          0.012764300000000001,
          0.009515,
          0.0115872,
          0.0436739,
          0.0272794,
          0.0469198,
          0.025296000000000003,
          0.0775953,
          0.10762560000000002,
          0.1198866,
          0.13059,
          0.1179912,
          0.10222469999999999,
          0.1131638,
          0.1365064,
          0.1436916,
          0.1577268,
          0.1626524,
          0.1815269,
          0.1695528,
          0.12673890000000002,
          0.1469821,
          0.1537239,
          0.1558406,
          0.1555202,
          0.1654823,
          0.1569402,
          0.1282324,
          0.0767918,
          0.10255220000000001,
          0.1401013,
          0.1590395,
          0.1308642,
          0.0843229,
          0.0854996,
          0.0854149,
          0.1015926,
          0.1474378,
          0.1533512,
          0.1616059,
          0.1555345,
          0.15639050000000002,
          0.0957681,
          0.1294705,
          0.1365091,
          0.1488887,
          0.1271355,
          0.093134,
          0.0540756,
          0.0989632,
          0.068089,
          0.0430972,
          0.10432820000000001,
          0.1090362,
          0.0968098,
          0.1259788,
          0.11689780000000001,
          0.1251302,
          0.1290658,
          0.148478,
          0.16525879999999998,
          0.160498,
          0.1199548,
          0.07967959999999999,
          0.0912072,
          0.12060059999999999,
          0.1555986,
          0.1722645,
          0.1735781,
          0.1565407,
          0.148285,
          0.14184190000000002,
          0.1461222,
          0.1050241,
          0.0931246,
          0.1289583,
          0.0856658,
          0.0585248,
          0.07686760000000001,
          0.0881753,
          0.06709190000000001,
          0.055965799999999996,
          0.07113420000000001,
          0.061991,
          0.0636745,
          0.0632398,
          0.0796413,
          0.0761261,
          0.10025409999999998,
          0.10812390000000001,
          0.1098586,
          0.10683469999999999,
          0.1284563,
          0.1080927,
          0.12798890000000002,
          0.1301143,
          0.11580490000000002,
          0.1087485,
          0.1093664,
          0.0337265,
          0.032150899999999996,
          0.0690458,
          0.0799316,
          0.1087766,
          0.0704115,
          0.1305434,
          0.1411754,
          0.1407079,
          0.1354444,
          0.1283475,
          0.143963,
          0.155442,
          0.1664091,
          0.1676572,
          0.1708782,
          0.16528199999999998,
          0.1988488,
          0.1662616,
          0.1729853,
          0.1794453,
          0.1932627,
          0.1945946,
          0.1571613,
          0.13193280000000002,
          0.1452694,
          0.18185500000000002,
          0.15536080000000002,
          0.1744551,
          0.1164704,
          0.13156289999999998,
          0.13543460000000002,
          0.1313582,
          0.1163341,
          0.1543493,
          0.1391612,
          0.1442484,
          0.1714005,
          0.1623392,
          0.1588161,
          0.1347526,
          0.1568007,
          0.1861292,
          0.1750908,
          0.1730489,
          0.17711349999999998,
          0.1641534,
          0.1842266,
          0.1810924,
          0.1807596,
          0.1808178,
          0.17388920000000002,
          0.16451949999999999,
          0.1653839,
          0.1627651,
          0.1626754,
          0.1539137,
          0.159165,
          0.16793960000000002,
          0.1728849,
          0.1812182,
          0.1666143,
          0.0912683,
          0.059035800000000006,
          0.09676090000000001,
          0.09977620000000001,
          0.1063627,
          0.0676435,
          0.0645087,
          0.1159486,
          0.1200636,
          0.089221,
          0.0721907,
          0.0340315,
          0.0447286,
          0.0518898,
          0.0634443,
          0.0610787,
          0.07121269999999999,
          0.1116919,
          0.0927446,
          0.0994271,
          0.1094228,
          0.1137328,
          0.1291645,
          0.1298379,
          0.10309019999999999,
          0.0227732,
          0.1018049,
          0.091639,
          0.0830594,
          0.0724761,
          0.0884664,
          0.0517558,
          0.03366,
          0.06415030000000001,
          0.06601900000000001,
          0.0656034,
          0.07535539999999999,
          0.1048197,
          0.10326679999999999,
          0.0936786,
          0.0873084,
          0.06460489999999999,
          0.0498877,
          0.0148792,
          0.0445746,
          0.0498986,
          0.055346700000000006,
          0.073595,
          0.0071789,
          0.0073505,
          0.016939100000000002,
          0.007377400000000001,
          0.0061679,
          0.0315839,
          0.023346600000000002,
          0.053321099999999996,
          0.0686021,
          0.0442632,
          0.017373,
          0.047234700000000004,
          0.0471752,
          0.0603232,
          0.0423829,
          0.0362948,
          0.040706599999999996,
          0.0383781,
          0.0269831,
          0.050106300000000006,
          0.028954200000000003,
          0.0382917,
          0.041874499999999995,
          0.0490496,
          0.0592815,
          0.07007139999999999,
          0.056913599999999995,
          0.056269,
          0.0637332,
          0.055019,
          0.044847700000000004,
          0.0471952,
          0.0374607,
          0.0355344,
          0.0424254,
          0.0279968,
          0.0121669,
          0.0457242,
          0.0735501,
          0.0502476,
          0.0435217,
          0.0355286,
          0.0212634,
          0.0114721,
          0.024271300000000003,
          0.0350793,
          0.045189,
          0.0357465,
          0.043186999999999996,
          0.0335565,
          0.0441678,
          0.0295512,
          0.006692399999999999,
          0.0165329,
          0.0291813,
          0.027925,
          0.0345868,
          0.0340496,
          0.0174979,
          0.0364309,
          0.0362646,
          0.0327772,
          0.0488652,
          0.0488902,
          0.0551532,
          0.0519095,
          0.0491744,
          0.0460382,
          0.0459804,
          0.0344872,
          0.0408938,
          0.0442649,
          0.0498792,
          0.0518473,
          0.0575855,
          0.0669863,
          0.047192,
          0.0322901,
          0.0524024,
          0.0877538,
          0.1274248,
          0.1589823,
          0.1807552,
          0.17656460000000002,
          0.1702831,
          0.17776160000000002,
          0.1360483,
          0.1328319,
          0.1342654,
          0.13362369999999998,
          0.1723728,
          0.1669976,
          0.17617560000000002,
          0.1972545,
          0.1881129,
          0.17660130000000002,
          0.1824799,
          0.1872185,
          0.1925321,
          0.1850155,
          0.1957679,
          0.1179316,
          0.09769449999999999,
          0.0963068,
          0.14443140000000002,
          0.1176798,
          0.1727826,
          0.1738167,
          0.1703908,
          0.1381616,
          0.14031960000000002,
          0.13761859999999998,
          0.1315284,
          0.1272124,
          0.1311198,
          0.1282855,
          0.1352798,
          0.1334496,
          0.1687356,
          0.1804091,
          0.1780872,
          0.1693926,
          0.1858428,
          0.1948488,
          0.1928838,
          0.2116626,
          0.1579132,
          0.1229555,
          0.1175532,
          0.11332690000000001,
          0.1261887,
          0.154969,
          0.1539758,
          0.1628988,
          0.1462059,
          0.1355715,
          0.1307222,
          0.1390634,
          0.1495607,
          0.1556357,
          0.15692699999999998,
          0.1527661,
          0.15402929999999998,
          0.1553953,
          0.1544048,
          0.1639802,
          0.06502440000000001,
          0.0696183,
          0.05628300000000001,
          0.062472700000000006,
          0.062153599999999996,
          0.0550543,
          0.0494574,
          0.026913,
          0.0283981,
          0.0416915,
          0.0490039,
          0.045653,
          0.0644434,
          0.0814388,
          0.0807548,
          0.0838618,
          0.0789562,
          0.0782687,
          0.0832001,
          0.0903753,
          0.10213829999999999,
          0.1267437,
          0.11979789999999998,
          0.0977552,
          0.072923,
          0.0971118,
          0.0608761,
          0.0597028,
          0.0626253,
          0.0731497,
          0.0245971,
          0.020754,
          0.0364622,
          0.0207957,
          0.0274724,
          0.0236303,
          0.0315847,
          0.0393231,
          0.0405823,
          0.0414514,
          0.0350468,
          0.0410918,
          0.0408017,
          0.0435663,
          0.041180299999999996,
          0.0559782,
          0.0673491,
          0.0824591,
          0.08993219999999999,
          0.0940744,
          0.08020089999999999,
          0.0966494,
          0.0838837,
          0.090843,
          0.10312220000000001,
          0.0908958,
          0.0575824,
          0.034658499999999995,
          0.0452033,
          0.037945400000000004,
          0.045203900000000005,
          0.051808200000000006,
          0.0444834,
          0.056622799999999994,
          0.0488914,
          0.056122799999999994,
          0.0580824,
          0.048968899999999996,
          0.053009600000000004,
          0.061341,
          0.0702605,
          0.09076769999999999,
          0.1206732,
          0.12893380000000002,
          0.1364821,
          0.147671,
          0.1656109,
          0.1792798,
          0.19248780000000001,
          0.1304829,
          0.1100595,
          0.0744708,
          0.0626966,
          0.0609073,
          0.0414881,
          0.0390309,
          0.0446444,
          0.05462399999999999,
          0.06530820000000001,
          0.08995739999999999,
          0.1028683,
          0.11122510000000001,
          0.1030302,
          0.10066539999999999,
          0.1087072,
          0.1305575,
          0.1209811,
          0.1496986,
          0.1645937,
          0.1747445,
          0.18346679999999999,
          0.16061319999999998,
          0.1677313,
          0.1689165,
          0.1429493,
          0.1383632,
          0.13913899999999998,
          0.1399107,
          0.1407705,
          0.143309,
          0.1515712,
          0.1523379,
          0.15865089999999998,
          0.1472829,
          0.165488,
          0.17217469999999999,
          0.16082380000000002,
          0.176646,
          0.1960277,
          0.2088569,
          0.20501529999999998,
          0.1864717,
          0.1866516,
          0.13926670000000002,
          0.1242648,
          0.11666380000000001,
          0.13422019999999998,
          0.1249117,
          0.1119357,
          0.12620309999999998,
          0.11360730000000001,
          0.10356590000000002,
          0.1031905,
          0.0783763,
          0.0871873,
          0.0789922,
          0.09725639999999999,
          0.1061067,
          0.1165398,
          0.098114,
          0.0946539,
          0.11602760000000001,
          0.1633252,
          0.15538970000000002,
          0.15643970000000001,
          0.1646338,
          0.17001470000000002,
          0.15908150000000001,
          0.1542825,
          0.1732241,
          0.17590730000000002,
          0.135785,
          0.1350755,
          0.14032119999999998,
          0.1670653,
          0.1688815,
          0.1439295,
          0.14934229999999998,
          0.1549295,
          0.1339981,
          0.0878561,
          0.068498,
          0.0910137,
          0.12008509999999999,
          0.1219363,
          0.1193031,
          0.1081462,
          0.11743410000000001,
          0.0900954,
          0.0981187,
          0.0573155,
          0.0624185,
          0.0741344,
          0.0762273,
          0.0820564,
          0.0650761,
          0.0597036,
          0.0721087,
          0.0764722,
          0.0854129,
          0.08478909999999999,
          0.0977391,
          0.0714774,
          0.0643659,
          0.093406,
          0.1104395,
          0.1114568,
          0.11280380000000001,
          0.12022649999999999,
          0.0832198,
          0.101193,
          0.1250996,
          0.1351648,
          0.1845821,
          0.2104852,
          0.20346769999999997,
          0.19169419999999998,
          1.2098536,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          null,
          0.0273083,
          0.0377532,
          0.0219605,
          0.058357099999999995,
          0.047684199999999996,
          0.039577,
          0.0228264,
          0.0338668,
          0.0240846,
          0.0153329,
          0.0081446,
          0.0044188,
          0.0026704,
          0.0148613,
          0.028179,
          0.0164857,
          0.0134193,
          0.0122112,
          0.022912,
          0.025778600000000002,
          0.0694756,
          0.0767712,
          0.0955824,
          0.1125567,
          0.08171690000000001,
          0.0764387,
          0.0877422,
          0.0753743,
          0.0647093,
          0.0698469,
          0.07267850000000001,
          0.078824,
          0.0834638,
          0.08442340000000001,
          0.0703328,
          0.0606422,
          0.0756887,
          0.0758648,
          0.0841933,
          0.1102171,
          0.139756,
          0.1617767,
          0.2071227,
          0.1816375,
          0.1588657,
          0.15901490000000001,
          0.1634418,
          0.1784481,
          0.1582965,
          0.1482289,
          0.13078099999999998,
          0.12074510000000001,
          0.123367,
          0.07740280000000001,
          0.026834000000000004,
          0.060163900000000006,
          0.07839840000000001,
          0.0704551,
          0.090351,
          0.0924248,
          0.10763819999999999,
          0.1442712,
          0.12827519999999998,
          0.14255089999999998,
          0.1617789,
          0.19461610000000001,
          0.23190550000000001,
          0.27371,
          0.2663621,
          0.2326749,
          0.21660870000000002,
          0.20844079999999998,
          0.1848569,
          0.1697796,
          0.15291870000000002,
          0.15245340000000002,
          0.1544673,
          0.1354515,
          0.11084989999999999,
          0.09279659999999999,
          0.12298519999999999,
          0.1591217,
          0.1850044,
          0.1379722,
          0.080741,
          0.10869359999999999,
          0.11142840000000001,
          0.1546999,
          0.2545961,
          0.2457939,
          0.2652843,
          0.32941729999999997,
          0.3602751,
          0.2608047,
          0.170532,
          0.1368979,
          0.1437679,
          0.1407485,
          0.1145067,
          0.12978499999999998,
          0.142191,
          0.12462409999999999,
          0.1352414,
          0.1480679,
          0.11035410000000001,
          0.1521601,
          0.1583707,
          0.1756442,
          0.1761654,
          0.19493270000000001,
          0.18431519999999998,
          0.2118096,
          0.2162253,
          0.12259260000000001,
          0.1613067,
          0.1732743,
          0.1807023,
          0.1707506,
          0.1538213,
          0.1398763,
          0.1559493,
          0.1855365,
          0.1733458,
          0.1695053,
          0.1838025,
          0.191772,
          0.1784209,
          0.16368,
          0.1525839,
          0.11834059999999999,
          0.16876059999999998,
          0.168737,
          0.2050611,
          0.2330408,
          0.24269210000000002,
          0.2445402,
          0.2385421,
          0.2474365,
          0.2113684,
          0.2017388,
          0.2146661,
          0.273843,
          0.3629728,
          0.3379871,
          0.30959949999999997,
          0.23030179999999997,
          0.22883610000000001,
          0.1605512,
          0.1979356,
          0.1598812,
          0.1482692,
          0.15366839999999998,
          0.1675856,
          0.1891778,
          0.1748371,
          0.2147012,
          0.2206752,
          0.2548682,
          0.2272768,
          0.2402311,
          0.1876069,
          0.1220488,
          0.18258259999999998,
          0.0569956,
          0.0598888,
          0.07000100000000001,
          0.07324549999999999,
          0.1697477,
          0.174133,
          0.1438022,
          0.1813353,
          0.1771572,
          0.14573529999999998,
          0.12971649999999998,
          0.1544938,
          0.1318929,
          0.0837206,
          0.1365306,
          0.1326984,
          0.11053740000000001,
          0.1193668,
          0.1292111,
          0.1566017,
          0.1819733,
          0.2343101,
          0.20808759999999998,
          0.1461697
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "font": {
         "color": "RebeccaPurple",
         "family": "Courier New, monospace",
         "size": 12
        },
        "legend": {
         "title": {
          "text": "Calculated at 652.0 nm:"
         },
         "tracegroupgap": 0
        },
        "margin": {
         "t": 60
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "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"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "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"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "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"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "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"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "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"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "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"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "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"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Ground based in situ observations of filter_absorption_photometer at BEO Moussala (BG0001R)"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Time"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "µg/m3 (equivalent black carbon)"
         }
        }
       }
      },
      "text/html": [
       "<div>                            <div id=\"1829eb83-b616-4a78-a3fc-583deb150f5c\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>            <script type=\"text/javascript\">                require([\"plotly\"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById(\"1829eb83-b616-4a78-a3fc-583deb150f5c\")) {                    Plotly.newPlot(                        \"1829eb83-b616-4a78-a3fc-583deb150f5c\",                        [{\"hovertemplate\":\"variable=eBC<br>time=%{x}<br>value=%{y}<extra></extra>\",\"legendgroup\":\"eBC\",\"line\":{\"color\":\"#636efa\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"eBC\",\"showlegend\":true,\"x\":[\"2023-03-25T23:30:00\",\"2023-03-26T00:30:00\",\"2023-03-26T01:30:00\",\"2023-03-26T02:30:00\",\"2023-03-26T03:30:00\",\"2023-03-26T04:30:00\",\"2023-03-26T05:30:00\",\"2023-03-26T08:30:00\",\"2023-03-26T09:30:00\",\"2023-03-26T10:30:00\",\"2023-03-26T11:30:00\",\"2023-03-26T12:30:00\",\"2023-03-26T13:30:00\",\"2023-03-26T14:30:00\",\"2023-03-26T15:30:00\",\"2023-03-26T16:30:00\",\"2023-03-26T17:30:00\",\"2023-03-26T18:30:00\",\"2023-03-26T19:30:00\",\"2023-03-26T20:30:00\",\"2023-03-26T21:30:00\",\"2023-03-26T22:30:00\",\"2023-03-27T00:30:00\",\"2023-03-27T01:30:00\",\"2023-03-27T02:30:00\",\"2023-03-27T03:30:00\",\"2023-03-27T04:30:00\",\"2023-03-27T05:30:00\",\"2023-03-27T06:30:00\",\"2023-03-27T07:30:00\",\"2023-03-27T08:30:00\",\"2023-03-27T09:30:00\",\"2023-03-27T10:30:00\",\"2023-03-27T11:30:00\",\"2023-03-27T12:30:00\",\"2023-03-27T13:30:00\",\"2023-03-27T14:30:00\",\"2023-03-27T15:30:00\",\"2023-03-27T16:30:00\",\"2023-03-27T17:30:00\",\"2023-03-27T18:30:00\",\"2023-03-27T19:30:00\",\"2023-03-27T20:30:00\",\"2023-03-27T21:30:00\",\"2023-03-27T22:30:00\",\"2023-03-29T14:30:00\",\"2023-03-29T15:30:00\",\"2023-03-29T16:30:00\",\"2023-03-29T17:30:00\",\"2023-03-29T18:30:00\",\"2023-03-29T19:30:00\",\"2023-03-29T20:30:00\",\"2023-03-29T21:30:00\",\"2023-03-29T22:30:00\",\"2023-03-29T23:30:00\",\"2023-03-30T00:30:00\",\"2023-03-30T01:30:00\",\"2023-03-30T02:30:00\",\"2023-03-30T03:30:00\",\"2023-03-30T04:30:00\",\"2023-03-30T05:30:00\",\"2023-03-30T06:30:00\",\"2023-03-30T07:30:00\",\"2023-03-30T08:30:00\",\"2023-03-30T09:30:00\",\"2023-03-30T10:30:00\",\"2023-03-30T11:30:00\",\"2023-03-30T12:30:00\",\"2023-03-30T13:30:00\",\"2023-03-30T14:30:00\",\"2023-03-30T15:30:00\",\"2023-03-30T16:30:00\",\"2023-03-30T17:30:00\",\"2023-03-30T18:30:00\",\"2023-03-30T19:30:00\",\"2023-03-30T20:30:00\",\"2023-03-30T21:30:00\",\"2023-03-30T22:30:00\",\"2023-03-30T23:30:00\",\"2023-03-31T00:30:00\",\"2023-03-31T01:30:00\",\"2023-03-31T02:30:00\",\"2023-03-31T03:30:00\",\"2023-03-31T04:30:00\",\"2023-03-31T05:30:00\",\"2023-03-31T06:30:00\",\"2023-03-31T07:30:00\",\"2023-03-31T08:30:00\",\"2023-03-31T09:30:00\",\"2023-03-31T10:30:00\",\"2023-03-31T11:30:00\",\"2023-03-31T12:30:00\",\"2023-03-31T13:30:00\",\"2023-04-01T04:30:00\",\"2023-04-01T05:30:00\",\"2023-04-01T06:30:00\",\"2023-04-01T07:30:00\",\"2023-04-01T08:30:00\",\"2023-04-01T09:30:00\",\"2023-04-01T10:30:00\",\"2023-04-01T11:30:00\",\"2023-04-01T12:30:00\",\"2023-04-01T13:30:00\",\"2023-04-01T14:30:00\",\"2023-04-01T15:30:00\",\"2023-04-01T16:30:00\",\"2023-04-01T17:30:00\",\"2023-04-01T18:30:00\",\"2023-04-01T19:30:00\",\"2023-04-01T20:30:00\",\"2023-04-01T21:30:00\",\"2023-04-02T00:30:00\",\"2023-04-02T01:30:00\",\"2023-04-02T02:30:00\",\"2023-04-02T03:30:00\",\"2023-04-02T04:30:00\",\"2023-04-02T05:30:00\",\"2023-04-02T06:30:00\",\"2023-04-02T07:30:00\",\"2023-04-02T08:30:00\",\"2023-04-02T09:30:00\",\"2023-04-02T10:30:00\",\"2023-04-02T11:30:00\",\"2023-04-02T12:30:00\",\"2023-04-02T13:30:00\",\"2023-04-02T14:30:00\",\"2023-04-02T15:30:00\",\"2023-04-02T16:30:00\",\"2023-04-02T17:30:00\",\"2023-04-02T18:30:00\",\"2023-04-02T19:30:00\",\"2023-04-02T20:30:00\",\"2023-04-02T21:30:00\",\"2023-04-02T22:30:00\",\"2023-04-02T23:30:00\",\"2023-04-03T00:30:00\",\"2023-04-03T01:30:00\",\"2023-04-03T02:30:00\",\"2023-04-03T03:30:00\",\"2023-04-03T04:30:00\",\"2023-04-03T05:30:00\",\"2023-04-03T06:30:00\",\"2023-04-03T07:30:00\",\"2023-04-03T08:30:00\",\"2023-04-03T09:30:00\",\"2023-04-03T10:30:00\",\"2023-04-03T11:30:00\",\"2023-04-03T12:30:00\",\"2023-04-03T13:30:00\",\"2023-04-03T14:30:00\",\"2023-04-03T15:30:00\",\"2023-04-03T16:30:00\",\"2023-04-03T18:30:00\",\"2023-04-03T19:30:00\",\"2023-04-03T20:30:00\",\"2023-04-03T21:30:00\",\"2023-04-03T23:30:00\",\"2023-04-04T00:30:00\",\"2023-04-04T01:30:00\",\"2023-04-04T03:30:00\",\"2023-04-04T04:30:00\",\"2023-04-04T05:30:00\",\"2023-04-04T06:30:00\",\"2023-04-04T07:30:00\",\"2023-04-04T08:30:00\",\"2023-04-04T09:30:00\",\"2023-04-04T10:30:00\",\"2023-04-04T11:30:00\",\"2023-04-04T14:30:00\",\"2023-04-04T16:30:00\",\"2023-04-04T18:30:00\",\"2023-04-04T19:30:00\",\"2023-04-04T20:30:00\",\"2023-04-04T21:30:00\",\"2023-04-04T22:30:00\",\"2023-04-04T23:30:00\",\"2023-04-05T00:30:00\",\"2023-04-05T01:30:00\",\"2023-04-05T02:30:00\",\"2023-04-05T03:30:00\",\"2023-04-05T04:30:00\",\"2023-04-05T05:30:00\",\"2023-04-05T06:30:00\",\"2023-04-05T07:30:00\",\"2023-04-05T08:30:00\",\"2023-04-05T09:30:00\",\"2023-04-05T10:30:00\",\"2023-04-05T11:30:00\",\"2023-04-05T12:30:00\",\"2023-04-05T13:30:00\",\"2023-04-05T14:30:00\",\"2023-04-05T15:30:00\",\"2023-04-05T16:30:00\",\"2023-04-05T17:30:00\",\"2023-04-05T18:30:00\",\"2023-04-05T19:30:00\",\"2023-04-05T20:30:00\",\"2023-04-05T21:30:00\",\"2023-04-05T22:30:00\",\"2023-04-06T00:30:00\",\"2023-04-06T01:30:00\",\"2023-04-06T02:30:00\",\"2023-04-06T03:30:00\",\"2023-04-06T04:30:00\",\"2023-04-06T05:30:00\",\"2023-04-06T06:30:00\",\"2023-04-06T07:30:00\",\"2023-04-06T08:30:00\",\"2023-04-06T09:30:00\",\"2023-04-06T10:30:00\",\"2023-04-06T11:30:00\",\"2023-04-06T12:30:00\",\"2023-04-06T13:30:00\",\"2023-04-06T14:30:00\",\"2023-04-06T15:30:00\",\"2023-04-06T16:30:00\",\"2023-04-06T17:30:00\",\"2023-04-06T18:30:00\",\"2023-04-06T19:30:00\",\"2023-04-06T20:30:00\",\"2023-04-06T21:30:00\",\"2023-04-06T22:30:00\",\"2023-04-06T23:30:00\",\"2023-04-07T00:30:00\",\"2023-04-07T01:30:00\",\"2023-04-07T02:30:00\",\"2023-04-07T03:30:00\",\"2023-04-07T04:30:00\",\"2023-04-07T05:30:00\",\"2023-04-07T06:30:00\",\"2023-04-07T07:30:00\",\"2023-04-07T08:30:00\",\"2023-04-07T09:30:00\",\"2023-04-07T10:30:00\",\"2023-04-07T11:30:00\",\"2023-04-07T12:30:00\",\"2023-04-07T13:30:00\",\"2023-04-07T14:30:00\",\"2023-04-07T15:30:00\",\"2023-04-07T16:30:00\",\"2023-04-07T17:30:00\",\"2023-04-07T18:30:00\",\"2023-04-07T19:30:00\",\"2023-04-07T20:30:00\",\"2023-04-07T21:30:00\",\"2023-04-07T22:30:00\",\"2023-04-07T23:30:00\",\"2023-04-08T00:30:00\",\"2023-04-08T01:30:00\",\"2023-04-08T02:30:00\",\"2023-04-08T03:30:00\",\"2023-04-08T04:30:00\",\"2023-04-08T05:30:00\",\"2023-04-08T06:30:00\",\"2023-04-08T07:30:00\",\"2023-04-08T08:30:00\",\"2023-04-08T09:30:00\",\"2023-04-08T10:30:00\",\"2023-04-08T11:30:00\",\"2023-04-08T12:30:00\",\"2023-04-08T13:30:00\",\"2023-04-08T14:30:00\",\"2023-04-08T15:30:00\",\"2023-04-08T16:30:00\",\"2023-04-08T17:30:00\",\"2023-04-08T18:30:00\",\"2023-04-08T19:30:00\",\"2023-04-08T20:30:00\",\"2023-04-08T21:30:00\",\"2023-04-08T22:30:00\",\"2023-04-08T23:30:00\",\"2023-04-09T00:30:00\",\"2023-04-09T01:30:00\",\"2023-04-09T02:30:00\",\"2023-04-09T03:30:00\",\"2023-04-09T04:30:00\",\"2023-04-09T05:30:00\",\"2023-04-09T06:30:00\",\"2023-04-09T07:30:00\",\"2023-04-09T08:30:00\",\"2023-04-09T09:30:00\",\"2023-04-09T10:30:00\",\"2023-04-09T11:30:00\",\"2023-04-09T12:30:00\",\"2023-04-09T13:30:00\",\"2023-04-09T14:30:00\",\"2023-04-09T15:30:00\",\"2023-04-09T16:30:00\",\"2023-04-09T17:30:00\",\"2023-04-09T18:30:00\",\"2023-04-09T19:30:00\",\"2023-04-09T20:30:00\",\"2023-04-09T21:30:00\",\"2023-04-09T22:30:00\",\"2023-04-09T23:30:00\",\"2023-04-10T00:30:00\",\"2023-04-10T01:30:00\",\"2023-04-10T02:30:00\",\"2023-04-10T03:30:00\",\"2023-04-10T04:30:00\",\"2023-04-10T05:30:00\",\"2023-04-10T06:30:00\",\"2023-04-10T07:30:00\",\"2023-04-10T08:30:00\",\"2023-04-10T09:30:00\",\"2023-04-10T10:30:00\",\"2023-04-10T11:30:00\",\"2023-04-10T12:30:00\",\"2023-04-10T13:30:00\",\"2023-04-10T14:30:00\",\"2023-04-10T15:30:00\",\"2023-04-10T16:30:00\",\"2023-04-10T17:30:00\",\"2023-04-10T18:30:00\",\"2023-04-10T19:30:00\",\"2023-04-10T20:30:00\",\"2023-04-10T21:30:00\",\"2023-04-10T23:30:00\",\"2023-04-11T00:30:00\",\"2023-04-11T01:30:00\",\"2023-04-11T02:30:00\",\"2023-04-11T03:30:00\",\"2023-04-11T04:30:00\",\"2023-04-11T05:30:00\",\"2023-04-11T06:30:00\",\"2023-04-11T07:30:00\",\"2023-04-11T08:30:00\",\"2023-04-11T09:30:00\",\"2023-04-11T10:30:00\",\"2023-04-11T11:30:00\",\"2023-04-11T12:30:00\",\"2023-04-11T13:30:00\",\"2023-04-11T14:30:00\",\"2023-04-11T15:30:00\",\"2023-04-11T16:30:00\",\"2023-04-11T17:30:00\",\"2023-04-11T18:30:00\",\"2023-04-11T19:30:00\",\"2023-04-11T20:30:00\",\"2023-04-11T21:30:00\",\"2023-04-11T22:30:00\",\"2023-04-11T23:30:00\",\"2023-04-12T00:30:00\",\"2023-04-12T01:30:00\",\"2023-04-12T02:30:00\",\"2023-04-12T03:30:00\",\"2023-04-12T04:30:00\",\"2023-04-12T05:30:00\",\"2023-04-12T06:30:00\",\"2023-04-12T07:30:00\",\"2023-04-12T08:30:00\",\"2023-04-12T09:30:00\",\"2023-04-12T10:30:00\",\"2023-04-12T11:30:00\",\"2023-04-12T12:30:00\",\"2023-04-12T13:30:00\",\"2023-04-12T14:30:00\",\"2023-04-12T15:30:00\",\"2023-04-12T16:30:00\",\"2023-04-12T17:30:00\",\"2023-04-12T18:30:00\",\"2023-04-12T19:30:00\",\"2023-04-12T20:30:00\",\"2023-04-12T21:30:00\",\"2023-04-12T22:30:00\",\"2023-04-12T23:30:00\",\"2023-04-13T00:30:00\",\"2023-04-13T01:30:00\",\"2023-04-13T02:30:00\",\"2023-04-13T03:30:00\",\"2023-04-13T04:30:00\",\"2023-04-13T05:30:00\",\"2023-04-13T06:30:00\",\"2023-04-13T07:30:00\",\"2023-04-13T08:30:00\",\"2023-04-13T09:30:00\",\"2023-04-13T10:30:00\",\"2023-04-13T11:30:00\",\"2023-04-13T12:30:00\",\"2023-04-13T13:30:00\",\"2023-04-13T14:30:00\",\"2023-04-13T15:30:00\",\"2023-04-13T16:30:00\",\"2023-04-13T17:30:00\",\"2023-04-13T18:30:00\",\"2023-04-13T19:30:00\",\"2023-04-13T20:30:00\",\"2023-04-13T21:30:00\",\"2023-04-13T22:30:00\",\"2023-04-13T23:30:00\",\"2023-04-14T00:30:00\",\"2023-04-14T01:30:00\",\"2023-04-14T02:30:00\",\"2023-04-14T03:30:00\",\"2023-04-14T04:30:00\",\"2023-04-14T05:30:00\",\"2023-04-14T06:30:00\",\"2023-04-14T07:30:00\",\"2023-04-14T08:30:00\",\"2023-04-14T09:30:00\",\"2023-04-14T10:30:00\",\"2023-04-14T11:30:00\",\"2023-04-14T12:30:00\",\"2023-04-14T13:30:00\",\"2023-04-14T14:30:00\",\"2023-04-14T15:30:00\",\"2023-04-14T16:30:00\",\"2023-04-14T17:30:00\",\"2023-04-14T18:30:00\",\"2023-04-14T19:30:00\",\"2023-04-14T20:30:00\",\"2023-04-14T21:30:00\",\"2023-04-14T22:30:00\",\"2023-04-14T23:30:00\",\"2023-04-15T00:30:00\",\"2023-04-15T01:30:00\",\"2023-04-15T02:30:00\",\"2023-04-15T03:30:00\",\"2023-04-15T04:30:00\",\"2023-04-15T05:30:00\",\"2023-04-15T06:30:00\",\"2023-04-15T07:30:00\",\"2023-04-15T08:30:00\",\"2023-04-15T09:30:00\",\"2023-04-15T10:30:00\",\"2023-04-15T11:30:00\",\"2023-04-15T12:30:00\",\"2023-04-15T13:30:00\",\"2023-04-15T14:30:00\",\"2023-04-15T15:30:00\",\"2023-04-15T16:30:00\",\"2023-04-15T17:30:00\",\"2023-04-15T18:30:00\",\"2023-04-15T19:30:00\",\"2023-04-15T20:30:00\",\"2023-04-15T21:30:00\",\"2023-04-15T22:30:00\",\"2023-04-15T23:30:00\",\"2023-04-16T00:30:00\",\"2023-04-16T01:30:00\",\"2023-04-16T02:30:00\",\"2023-04-16T03:30:00\",\"2023-04-16T04:30:00\",\"2023-04-16T05:30:00\",\"2023-04-16T06:30:00\",\"2023-04-16T07:30:00\",\"2023-04-16T08:30:00\",\"2023-04-16T09:30:00\",\"2023-04-16T10:30:00\",\"2023-04-16T11:30:00\",\"2023-04-16T12:30:00\",\"2023-04-16T13:30:00\",\"2023-04-16T14:30:00\",\"2023-04-16T15:30:00\",\"2023-04-16T16:30:00\",\"2023-04-16T17:30:00\",\"2023-04-16T18:30:00\",\"2023-04-16T19:30:00\",\"2023-04-16T20:30:00\",\"2023-04-16T21:30:00\",\"2023-04-16T22:30:00\",\"2023-04-16T23:30:00\",\"2023-04-17T00:30:00\",\"2023-04-17T01:30:00\",\"2023-04-17T02:30:00\",\"2023-04-17T03:30:00\",\"2023-04-17T04:30:00\",\"2023-04-17T05:30:00\",\"2023-04-17T06:30:00\",\"2023-04-17T07:30:00\",\"2023-04-17T08:30:00\",\"2023-04-17T09:30:00\",\"2023-04-17T10:30:00\",\"2023-04-17T11:30:00\",\"2023-04-17T12:30:00\",\"2023-04-17T13:30:00\",\"2023-04-17T14:30:00\",\"2023-04-17T15:30:00\",\"2023-04-17T16:30:00\",\"2023-04-17T17:30:00\",\"2023-04-17T18:30:00\",\"2023-04-17T19:30:00\",\"2023-04-17T20:30:00\",\"2023-04-17T21:30:00\",\"2023-04-17T22:30:00\",\"2023-04-17T23:30:00\",\"2023-04-18T00:30:00\",\"2023-04-18T01:30:00\",\"2023-04-18T02:30:00\",\"2023-04-18T03:30:00\",\"2023-04-18T04:30:00\",\"2023-04-18T05:30:00\",\"2023-04-18T06:30:00\",\"2023-04-18T07:30:00\",\"2023-04-18T08:30:00\",\"2023-04-18T09:30:00\",\"2023-04-18T10:30:00\",\"2023-04-18T11:30:00\",\"2023-04-18T12:30:00\",\"2023-04-18T13:30:00\",\"2023-04-18T14:30:00\",\"2023-04-18T15:30:00\",\"2023-04-18T16:30:00\",\"2023-04-18T17:30:00\",\"2023-04-18T18:30:00\",\"2023-04-18T19:30:00\",\"2023-04-18T20:30:00\",\"2023-04-18T21:30:00\",\"2023-04-18T23:30:00\",\"2023-04-19T00:30:00\",\"2023-04-19T01:30:00\",\"2023-04-19T02:30:00\",\"2023-04-19T03:30:00\",\"2023-04-19T04:30:00\",\"2023-04-19T05:30:00\",\"2023-04-19T06:30:00\",\"2023-04-19T07:30:00\",\"2023-04-19T08:30:00\",\"2023-04-19T09:30:00\",\"2023-04-19T10:30:00\",\"2023-04-19T11:30:00\",\"2023-04-19T12:30:00\",\"2023-04-19T13:30:00\",\"2023-04-19T14:30:00\",\"2023-04-19T15:30:00\",\"2023-04-19T16:30:00\",\"2023-04-19T17:30:00\",\"2023-04-19T18:30:00\",\"2023-04-19T19:30:00\",\"2023-04-19T20:30:00\",\"2023-04-19T21:30:00\",\"2023-04-19T22:30:00\",\"2023-04-19T23:30:00\",\"2023-04-20T01:30:00\",\"2023-04-20T02:30:00\",\"2023-04-20T05:30:00\",\"2023-04-20T06:30:00\",\"2023-04-20T07:30:00\",\"2023-04-20T08:30:00\",\"2023-04-20T09:30:00\",\"2023-04-20T10:30:00\",\"2023-04-20T11:30:00\",\"2023-04-20T12:30:00\",\"2023-04-20T13:30:00\",\"2023-04-20T14:30:00\",\"2023-04-20T15:30:00\",\"2023-04-20T16:30:00\",\"2023-04-20T17:30:00\",\"2023-04-20T18:30:00\",\"2023-04-20T19:30:00\",\"2023-04-20T20:30:00\",\"2023-04-20T21:30:00\",\"2023-04-20T22:30:00\",\"2023-04-20T23:30:00\",\"2023-04-21T00:30:00\",\"2023-04-21T01:30:00\",\"2023-04-21T02:30:00\",\"2023-04-21T03:30:00\",\"2023-04-21T04:30:00\",\"2023-04-21T05:30:00\",\"2023-04-21T06:30:00\",\"2023-04-21T07:30:00\",\"2023-04-21T08:30:00\",\"2023-04-21T09:30:00\",\"2023-04-21T10:30:00\",\"2023-04-21T11:30:00\",\"2023-04-21T12:30:00\",\"2023-04-21T13:30:00\",\"2023-04-21T14:30:00\",\"2023-04-21T15:30:00\",\"2023-04-21T16:30:00\",\"2023-04-21T17:30:00\",\"2023-04-21T18:30:00\",\"2023-04-21T19:30:00\",\"2023-04-21T20:30:00\",\"2023-04-21T22:30:00\",\"2023-04-21T23:30:00\",\"2023-04-22T00:30:00\",\"2023-04-22T01:30:00\",\"2023-04-22T02:30:00\",\"2023-04-22T03:30:00\",\"2023-04-22T04:30:00\",\"2023-04-22T05:30:00\",\"2023-04-22T06:30:00\",\"2023-04-22T07:30:00\",\"2023-04-22T08:30:00\",\"2023-04-22T09:30:00\",\"2023-04-22T10:30:00\",\"2023-04-22T11:30:00\",\"2023-04-22T12:30:00\",\"2023-04-22T13:30:00\",\"2023-04-22T14:30:00\",\"2023-04-22T15:30:00\",\"2023-04-22T16:30:00\",\"2023-04-22T17:30:00\",\"2023-04-22T18:30:00\",\"2023-04-22T19:30:00\",\"2023-04-22T20:30:00\",\"2023-04-22T21:30:00\",\"2023-04-22T22:30:00\",\"2023-04-22T23:30:00\",\"2023-04-23T00:30:00\",\"2023-04-23T01:30:00\",\"2023-04-23T02:30:00\",\"2023-04-23T03:30:00\",\"2023-04-23T04:30:00\",\"2023-04-23T05:30:00\",\"2023-04-23T06:30:00\",\"2023-04-23T07:30:00\",\"2023-04-23T09:30:00\",\"2023-04-23T10:30:00\",\"2023-04-23T11:30:00\",\"2023-04-23T12:30:00\",\"2023-04-23T13:30:00\",\"2023-04-23T14:30:00\",\"2023-04-23T15:30:00\",\"2023-04-23T16:30:00\",\"2023-04-23T17:30:00\",\"2023-04-23T18:30:00\",\"2023-04-23T19:30:00\",\"2023-04-23T20:30:00\",\"2023-04-23T21:30:00\",\"2023-04-23T22:30:00\",\"2023-04-23T23:30:00\",\"2023-04-24T00:30:00\",\"2023-04-24T01:30:00\",\"2023-04-24T02:30:00\",\"2023-04-24T03:30:00\",\"2023-04-24T04:30:00\",\"2023-04-24T05:30:00\",\"2023-04-24T06:30:00\",\"2023-04-24T07:30:00\",\"2023-04-24T08:30:00\",\"2023-04-24T09:30:00\",\"2023-04-24T11:30:00\",\"2023-04-24T12:30:00\",\"2023-04-24T13:30:00\",\"2023-04-24T14:30:00\",\"2023-04-24T15:30:00\",\"2023-04-24T16:30:00\",\"2023-04-24T17:30:00\",\"2023-04-24T18:30:00\",\"2023-04-24T19:30:00\",\"2023-04-24T20:30:00\",\"2023-04-24T21:30:00\",\"2023-04-24T22:30:00\",\"2023-04-24T23:30:00\",\"2023-04-25T00:30:00\",\"2023-04-25T01:30:00\",\"2023-04-25T02:30:00\",\"2023-04-25T03:30:00\",\"2023-04-25T04:30:00\",\"2023-04-25T05:30:00\",\"2023-04-25T06:30:00\",\"2023-04-25T08:30:00\",\"2023-04-25T09:30:00\",\"2023-04-25T10:30:00\",\"2023-04-25T11:30:00\",\"2023-04-25T12:30:00\",\"2023-04-25T13:30:00\",\"2023-04-25T14:30:00\",\"2023-04-25T15:30:00\",\"2023-04-25T16:30:00\",\"2023-04-25T17:30:00\",\"2023-04-25T19:30:00\",\"2023-04-25T20:30:00\",\"2023-04-25T21:30:00\",\"2023-04-25T22:30:00\",\"2023-04-25T23:30:00\",\"2023-04-26T00:30:00\",\"2023-04-26T01:30:00\",\"2023-04-26T02:30:00\",\"2023-04-26T03:30:00\",\"2023-04-26T04:30:00\",\"2023-04-26T05:30:00\",\"2023-04-26T06:30:00\",\"2023-04-26T07:30:00\",\"2023-04-26T08:30:00\",\"2023-04-26T09:30:00\",\"2023-04-26T10:30:00\",\"2023-04-26T11:30:00\",\"2023-04-26T12:30:00\",\"2023-04-26T13:30:00\",\"2023-04-26T14:30:00\",\"2023-04-26T15:30:00\",\"2023-04-26T16:30:00\",\"2023-04-26T17:30:00\",\"2023-04-26T18:30:00\",\"2023-04-26T19:30:00\",\"2023-04-26T20:30:00\",\"2023-04-26T21:30:00\",\"2023-04-26T22:30:00\",\"2023-04-26T23:30:00\",\"2023-04-27T00:30:00\",\"2023-04-27T01:30:00\",\"2023-04-27T02:30:00\",\"2023-04-27T03:30:00\",\"2023-04-27T04:30:00\",\"2023-04-27T05:30:00\",\"2023-04-27T06:30:00\",\"2023-04-27T07:30:00\",\"2023-04-27T08:30:00\",\"2023-04-27T09:30:00\",\"2023-04-27T10:30:00\",\"2023-04-27T11:30:00\",\"2023-04-27T12:30:00\",\"2023-04-27T13:30:00\",\"2023-04-27T14:30:00\",\"2023-04-27T15:30:00\",\"2023-04-27T16:30:00\",\"2023-04-27T17:30:00\",\"2023-04-27T18:30:00\",\"2023-04-27T19:30:00\",\"2023-04-27T20:30:00\",\"2023-04-27T21:30:00\",\"2023-04-27T22:30:00\",\"2023-04-27T23:30:00\",\"2023-04-28T00:30:00\",\"2023-04-28T01:30:00\",\"2023-04-28T02:30:00\",\"2023-04-28T03:30:00\",\"2023-04-28T04:30:00\",\"2023-04-28T05:30:00\",\"2023-04-28T06:30:00\",\"2023-04-28T07:30:00\",\"2023-04-28T08:30:00\",\"2023-04-28T09:30:00\",\"2023-04-28T10:30:00\",\"2023-04-28T11:30:00\",\"2023-04-28T12:30:00\",\"2023-04-28T13:30:00\",\"2023-04-28T14:30:00\",\"2023-04-28T15:30:00\",\"2023-04-28T17:30:00\",\"2023-04-28T18:30:00\",\"2023-04-28T19:30:00\",\"2023-04-28T20:30:00\",\"2023-04-28T21:30:00\",\"2023-04-28T22:30:00\",\"2023-04-28T23:30:00\",\"2023-04-29T00:30:00\",\"2023-04-29T01:30:00\",\"2023-04-29T02:30:00\",\"2023-04-29T03:30:00\",\"2023-04-29T04:30:00\",\"2023-04-29T05:30:00\",\"2023-04-29T06:30:00\",\"2023-04-29T07:30:00\",\"2023-04-29T08:30:00\",\"2023-04-29T09:30:00\",\"2023-04-29T10:30:00\",\"2023-04-29T11:30:00\",\"2023-04-29T12:30:00\",\"2023-04-29T13:30:00\",\"2023-04-29T14:30:00\",\"2023-04-29T15:30:00\",\"2023-04-29T16:30:00\",\"2023-04-29T17:30:00\",\"2023-04-29T18:30:00\",\"2023-04-29T19:30:00\",\"2023-04-29T20:30:00\",\"2023-04-29T21:30:00\",\"2023-04-29T22:30:00\",\"2023-04-29T23:30:00\",\"2023-04-30T00:30:00\",\"2023-04-30T01:30:00\",\"2023-04-30T02:30:00\",\"2023-04-30T03:30:00\",\"2023-04-30T04:30:00\",\"2023-04-30T05:30:00\",\"2023-04-30T06:30:00\",\"2023-04-30T07:30:00\",\"2023-04-30T08:30:00\",\"2023-04-30T09:30:00\",\"2023-04-30T10:30:00\",\"2023-04-30T11:30:00\",\"2023-04-30T12:30:00\",\"2023-04-30T13:30:00\",\"2023-04-30T14:30:00\",\"2023-04-30T15:30:00\",\"2023-04-30T16:30:00\",\"2023-04-30T17:30:00\",\"2023-04-30T18:30:00\",\"2023-04-30T19:30:00\",\"2023-04-30T20:30:00\",\"2023-04-30T21:30:00\",\"2023-04-30T22:30:00\",\"2023-04-30T23:30:00\",\"2023-05-01T00:30:00\",\"2023-05-01T01:30:00\",\"2023-05-01T02:30:00\",\"2023-05-01T03:30:00\",\"2023-05-01T04:30:00\",\"2023-05-01T05:30:00\",\"2023-05-01T06:30:00\",\"2023-05-01T07:30:00\",\"2023-05-01T08:30:00\",\"2023-05-01T09:30:00\",\"2023-05-01T10:30:00\",\"2023-05-01T11:30:00\",\"2023-05-01T12:30:00\",\"2023-05-01T13:30:00\",\"2023-05-01T14:30:00\",\"2023-05-01T15:30:00\",\"2023-05-01T16:30:00\",\"2023-05-01T17:30:00\",\"2023-05-01T18:30:00\",\"2023-05-01T19:30:00\",\"2023-05-01T20:30:00\",\"2023-05-01T21:30:00\",\"2023-05-01T22:30:00\",\"2023-05-01T23:30:00\",\"2023-05-02T00:30:00\",\"2023-05-02T01:30:00\",\"2023-05-02T02:30:00\",\"2023-05-02T03:30:00\",\"2023-05-02T04:30:00\",\"2023-05-02T05:30:00\",\"2023-05-02T06:30:00\",\"2023-05-02T07:30:00\",\"2023-05-02T08:30:00\",\"2023-05-02T09:30:00\",\"2023-05-02T10:30:00\",\"2023-05-02T11:30:00\",\"2023-05-02T12:30:00\",\"2023-05-02T13:30:00\",\"2023-05-02T14:30:00\",\"2023-05-02T15:30:00\",\"2023-05-02T16:30:00\",\"2023-05-02T17:30:00\",\"2023-05-02T18:30:00\",\"2023-05-02T19:30:00\",\"2023-05-02T20:30:00\",\"2023-05-02T21:30:00\",\"2023-05-02T22:30:00\",\"2023-05-02T23:30:00\",\"2023-05-03T00:30:00\",\"2023-05-03T01:30:00\",\"2023-05-03T02:30:00\",\"2023-05-03T03:30:00\",\"2023-05-03T04:30:00\",\"2023-05-03T06:30:00\",\"2023-05-03T07:30:00\",\"2023-05-03T08:30:00\",\"2023-05-03T09:30:00\",\"2023-05-03T10:30:00\",\"2023-05-03T11:30:00\",\"2023-05-03T12:30:00\",\"2023-05-03T13:30:00\",\"2023-05-03T14:30:00\",\"2023-05-03T15:30:00\",\"2023-05-03T16:30:00\",\"2023-05-03T17:30:00\",\"2023-05-03T18:30:00\",\"2023-05-03T19:30:00\",\"2023-05-03T20:30:00\",\"2023-05-03T21:30:00\",\"2023-05-03T22:30:00\",\"2023-05-03T23:30:00\",\"2023-05-04T00:30:00\",\"2023-05-04T03:30:00\",\"2023-05-04T06:30:00\",\"2023-05-04T07:30:00\",\"2023-05-04T08:30:00\",\"2023-05-04T09:30:00\",\"2023-05-04T10:30:00\",\"2023-05-04T11:30:00\",\"2023-05-04T12:30:00\",\"2023-05-04T13:30:00\",\"2023-05-04T14:30:00\",\"2023-05-04T15:30:00\",\"2023-05-04T16:30:00\",\"2023-05-04T17:30:00\",\"2023-05-04T18:30:00\",\"2023-05-04T19:30:00\",\"2023-05-04T20:30:00\",\"2023-05-04T21:30:00\",\"2023-05-04T22:30:00\",\"2023-05-04T23:30:00\",\"2023-05-05T00:30:00\",\"2023-05-05T01:30:00\",\"2023-05-05T02:30:00\",\"2023-05-05T03:30:00\",\"2023-05-05T04:30:00\",\"2023-05-05T05:30:00\",\"2023-05-05T06:30:00\",\"2023-05-05T07:30:00\",\"2023-05-05T08:30:00\",\"2023-05-05T09:30:00\",\"2023-05-05T10:30:00\",\"2023-05-05T11:30:00\",\"2023-05-05T12:30:00\",\"2023-05-05T13:30:00\",\"2023-05-05T14:30:00\",\"2023-05-05T15:30:00\",\"2023-05-05T16:30:00\",\"2023-05-05T17:30:00\",\"2023-05-05T18:30:00\",\"2023-05-05T19:30:00\",\"2023-05-05T20:30:00\",\"2023-05-05T21:30:00\",\"2023-05-05T22:30:00\",\"2023-05-05T23:30:00\",\"2023-05-06T00:30:00\",\"2023-05-06T01:30:00\",\"2023-05-06T02:30:00\",\"2023-05-06T03:30:00\",\"2023-05-06T04:30:00\",\"2023-05-06T05:30:00\",\"2023-05-06T06:30:00\",\"2023-05-06T07:30:00\",\"2023-05-06T08:30:00\",\"2023-05-06T09:30:00\",\"2023-05-06T10:30:00\",\"2023-05-06T11:30:00\",\"2023-05-06T12:30:00\",\"2023-05-06T13:30:00\",\"2023-05-06T14:30:00\",\"2023-05-06T15:30:00\",\"2023-05-06T16:30:00\",\"2023-05-06T17:30:00\",\"2023-05-06T18:30:00\",\"2023-05-06T19:30:00\",\"2023-05-06T20:30:00\",\"2023-05-06T21:30:00\",\"2023-05-06T22:30:00\",\"2023-05-07T00:30:00\",\"2023-05-07T01:30:00\",\"2023-05-07T02:30:00\",\"2023-05-07T03:30:00\",\"2023-05-07T04:30:00\",\"2023-05-07T05:30:00\",\"2023-05-07T06:30:00\",\"2023-05-07T07:30:00\",\"2023-05-07T08:30:00\",\"2023-05-07T09:30:00\",\"2023-05-07T10:30:00\",\"2023-05-07T11:30:00\",\"2023-05-07T12:30:00\",\"2023-05-07T13:30:00\",\"2023-05-07T14:30:00\",\"2023-05-07T15:30:00\",\"2023-05-07T16:30:00\",\"2023-05-07T17:30:00\",\"2023-05-07T18:30:00\",\"2023-05-07T19:30:00\",\"2023-05-07T20:30:00\",\"2023-05-07T21:30:00\",\"2023-05-07T22:30:00\",\"2023-05-07T23:30:00\",\"2023-05-08T00:30:00\",\"2023-05-08T01:30:00\",\"2023-05-08T02:30:00\",\"2023-05-08T03:30:00\",\"2023-05-08T04:30:00\",\"2023-05-08T05:30:00\",\"2023-05-08T06:30:00\",\"2023-05-08T07:30:00\",\"2023-05-08T08:30:00\",\"2023-05-08T09:30:00\",\"2023-05-08T10:30:00\",\"2023-05-08T11:30:00\",\"2023-05-08T12:30:00\",\"2023-05-08T13:30:00\",\"2023-05-08T14:30:00\",\"2023-05-08T15:30:00\",\"2023-05-08T16:30:00\",\"2023-05-08T17:30:00\",\"2023-05-08T18:30:00\",\"2023-05-08T19:30:00\",\"2023-05-08T20:30:00\",\"2023-05-08T21:30:00\",\"2023-05-08T22:30:00\",\"2023-05-08T23:30:00\",\"2023-05-09T00:30:00\",\"2023-05-09T02:30:00\",\"2023-05-09T03:30:00\",\"2023-05-09T04:30:00\",\"2023-05-09T05:30:00\",\"2023-05-09T06:30:00\",\"2023-05-09T07:30:00\",\"2023-05-09T08:30:00\",\"2023-05-09T09:30:00\",\"2023-05-09T10:30:00\",\"2023-05-09T11:30:00\",\"2023-05-09T13:30:00\",\"2023-05-09T14:30:00\",\"2023-05-09T15:30:00\",\"2023-05-09T16:30:00\",\"2023-05-09T18:30:00\",\"2023-05-09T22:30:00\",\"2023-05-10T00:30:00\",\"2023-05-10T07:30:00\",\"2023-05-10T08:30:00\",\"2023-05-10T10:30:00\",\"2023-05-10T11:30:00\",\"2023-05-10T12:30:00\",\"2023-05-10T13:30:00\",\"2023-05-10T14:30:00\",\"2023-05-10T15:30:00\",\"2023-05-10T16:30:00\",\"2023-05-10T17:30:00\",\"2023-05-10T18:30:00\",\"2023-05-10T19:30:00\",\"2023-05-10T20:30:00\",\"2023-05-10T21:30:00\",\"2023-05-10T22:30:00\",\"2023-05-10T23:30:00\",\"2023-05-11T00:30:00\",\"2023-05-11T01:30:00\",\"2023-05-11T02:30:00\",\"2023-05-11T03:30:00\",\"2023-05-11T04:30:00\",\"2023-05-11T05:30:00\",\"2023-05-11T06:30:00\",\"2023-05-11T07:30:00\",\"2023-05-11T08:30:00\",\"2023-05-11T09:30:00\",\"2023-05-11T10:30:00\",\"2023-05-11T11:30:00\",\"2023-05-11T12:30:00\",\"2023-05-11T13:30:00\",\"2023-05-11T14:30:00\",\"2023-05-11T15:30:00\",\"2023-05-11T16:30:00\",\"2023-05-11T17:30:00\",\"2023-05-11T18:30:00\",\"2023-05-11T19:30:00\",\"2023-05-11T20:30:00\",\"2023-05-11T21:30:00\",\"2023-05-11T22:30:00\",\"2023-05-11T23:30:00\",\"2023-05-12T00:30:00\",\"2023-05-12T01:30:00\",\"2023-05-12T02:30:00\",\"2023-05-12T03:30:00\",\"2023-05-12T04:30:00\",\"2023-05-12T05:30:00\",\"2023-05-12T06:30:00\",\"2023-05-12T07:30:00\",\"2023-05-12T08:30:00\",\"2023-05-12T09:30:00\",\"2023-05-12T10:30:00\",\"2023-05-12T11:30:00\",\"2023-05-12T12:30:00\",\"2023-05-12T13:30:00\",\"2023-05-12T14:30:00\",\"2023-05-12T15:30:00\",\"2023-05-12T16:30:00\",\"2023-05-12T17:30:00\",\"2023-05-12T18:30:00\",\"2023-05-12T20:30:00\",\"2023-05-12T21:30:00\",\"2023-05-12T22:30:00\",\"2023-05-12T23:30:00\",\"2023-05-13T00:30:00\",\"2023-05-13T01:30:00\",\"2023-05-13T02:30:00\",\"2023-05-13T03:30:00\",\"2023-05-13T04:30:00\",\"2023-05-13T05:30:00\",\"2023-05-13T06:30:00\",\"2023-05-13T07:30:00\",\"2023-05-13T08:30:00\",\"2023-05-13T09:30:00\",\"2023-05-13T10:30:00\",\"2023-05-13T11:30:00\",\"2023-05-13T12:30:00\",\"2023-05-13T13:30:00\",\"2023-05-13T14:30:00\",\"2023-05-13T15:30:00\",\"2023-05-13T16:30:00\",\"2023-05-13T17:30:00\",\"2023-05-13T18:30:00\",\"2023-05-13T19:30:00\",\"2023-05-13T20:30:00\",\"2023-05-13T21:30:00\",\"2023-05-13T22:30:00\",\"2023-05-13T23:30:00\",\"2023-05-14T00:30:00\",\"2023-05-14T01:30:00\",\"2023-05-14T02:30:00\",\"2023-05-14T03:30:00\",\"2023-05-14T04:30:00\",\"2023-05-14T05:30:00\",\"2023-05-14T07:30:00\",\"2023-05-14T09:30:00\",\"2023-05-14T10:30:00\",\"2023-05-14T11:30:00\",\"2023-05-14T12:30:00\",\"2023-05-14T13:30:00\",\"2023-05-14T14:30:00\",\"2023-05-14T15:30:00\",\"2023-05-14T18:30:00\",\"2023-05-14T19:30:00\",\"2023-05-14T20:30:00\",\"2023-05-14T21:30:00\",\"2023-05-14T22:30:00\",\"2023-05-14T23:30:00\",\"2023-05-15T00:30:00\",\"2023-05-15T01:30:00\",\"2023-05-15T02:30:00\",\"2023-05-15T03:30:00\",\"2023-05-15T04:30:00\",\"2023-05-15T05:30:00\",\"2023-05-15T06:30:00\",\"2023-05-15T07:30:00\",\"2023-05-15T08:30:00\",\"2023-05-15T09:30:00\",\"2023-05-15T10:30:00\",\"2023-05-15T12:30:00\",\"2023-05-15T13:30:00\",\"2023-05-15T14:30:00\",\"2023-05-15T15:30:00\",\"2023-05-15T16:30:00\",\"2023-05-15T17:30:00\",\"2023-05-15T18:30:00\",\"2023-05-15T19:30:00\",\"2023-05-15T20:30:00\",\"2023-05-15T21:30:00\",\"2023-05-15T22:30:00\",\"2023-05-15T23:30:00\",\"2023-05-16T00:30:00\",\"2023-05-16T01:30:00\",\"2023-05-16T02:30:00\",\"2023-05-16T03:30:00\",\"2023-05-16T04:30:00\",\"2023-05-16T05:30:00\",\"2023-05-16T06:30:00\",\"2023-05-16T07:30:00\",\"2023-05-16T08:30:00\",\"2023-05-16T09:30:00\",\"2023-05-16T10:30:00\",\"2023-05-16T11:30:00\",\"2023-05-16T12:30:00\",\"2023-05-16T13:30:00\",\"2023-05-16T14:30:00\",\"2023-05-16T15:30:00\",\"2023-05-16T16:30:00\",\"2023-05-16T17:30:00\",\"2023-05-16T18:30:00\",\"2023-05-16T19:30:00\",\"2023-05-16T20:30:00\",\"2023-05-16T21:30:00\",\"2023-05-16T22:30:00\",\"2023-05-16T23:30:00\",\"2023-05-17T00:30:00\",\"2023-05-17T01:30:00\",\"2023-05-17T02:30:00\",\"2023-05-17T03:30:00\",\"2023-05-17T05:30:00\",\"2023-05-17T06:30:00\",\"2023-05-17T07:30:00\",\"2023-05-17T08:30:00\",\"2023-05-17T09:30:00\",\"2023-05-17T10:30:00\",\"2023-05-17T11:30:00\",\"2023-05-17T12:30:00\",\"2023-05-17T13:30:00\",\"2023-05-17T14:30:00\",\"2023-05-17T15:30:00\",\"2023-05-17T16:30:00\",\"2023-05-17T17:30:00\",\"2023-05-17T18:30:00\",\"2023-05-17T19:30:00\",\"2023-05-17T20:30:00\",\"2023-05-17T21:30:00\",\"2023-05-17T22:30:00\",\"2023-05-17T23:30:00\",\"2023-05-18T00:30:00\",\"2023-05-18T01:30:00\",\"2023-05-18T02:30:00\",\"2023-05-18T04:30:00\",\"2023-05-18T05:30:00\",\"2023-05-18T06:30:00\",\"2023-05-18T07:30:00\",\"2023-05-18T08:30:00\",\"2023-05-18T09:30:00\",\"2023-05-18T10:30:00\",\"2023-05-18T11:30:00\",\"2023-05-18T13:30:00\",\"2023-05-18T14:30:00\",\"2023-05-18T15:30:00\",\"2023-05-18T16:30:00\",\"2023-05-18T17:30:00\",\"2023-05-18T18:30:00\",\"2023-05-18T19:30:00\",\"2023-05-18T20:30:00\",\"2023-05-18T21:30:00\",\"2023-05-18T22:30:00\",\"2023-05-18T23:30:00\",\"2023-05-19T00:30:00\",\"2023-05-19T01:30:00\",\"2023-05-19T02:30:00\",\"2023-05-19T03:30:00\",\"2023-05-19T04:30:00\",\"2023-05-19T05:30:00\",\"2023-05-19T06:30:00\",\"2023-05-19T07:30:00\",\"2023-05-19T08:30:00\",\"2023-05-19T09:30:00\",\"2023-05-19T10:30:00\",\"2023-05-19T11:30:00\",\"2023-05-19T12:30:00\",\"2023-05-19T13:30:00\",\"2023-05-19T14:30:00\",\"2023-05-19T15:30:00\",\"2023-05-19T16:30:00\",\"2023-05-19T17:30:00\",\"2023-05-19T18:30:00\",\"2023-05-19T19:30:00\",\"2023-05-19T20:30:00\",\"2023-05-19T21:30:00\",\"2023-05-19T22:30:00\",\"2023-05-19T23:30:00\",\"2023-05-20T00:30:00\",\"2023-05-20T01:30:00\",\"2023-05-20T02:30:00\",\"2023-05-20T03:30:00\",\"2023-05-20T04:30:00\",\"2023-05-20T05:30:00\",\"2023-05-20T06:30:00\",\"2023-05-20T07:30:00\",\"2023-05-20T08:30:00\",\"2023-05-20T09:30:00\",\"2023-05-20T10:30:00\",\"2023-05-20T11:30:00\",\"2023-05-20T12:30:00\",\"2023-05-20T13:30:00\",\"2023-05-20T14:30:00\",\"2023-05-20T15:30:00\",\"2023-05-20T16:30:00\",\"2023-05-20T17:30:00\",\"2023-05-20T18:30:00\",\"2023-05-20T19:30:00\",\"2023-05-20T20:30:00\",\"2023-05-20T21:30:00\",\"2023-05-20T22:30:00\",\"2023-05-20T23:30:00\",\"2023-05-21T00:30:00\",\"2023-05-21T01:30:00\",\"2023-05-21T02:30:00\",\"2023-05-21T03:30:00\",\"2023-05-21T04:30:00\",\"2023-05-21T05:30:00\",\"2023-05-21T06:30:00\",\"2023-05-21T07:30:00\",\"2023-05-21T08:30:00\",\"2023-05-21T09:30:00\",\"2023-05-21T10:30:00\",\"2023-05-21T11:30:00\",\"2023-05-21T12:30:00\",\"2023-05-21T13:30:00\",\"2023-05-21T14:30:00\",\"2023-05-21T15:30:00\",\"2023-05-21T16:30:00\",\"2023-05-21T17:30:00\",\"2023-05-21T18:30:00\",\"2023-05-21T19:30:00\",\"2023-05-21T20:30:00\",\"2023-05-21T21:30:00\",\"2023-05-21T22:30:00\",\"2023-05-21T23:30:00\",\"2023-05-22T00:30:00\",\"2023-05-22T01:30:00\",\"2023-05-22T02:30:00\",\"2023-05-22T03:30:00\",\"2023-05-22T04:30:00\",\"2023-05-22T05:30:00\",\"2023-05-22T06:30:00\",\"2023-05-22T07:30:00\",\"2023-05-22T08:30:00\",\"2023-05-22T09:30:00\",\"2023-05-22T10:30:00\",\"2023-05-22T11:30:00\",\"2023-05-22T12:30:00\",\"2023-05-22T13:30:00\",\"2023-05-22T14:30:00\",\"2023-05-22T15:30:00\",\"2023-05-22T16:30:00\",\"2023-05-22T17:30:00\",\"2023-05-22T18:30:00\",\"2023-05-22T19:30:00\",\"2023-05-22T20:30:00\",\"2023-05-22T21:30:00\",\"2023-05-22T22:30:00\",\"2023-05-22T23:30:00\",\"2023-05-23T00:30:00\",\"2023-05-23T01:30:00\",\"2023-05-23T02:30:00\",\"2023-05-23T03:30:00\",\"2023-05-23T04:30:00\",\"2023-05-23T05:30:00\",\"2023-05-23T06:30:00\",\"2023-05-23T07:30:00\",\"2023-05-23T08:30:00\",\"2023-05-23T09:30:00\",\"2023-05-23T10:30:00\",\"2023-05-23T11:30:00\",\"2023-05-23T12:30:00\",\"2023-05-23T13:30:00\",\"2023-05-23T14:30:00\",\"2023-05-23T15:30:00\",\"2023-05-23T16:30:00\",\"2023-05-23T17:30:00\",\"2023-05-23T18:30:00\",\"2023-05-23T19:30:00\",\"2023-05-23T20:30:00\",\"2023-05-23T21:30:00\",\"2023-05-23T22:30:00\",\"2023-05-23T23:30:00\",\"2023-05-24T00:30:00\",\"2023-05-24T01:30:00\",\"2023-05-24T02:30:00\",\"2023-05-24T03:30:00\",\"2023-05-24T04:30:00\",\"2023-05-24T05:30:00\",\"2023-05-24T06:30:00\",\"2023-05-24T07:30:00\",\"2023-05-24T08:30:00\",\"2023-05-24T09:30:00\",\"2023-05-24T10:30:00\",\"2023-05-24T11:30:00\",\"2023-05-24T12:30:00\",\"2023-05-24T13:30:00\",\"2023-05-24T14:30:00\",\"2023-05-24T15:30:00\",\"2023-05-24T16:30:00\",\"2023-05-24T17:30:00\",\"2023-05-24T18:30:00\",\"2023-05-24T19:30:00\",\"2023-05-24T20:30:00\",\"2023-05-24T21:30:00\",\"2023-05-24T22:30:00\",\"2023-05-24T23:30:00\",\"2023-05-25T00:30:00\",\"2023-05-25T01:30:00\",\"2023-05-25T02:30:00\",\"2023-05-25T03:30:00\",\"2023-05-25T04:30:00\",\"2023-05-25T05:30:00\",\"2023-05-25T06:30:00\",\"2023-05-25T07:30:00\",\"2023-05-25T08:30:00\",\"2023-05-25T09:30:00\",\"2023-05-25T10:30:00\",\"2023-05-25T11:30:00\",\"2023-05-25T12:30:00\",\"2023-05-25T13:30:00\",\"2023-05-25T14:30:00\",\"2023-05-25T15:30:00\",\"2023-05-25T16:30:00\",\"2023-05-25T17:30:00\",\"2023-05-25T18:30:00\",\"2023-05-25T19:30:00\",\"2023-05-25T20:30:00\",\"2023-05-25T21:30:00\",\"2023-05-25T22:30:00\",\"2023-05-25T23:30:00\",\"2023-05-26T00:30:00\",\"2023-05-26T01:30:00\",\"2023-05-26T02:30:00\",\"2023-05-26T03:30:00\",\"2023-05-26T04:30:00\",\"2023-05-26T05:30:00\",\"2023-05-26T06:30:00\",\"2023-05-26T07:30:00\",\"2023-05-26T08:30:00\",\"2023-05-26T09:30:00\",\"2023-05-26T10:30:00\",\"2023-05-26T11:30:00\",\"2023-05-26T12:30:00\",\"2023-05-26T13:30:00\",\"2023-05-26T14:30:00\",\"2023-05-26T15:30:00\",\"2023-05-26T16:30:00\",\"2023-05-26T17:30:00\",\"2023-05-26T18:30:00\",\"2023-05-26T19:30:00\",\"2023-05-26T20:30:00\",\"2023-05-26T21:30:00\",\"2023-05-26T22:30:00\",\"2023-05-26T23:30:00\",\"2023-05-27T00:30:00\",\"2023-05-27T01:30:00\",\"2023-05-27T02:30:00\",\"2023-05-27T03:30:00\",\"2023-05-27T04:30:00\",\"2023-05-27T05:30:00\",\"2023-05-27T06:30:00\",\"2023-05-27T07:30:00\",\"2023-05-27T08:30:00\",\"2023-05-28T06:30:00\",\"2023-05-28T07:30:00\",\"2023-05-28T08:30:00\",\"2023-05-28T09:30:00\",\"2023-05-28T11:30:00\",\"2023-05-28T12:30:00\",\"2023-05-28T13:30:00\",\"2023-05-28T14:30:00\",\"2023-05-28T15:30:00\",\"2023-05-28T16:30:00\",\"2023-05-28T17:30:00\",\"2023-05-28T18:30:00\",\"2023-05-28T19:30:00\",\"2023-05-28T20:30:00\",\"2023-05-28T21:30:00\",\"2023-05-28T22:30:00\",\"2023-05-28T23:30:00\",\"2023-05-29T00:30:00\",\"2023-05-29T01:30:00\",\"2023-05-29T02:30:00\",\"2023-05-29T03:30:00\",\"2023-05-29T04:30:00\",\"2023-05-29T05:30:00\",\"2023-05-29T06:30:00\",\"2023-05-29T07:30:00\",\"2023-05-29T08:30:00\",\"2023-05-29T09:30:00\",\"2023-05-29T10:30:00\",\"2023-05-29T11:30:00\",\"2023-05-29T12:30:00\",\"2023-05-29T13:30:00\",\"2023-05-29T14:30:00\",\"2023-05-29T15:30:00\",\"2023-05-29T16:30:00\",\"2023-05-29T17:30:00\",\"2023-05-29T18:30:00\",\"2023-05-29T19:30:00\",\"2023-05-29T20:30:00\",\"2023-05-29T21:30:00\",\"2023-05-29T22:30:00\",\"2023-05-29T23:30:00\",\"2023-05-30T00:30:00\",\"2023-05-30T01:30:00\",\"2023-05-30T02:30:00\",\"2023-05-30T03:30:00\",\"2023-05-30T04:30:00\",\"2023-05-30T05:30:00\",\"2023-05-30T06:30:00\",\"2023-05-30T08:30:00\",\"2023-05-30T09:30:00\",\"2023-05-30T10:30:00\",\"2023-05-30T11:30:00\",\"2023-05-30T12:30:00\",\"2023-05-30T13:30:00\",\"2023-05-30T14:30:00\",\"2023-05-30T15:30:00\",\"2023-05-30T16:30:00\",\"2023-05-30T17:30:00\",\"2023-05-30T18:30:00\",\"2023-05-30T19:30:00\",\"2023-05-30T20:30:00\",\"2023-05-30T21:30:00\",\"2023-05-30T22:30:00\",\"2023-05-30T23:30:00\",\"2023-05-31T00:30:00\",\"2023-05-31T01:30:00\",\"2023-05-31T02:30:00\",\"2023-05-31T03:30:00\",\"2023-05-31T04:30:00\",\"2023-05-31T05:30:00\",\"2023-05-31T06:30:00\",\"2023-05-31T07:30:00\",\"2023-05-31T08:30:00\",\"2023-05-31T09:30:00\",\"2023-05-31T10:30:00\",\"2023-05-31T11:30:00\",\"2023-05-31T12:30:00\",\"2023-05-31T13:30:00\",\"2023-05-31T14:30:00\",\"2023-05-31T15:30:00\",\"2023-05-31T16:30:00\",\"2023-05-31T17:30:00\",\"2023-05-31T18:30:00\",\"2023-05-31T19:30:00\",\"2023-05-31T20:30:00\",\"2023-05-31T21:30:00\",\"2023-05-31T22:30:00\",\"2023-05-31T23:30:00\",\"2023-06-01T00:30:00\",\"2023-06-01T01:30:00\",\"2023-06-01T02:30:00\",\"2023-06-01T03:30:00\",\"2023-06-01T04:30:00\",\"2023-06-01T05:30:00\",\"2023-06-01T06:30:00\",\"2023-06-01T07:30:00\",\"2023-06-01T08:30:00\",\"2023-06-01T09:30:00\",\"2023-06-01T10:30:00\",\"2023-06-01T11:30:00\",\"2023-06-01T12:30:00\",\"2023-06-01T13:30:00\",\"2023-06-01T14:30:00\",\"2023-06-01T15:30:00\",\"2023-06-01T16:30:00\",\"2023-06-01T17:30:00\",\"2023-06-01T18:30:00\",\"2023-06-01T19:30:00\",\"2023-06-01T20:30:00\",\"2023-06-01T21:30:00\",\"2023-06-01T22:30:00\",\"2023-06-01T23:30:00\",\"2023-06-02T00:30:00\",\"2023-06-02T01:30:00\",\"2023-06-02T02:30:00\",\"2023-06-02T03:30:00\",\"2023-06-02T04:30:00\",\"2023-06-02T05:30:00\",\"2023-06-02T06:30:00\",\"2023-06-02T07:30:00\",\"2023-06-02T08:30:00\",\"2023-06-02T09:30:00\",\"2023-06-02T10:30:00\",\"2023-06-02T11:30:00\",\"2023-06-02T12:30:00\",\"2023-06-02T13:30:00\",\"2023-06-02T14:30:00\",\"2023-06-02T15:30:00\",\"2023-06-02T16:30:00\",\"2023-06-02T17:30:00\",\"2023-06-02T18:30:00\",\"2023-06-02T19:30:00\",\"2023-06-02T20:30:00\",\"2023-06-02T21:30:00\",\"2023-06-02T22:30:00\",\"2023-06-02T23:30:00\",\"2023-06-03T00:30:00\",\"2023-06-03T01:30:00\",\"2023-06-03T02:30:00\",\"2023-06-03T03:30:00\",\"2023-06-03T04:30:00\",\"2023-06-03T05:30:00\",\"2023-06-03T06:30:00\",\"2023-06-03T07:30:00\",\"2023-06-03T08:30:00\",\"2023-06-03T09:30:00\",\"2023-06-03T10:30:00\",\"2023-06-03T11:30:00\",\"2023-06-03T12:30:00\",\"2023-06-03T13:30:00\",\"2023-06-03T14:30:00\",\"2023-06-03T15:30:00\",\"2023-06-03T16:30:00\",\"2023-06-03T17:30:00\",\"2023-06-03T18:30:00\",\"2023-06-03T19:30:00\",\"2023-06-03T20:30:00\",\"2023-06-03T21:30:00\",\"2023-06-03T22:30:00\",\"2023-06-03T23:30:00\",\"2023-06-04T00:30:00\",\"2023-06-04T01:30:00\",\"2023-06-04T02:30:00\",\"2023-06-04T03:30:00\",\"2023-06-04T04:30:00\",\"2023-06-04T05:30:00\",\"2023-06-04T06:30:00\",\"2023-06-04T07:30:00\",\"2023-06-04T08:30:00\",\"2023-06-04T09:30:00\",\"2023-06-04T10:30:00\",\"2023-06-04T11:30:00\",\"2023-06-04T12:30:00\",\"2023-06-04T13:30:00\",\"2023-06-04T14:30:00\",\"2023-06-04T15:30:00\",\"2023-06-04T16:30:00\",\"2023-06-04T17:30:00\",\"2023-06-04T18:30:00\",\"2023-06-04T19:30:00\",\"2023-06-04T20:30:00\",\"2023-06-04T21:30:00\",\"2023-06-04T22:30:00\",\"2023-06-04T23:30:00\",\"2023-06-05T00:30:00\",\"2023-06-05T01:30:00\",\"2023-06-05T02:30:00\",\"2023-06-05T03:30:00\",\"2023-06-05T04:30:00\",\"2023-06-05T05:30:00\",\"2023-06-05T06:30:00\",\"2023-06-05T07:30:00\",\"2023-06-05T08:30:00\",\"2023-06-05T09:30:00\",\"2023-06-05T10:30:00\",\"2023-06-05T11:30:00\",\"2023-06-05T12:30:00\",\"2023-06-05T13:30:00\",\"2023-06-05T14:30:00\",\"2023-06-05T15:30:00\",\"2023-06-05T16:30:00\",\"2023-06-05T17:30:00\",\"2023-06-05T18:30:00\",\"2023-06-05T19:30:00\",\"2023-06-05T20:30:00\",\"2023-06-05T21:30:00\",\"2023-06-05T22:30:00\",\"2023-06-05T23:30:00\",\"2023-06-06T00:30:00\",\"2023-06-06T01:30:00\",\"2023-06-06T02:30:00\",\"2023-06-06T03:30:00\",\"2023-06-06T04:30:00\",\"2023-06-06T05:30:00\",\"2023-06-06T06:30:00\",\"2023-06-06T07:30:00\",\"2023-06-06T08:30:00\",\"2023-06-06T09:30:00\",\"2023-06-06T10:30:00\",\"2023-06-06T11:30:00\",\"2023-06-06T12:30:00\",\"2023-06-06T13:30:00\",\"2023-06-06T14:30:00\",\"2023-06-06T15:30:00\",\"2023-06-06T16:30:00\",\"2023-06-06T18:30:00\",\"2023-06-06T19:30:00\",\"2023-06-06T20:30:00\",\"2023-06-06T21:30:00\",\"2023-06-06T22:30:00\",\"2023-06-06T23:30:00\",\"2023-06-07T00:30:00\",\"2023-06-07T01:30:00\",\"2023-06-07T02:30:00\",\"2023-06-07T03:30:00\",\"2023-06-07T04:30:00\",\"2023-06-07T05:30:00\",\"2023-06-07T06:30:00\",\"2023-06-07T07:30:00\",\"2023-06-07T08:30:00\",\"2023-06-07T09:30:00\",\"2023-06-07T10:30:00\",\"2023-06-07T11:30:00\",\"2023-06-07T12:30:00\",\"2023-06-07T13:30:00\",\"2023-06-07T14:30:00\",\"2023-06-07T15:30:00\",\"2023-06-07T16:30:00\",\"2023-06-07T17:30:00\",\"2023-06-07T18:30:00\",\"2023-06-07T19:30:00\",\"2023-06-07T20:30:00\",\"2023-06-07T21:30:00\",\"2023-06-07T22:30:00\",\"2023-06-07T23:30:00\",\"2023-06-08T00:30:00\",\"2023-06-08T01:30:00\",\"2023-06-08T02:30:00\",\"2023-06-08T03:30:00\",\"2023-06-08T04:30:00\",\"2023-06-08T05:30:00\",\"2023-06-08T06:30:00\",\"2023-06-08T07:30:00\",\"2023-06-08T08:30:00\",\"2023-06-08T09:30:00\",\"2023-06-08T10:30:00\",\"2023-06-08T11:30:00\",\"2023-06-08T12:30:00\",\"2023-06-08T13:30:00\",\"2023-06-08T14:30:00\",\"2023-06-08T15:30:00\",\"2023-06-08T16:30:00\",\"2023-06-08T17:30:00\",\"2023-06-08T18:30:00\",\"2023-06-08T19:30:00\",\"2023-06-08T20:30:00\",\"2023-06-08T21:30:00\",\"2023-06-08T22:30:00\",\"2023-06-08T23:30:00\",\"2023-06-09T00:30:00\",\"2023-06-09T01:30:00\",\"2023-06-09T02:30:00\",\"2023-06-09T03:30:00\",\"2023-06-09T04:30:00\",\"2023-06-09T05:30:00\",\"2023-06-09T06:30:00\",\"2023-06-09T07:30:00\",\"2023-06-09T08:30:00\",\"2023-06-09T09:30:00\",\"2023-06-09T10:30:00\",\"2023-06-09T11:30:00\",\"2023-06-09T12:30:00\",\"2023-06-09T13:30:00\",\"2023-06-09T14:30:00\",\"2023-06-09T15:30:00\",\"2023-06-09T16:30:00\",\"2023-06-09T17:30:00\",\"2023-06-09T18:30:00\",\"2023-06-09T19:30:00\",\"2023-06-09T20:30:00\",\"2023-06-09T21:30:00\",\"2023-06-09T22:30:00\",\"2023-06-09T23:30:00\",\"2023-06-10T00:30:00\",\"2023-06-10T01:30:00\",\"2023-06-10T02:30:00\",\"2023-06-10T03:30:00\",\"2023-06-10T04:30:00\",\"2023-06-10T05:30:00\",\"2023-06-10T06:30:00\",\"2023-06-10T07:30:00\",\"2023-06-10T08:30:00\",\"2023-06-10T09:30:00\",\"2023-06-10T10:30:00\",\"2023-06-10T11:30:00\",\"2023-06-10T12:30:00\",\"2023-06-10T13:30:00\",\"2023-06-10T14:30:00\",\"2023-06-10T15:30:00\",\"2023-06-10T16:30:00\",\"2023-06-10T17:30:00\",\"2023-06-10T18:30:00\",\"2023-06-10T19:30:00\",\"2023-06-10T20:30:00\",\"2023-06-10T21:30:00\",\"2023-06-10T22:30:00\",\"2023-06-10T23:30:00\",\"2023-06-11T00:30:00\",\"2023-06-11T01:30:00\",\"2023-06-11T02:30:00\",\"2023-06-11T03:30:00\",\"2023-06-11T04:30:00\",\"2023-06-11T05:30:00\",\"2023-06-11T06:30:00\",\"2023-06-11T07:30:00\",\"2023-06-11T08:30:00\",\"2023-06-11T09:30:00\",\"2023-06-11T10:30:00\",\"2023-06-11T11:30:00\",\"2023-06-11T12:30:00\",\"2023-06-11T13:30:00\",\"2023-06-11T14:30:00\",\"2023-06-11T15:30:00\",\"2023-06-11T16:30:00\",\"2023-06-11T17:30:00\",\"2023-06-11T18:30:00\",\"2023-06-11T19:30:00\",\"2023-06-11T20:30:00\",\"2023-06-11T21:30:00\",\"2023-06-11T22:30:00\",\"2023-06-11T23:30:00\",\"2023-06-12T00:30:00\",\"2023-06-12T01:30:00\",\"2023-06-12T02:30:00\",\"2023-06-12T03:30:00\",\"2023-06-12T04:30:00\",\"2023-06-12T05:30:00\",\"2023-06-12T06:30:00\",\"2023-06-12T07:30:00\",\"2023-06-12T08:30:00\",\"2023-06-12T09:30:00\",\"2023-06-12T10:30:00\",\"2023-06-12T11:30:00\",\"2023-06-12T12:30:00\",\"2023-06-12T13:30:00\",\"2023-06-12T14:30:00\",\"2023-06-12T15:30:00\",\"2023-06-12T16:30:00\",\"2023-06-12T17:30:00\",\"2023-06-12T18:30:00\",\"2023-06-12T19:30:00\",\"2023-06-12T20:30:00\",\"2023-06-12T21:30:00\",\"2023-06-12T22:30:00\",\"2023-06-12T23:30:00\",\"2023-06-13T00:30:00\",\"2023-06-13T01:30:00\",\"2023-06-13T02:30:00\",\"2023-06-13T03:30:00\",\"2023-06-13T04:30:00\",\"2023-06-13T05:30:00\",\"2023-06-13T06:30:00\",\"2023-06-13T07:30:00\",\"2023-06-13T08:30:00\",\"2023-06-13T09:30:00\",\"2023-06-13T10:30:00\",\"2023-06-13T11:30:00\",\"2023-06-13T12:30:00\",\"2023-06-13T13:30:00\",\"2023-06-13T14:30:00\",\"2023-06-13T15:30:00\",\"2023-06-13T16:30:00\",\"2023-06-13T17:30:00\",\"2023-06-13T18:30:00\",\"2023-06-13T19:30:00\",\"2023-06-13T20:30:00\",\"2023-06-13T21:30:00\",\"2023-06-13T22:30:00\",\"2023-06-13T23:30:00\",\"2023-06-14T00:30:00\",\"2023-06-14T01:30:00\",\"2023-06-14T02:30:00\",\"2023-06-14T03:30:00\",\"2023-06-14T04:30:00\",\"2023-06-14T05:30:00\",\"2023-06-14T06:30:00\",\"2023-06-14T07:30:00\",\"2023-06-14T08:30:00\",\"2023-06-14T09:30:00\",\"2023-06-14T10:30:00\",\"2023-06-14T11:30:00\",\"2023-06-14T12:30:00\",\"2023-06-14T13:30:00\",\"2023-06-14T14:30:00\",\"2023-06-14T15:30:00\",\"2023-06-14T16:30:00\",\"2023-06-14T17:30:00\",\"2023-06-14T18:30:00\",\"2023-06-14T19:30:00\",\"2023-06-14T20:30:00\",\"2023-06-14T21:30:00\",\"2023-06-14T22:30:00\",\"2023-06-14T23:30:00\",\"2023-06-15T00:30:00\",\"2023-06-15T01:30:00\",\"2023-06-15T02:30:00\",\"2023-06-15T03:30:00\",\"2023-06-15T04:30:00\",\"2023-06-15T05:30:00\",\"2023-06-15T06:30:00\",\"2023-06-15T07:30:00\",\"2023-06-15T08:30:00\",\"2023-06-15T09:30:00\",\"2023-06-15T10:30:00\",\"2023-06-15T11:30:00\",\"2023-06-15T12:30:00\",\"2023-06-15T13:30:00\",\"2023-06-15T14:30:00\",\"2023-06-15T15:30:00\",\"2023-06-15T16:30:00\",\"2023-06-15T17:30:00\",\"2023-06-15T18:30:00\",\"2023-06-15T19:30:00\",\"2023-06-15T20:30:00\",\"2023-06-15T21:30:00\",\"2023-06-15T22:30:00\",\"2023-06-15T23:30:00\",\"2023-06-16T00:30:00\",\"2023-06-16T01:30:00\",\"2023-06-16T02:30:00\",\"2023-06-16T03:30:00\",\"2023-06-16T04:30:00\",\"2023-06-16T05:30:00\",\"2023-06-16T06:30:00\",\"2023-06-16T07:30:00\",\"2023-06-16T08:30:00\",\"2023-06-16T09:30:00\",\"2023-06-16T10:30:00\",\"2023-06-16T11:30:00\",\"2023-06-16T12:30:00\",\"2023-06-16T13:30:00\",\"2023-06-16T14:30:00\",\"2023-06-16T15:30:00\",\"2023-06-16T16:30:00\",\"2023-06-16T17:30:00\",\"2023-06-16T18:30:00\",\"2023-06-16T19:30:00\",\"2023-06-16T20:30:00\",\"2023-06-16T21:30:00\",\"2023-06-16T22:30:00\",\"2023-06-16T23:30:00\",\"2023-06-17T00:30:00\",\"2023-06-17T01:30:00\",\"2023-06-17T02:30:00\",\"2023-06-17T03:30:00\",\"2023-06-17T04:30:00\",\"2023-06-17T07:30:00\",\"2023-06-17T08:30:00\",\"2023-06-17T09:30:00\",\"2023-06-17T10:30:00\",\"2023-06-17T11:30:00\",\"2023-06-17T12:30:00\",\"2023-06-17T13:30:00\",\"2023-06-17T14:30:00\",\"2023-06-17T16:30:00\",\"2023-06-17T17:30:00\",\"2023-06-17T18:30:00\",\"2023-06-17T19:30:00\",\"2023-06-17T20:30:00\",\"2023-06-17T21:30:00\",\"2023-06-17T23:30:00\",\"2023-06-18T03:30:00\",\"2023-06-18T04:30:00\",\"2023-06-18T05:30:00\",\"2023-06-18T06:30:00\",\"2023-06-18T08:30:00\",\"2023-06-18T11:30:00\",\"2023-06-18T13:30:00\",\"2023-06-18T14:30:00\",\"2023-06-18T15:30:00\",\"2023-06-18T16:30:00\",\"2023-06-18T17:30:00\",\"2023-06-18T18:30:00\",\"2023-06-18T19:30:00\",\"2023-06-18T20:30:00\",\"2023-06-18T21:30:00\",\"2023-06-18T22:30:00\",\"2023-06-18T23:30:00\",\"2023-06-19T00:30:00\",\"2023-06-19T01:30:00\",\"2023-06-19T02:30:00\",\"2023-06-19T03:30:00\",\"2023-06-19T04:30:00\",\"2023-06-19T05:30:00\",\"2023-06-19T06:30:00\",\"2023-06-19T07:30:00\",\"2023-06-19T08:30:00\",\"2023-06-19T09:30:00\",\"2023-06-19T10:30:00\",\"2023-06-19T11:30:00\",\"2023-06-19T12:30:00\",\"2023-06-19T13:30:00\",\"2023-06-19T14:30:00\",\"2023-06-19T15:30:00\",\"2023-06-19T16:30:00\",\"2023-06-19T17:30:00\",\"2023-06-19T18:30:00\",\"2023-06-19T19:30:00\",\"2023-06-19T20:30:00\",\"2023-06-19T21:30:00\",\"2023-06-19T22:30:00\",\"2023-06-19T23:30:00\",\"2023-06-20T00:30:00\",\"2023-06-20T01:30:00\",\"2023-06-20T02:30:00\",\"2023-06-20T03:30:00\",\"2023-06-20T04:30:00\",\"2023-06-20T05:30:00\",\"2023-06-20T06:30:00\",\"2023-06-20T07:30:00\",\"2023-06-20T08:30:00\",\"2023-06-20T09:30:00\",\"2023-06-20T10:30:00\",\"2023-06-20T11:30:00\",\"2023-06-20T12:30:00\",\"2023-06-20T13:30:00\",\"2023-06-20T14:30:00\",\"2023-06-20T15:30:00\",\"2023-06-20T16:30:00\",\"2023-06-20T17:30:00\",\"2023-06-20T18:30:00\",\"2023-06-20T19:30:00\",\"2023-06-20T20:30:00\",\"2023-06-20T21:30:00\",\"2023-06-20T22:30:00\",\"2023-06-20T23:30:00\",\"2023-06-21T00:30:00\",\"2023-06-21T01:30:00\",\"2023-06-21T02:30:00\",\"2023-06-21T03:30:00\",\"2023-06-21T04:30:00\",\"2023-06-21T05:30:00\",\"2023-06-21T06:30:00\",\"2023-06-21T07:30:00\",\"2023-06-21T08:30:00\",\"2023-06-21T09:30:00\",\"2023-06-21T12:30:00\",\"2023-06-21T13:30:00\",\"2023-06-21T14:30:00\",\"2023-06-21T15:30:00\",\"2023-06-21T16:30:00\",\"2023-06-21T18:30:00\",\"2023-06-21T19:30:00\",\"2023-06-21T20:30:00\",\"2023-06-21T21:30:00\",\"2023-06-21T22:30:00\",\"2023-06-21T23:30:00\",\"2023-06-22T00:30:00\",\"2023-06-22T01:30:00\",\"2023-06-22T02:30:00\",\"2023-06-22T03:30:00\",\"2023-06-22T04:30:00\",\"2023-06-22T05:30:00\",\"2023-06-22T06:30:00\",\"2023-06-22T07:30:00\",\"2023-06-22T08:30:00\",\"2023-06-22T09:30:00\",\"2023-06-22T10:30:00\",\"2023-06-22T11:30:00\",\"2023-06-22T12:30:00\",\"2023-06-22T13:30:00\",\"2023-06-22T14:30:00\",\"2023-06-22T15:30:00\",\"2023-06-22T16:30:00\",\"2023-06-22T17:30:00\",\"2023-06-22T18:30:00\",\"2023-06-22T19:30:00\",\"2023-06-22T20:30:00\",\"2023-06-22T21:30:00\",\"2023-06-22T22:30:00\",\"2023-06-22T23:30:00\",\"2023-06-23T00:30:00\",\"2023-06-23T01:30:00\",\"2023-06-23T02:30:00\",\"2023-06-23T03:30:00\",\"2023-06-23T04:30:00\",\"2023-06-23T05:30:00\",\"2023-06-23T06:30:00\",\"2023-06-23T07:30:00\",\"2023-06-23T08:30:00\",\"2023-06-23T09:30:00\",\"2023-06-23T10:30:00\",\"2023-06-23T11:30:00\",\"2023-06-23T12:30:00\",\"2023-06-23T13:30:00\",\"2023-06-23T14:30:00\",\"2023-06-23T15:30:00\",\"2023-06-23T16:30:00\",\"2023-06-23T17:30:00\",\"2023-06-23T18:30:00\",\"2023-06-23T19:30:00\",\"2023-06-23T20:30:00\",\"2023-06-23T21:30:00\",\"2023-06-23T22:30:00\",\"2023-06-23T23:30:00\",\"2023-06-24T00:30:00\",\"2023-06-24T01:30:00\",\"2023-06-24T02:30:00\",\"2023-06-24T03:30:00\",\"2023-06-24T04:30:00\",\"2023-06-24T05:30:00\",\"2023-06-24T06:30:00\",\"2023-06-24T07:30:00\",\"2023-06-24T08:30:00\",\"2023-06-24T09:30:00\",\"2023-06-24T10:30:00\",\"2023-06-24T11:30:00\",\"2023-06-24T12:30:00\",\"2023-06-24T13:30:00\",\"2023-06-24T14:30:00\",\"2023-06-24T15:30:00\",\"2023-06-24T16:30:00\",\"2023-06-24T17:30:00\",\"2023-06-24T18:30:00\",\"2023-06-24T19:30:00\",\"2023-06-24T20:30:00\",\"2023-06-24T21:30:00\",\"2023-06-24T22:30:00\",\"2023-06-24T23:30:00\",\"2023-06-25T00:30:00\",\"2023-06-25T01:30:00\",\"2023-06-25T02:30:00\",\"2023-06-25T03:30:00\",\"2023-06-25T04:30:00\",\"2023-06-25T05:30:00\",\"2023-06-25T06:30:00\",\"2023-06-25T07:30:00\",\"2023-06-25T08:30:00\",\"2023-06-25T09:30:00\",\"2023-06-25T10:30:00\",\"2023-06-25T11:30:00\",\"2023-06-25T12:30:00\",\"2023-06-25T13:30:00\",\"2023-06-25T14:30:00\",\"2023-06-25T15:30:00\"],\"xaxis\":\"x\",\"y\":[0.24594140000000003,0.20556860000000002,0.18409709999999999,0.1141119,0.0466728,0.014913299999999999,0.0168405,0.0148969,0.0189096,0.0156448,0.029326799999999997,0.0402876,0.0370877,0.0796587,0.0471936,0.0443206,0.064207,0.0984284,0.0985235,0.1491181,0.1883943,0.1814357,0.1980493,0.19775910000000002,0.1592594,0.084533,0.0569074,0.0634596,0.0643084,0.0489319,0.0879127,0.10857349999999999,0.1209978,0.109294,0.0668357,0.014058399999999999,-0.0026623000000000003,-0.007649100000000001,0.011114,0.0170126,0.0213043,0.026143899999999998,0.0151498,0.0092634,0.015375400000000001,0.077074,0.0865401,0.0955654,0.0753953,0.06999649999999999,0.045711299999999996,0.055074599999999994,0.0916048,0.10604430000000001,0.10057940000000001,0.0977386,0.08706080000000001,0.0606224,0.0420615,0.037157499999999996,0.0485518,0.0655331,0.0537404,0.0427221,0.0244491,0.0255511,0.029597400000000003,0.024491199999999998,0.029370800000000002,0.0374977,0.048795,0.06646260000000001,0.0291687,0.0461862,0.0328496,0.0525588,0.0632339,0.047535100000000004,0.04893,0.056044300000000005,0.05624900000000001,0.035405900000000004,0.0195568,0.0179535,0.036560999999999996,0.0447283,0.06641129999999999,0.1042495,0.0918312,0.1034149,0.1274845,0.1216481,0.12386539999999999,0.10566070000000001,0.0712777,0.1544537,0.1480004,0.12480949999999999,0.1213521,0.1234272,0.152526,0.0901172,0.007722,0.0083394,0.0109391,0.0422505,0.0204732,0.0132988,0.015334400000000002,0.009647300000000001,0.0022379,-0.0015629,-0.0005045,0.0007209,0.0082356,0.0092444,0.0048707,0.004678,0.011576300000000001,0.0146978,0.013885100000000001,0.021682299999999998,0.0283283,0.0352717,0.0370074,0.039017,0.033986699999999995,0.0373855,0.0413018,0.0350702,0.0408153,0.036588999999999997,0.0346223,0.0398191,0.0331213,0.0472586,0.050424800000000006,0.0473771,0.0445093,0.0584417,0.059706499999999996,0.0632123,0.05744590000000001,0.055243799999999996,0.0531034,0.0316373,0.0186587,0.0144402,0.0046992,0.0027708,0.0032067,0.0028719,0.0191798,0.0028465,0.006863900000000001,0.0028056,0.0016533,0.0001448,0.0036268000000000003,-0.0024877,0.0031614000000000004,0.014946999999999998,0.017047399999999997,0.0318318,0.0066264,-0.013217000000000001,0.020613600000000003,0.21056119999999998,0.0170336,0.0101969,0.0107926,0.0125582,0.0191041,0.019429,0.0193074,0.0197721,0.0186443,0.017665900000000002,0.021091,0.017610999999999998,0.017349700000000003,0.0122668,0.0094193,0.0170436,0.021946399999999998,0.0133653,0.019364100000000002,0.017238800000000002,0.021931700000000002,0.022156500000000003,0.0088738,-0.0055751,0.0144954,0.0218198,0.0171284,0.0178759,0.0114703,0.0088319,0.0041129,0.0037098,0.006303100000000001,0.0061181,0.0095718,0.0113665,0.0123479,0.014254600000000001,0.0095097,0.014377200000000001,0.0162424,0.0292362,0.022115299999999997,0.0297803,0.018482699999999998,0.0162946,0.0413009,0.0289289,0.040321,0.037536,0.025264199999999997,0.0196876,0.0092224,0.0186498,0.0139429,-0.0134739,0.0010163,0.0061965,0.0128522,0.013048599999999999,0.0164823,0.01888,0.0171379,0.0373208,0.0890937,0.1057588,0.1475245,0.14345159999999998,0.1393975,0.1480869,0.1819403,0.1938428,0.1688335,0.15463849999999998,0.16269640000000002,0.1334033,0.1778837,0.21401560000000003,0.23185129999999998,0.2517762,0.2447413,0.1919416,0.1732958,0.19523410000000002,0.194634,0.218481,0.233609,0.24215779999999998,0.24569290000000002,0.2182559,0.22025860000000003,0.1880644,0.1351039,0.11775150000000001,0.14095960000000002,0.1397535,0.145063,0.1390002,0.1259564,0.1006141,0.0916236,0.13233299999999998,0.1288984,0.10472030000000002,0.1023523,0.13644430000000002,0.12524,0.1147265,0.088239,0.0918409,0.11350819999999999,0.1143546,0.1371154,0.1319994,0.1403779,0.1471875,0.1066249,0.040074900000000004,0.031897999999999996,0.0438623,0.057282599999999996,0.0691498,0.07019919999999999,0.0459647,0.0584165,0.0686164,0.0661193,0.0382946,0.0406314,0.0512667,0.0754031,0.0676957,0.08026839999999999,0.0742298,0.057922799999999997,0.041922,0.05793739999999999,0.0607425,0.0561319,0.069757,0.0632462,0.0598307,0.0612593,0.0442117,0.0434325,0.0859345,0.1118872,0.043428299999999996,0.07913909999999999,0.0523741,0.0316886,0.054586199999999994,0.0389843,0.0541855,0.0426917,0.07276629999999999,0.1087621,0.11182430000000002,0.1107113,0.1061226,0.09770419999999999,0.0776774,0.0798826,0.0744228,0.0694574,0.0582492,0.0852649,0.10259149999999999,0.10098940000000001,0.12920210000000001,0.0920465,0.07314659999999999,0.0809613,0.0717651,0.0596515,0.0588431,0.0607432,0.0393886,0.048599199999999995,0.0414641,0.0258422,0.029586499999999998,0.0453202,0.0444335,0.0441409,0.05254640000000001,0.064517,0.07826999999999999,0.0774379,0.0741055,0.0711142,0.0515042,0.0469488,0.0377578,0.022412,0.0209347,0.014181599999999999,0.025498,0.0207408,0.0234178,0.0409321,0.0791817,0.0630574,0.0733886,0.0788816,0.060501799999999994,0.0463726,0.05059519999999999,0.05006119999999999,0.0679373,0.089046,0.0848888,0.1002888,0.12235009999999999,0.11322689999999999,0.07783419999999999,0.12287390000000001,0.1527911,0.1536025,0.1810747,0.16590169999999999,0.1580115,0.12243790000000002,0.1825093,0.2107069,0.1899131,0.1856287,0.2611001,0.2529728,0.2397942,0.2572648,0.2356455,0.1949022,0.0710461,0.0756552,0.0293549,0.0103233,0.0211263,0.0366969,0.012506900000000001,0.023908699999999998,0.0321793,0.0289771,0.0277667,0.027881499999999997,0.0303019,0.026547300000000003,0.0366773,0.049448,0.2081464,0.0380431,0.0178387,0.0178506,0.0159135,0.018804599999999998,0.0638055,0.0906864,0.08779630000000001,0.0748099,0.0913007,0.0767829,0.0829115,0.0805216,0.0716387,0.053643399999999994,0.0521509,0.0541514,0.0244966,0.0478963,0.06926109999999999,0.0679485,0.054156499999999996,0.0372861,0.036542200000000004,0.02302,0.0178875,0.0207397,0.0329459,0.050644800000000004,0.0640384,0.0591803,0.0636463,0.0651508,0.08120190000000001,0.030312899999999997,0.0167337,0.0362016,0.0405714,0.040457900000000005,0.045359699999999996,0.0438074,0.0459932,0.0383913,0.0253458,0.0288376,0.037080999999999996,0.0488168,0.0542346,0.049947000000000005,0.0414335,0.0202992,0.004780100000000001,0.0080237,0.0138881,0.0106002,0.0304385,0.0490527,0.0512069,0.0584196,0.044437500000000005,0.0185553,0.015862599999999998,0.021547900000000002,0.020252600000000003,0.0190951,0.0202956,0.018425,0.0123283,0.009477,0.008605,0.0100325,0.0061182,0.010868800000000001,0.0127213,0.0319611,0.0433213,0.0498313,0.050724000000000005,0.0580305,0.06993089999999999,0.0785165,0.0933069,0.0547369,0.0390379,0.0197881,0.014034099999999999,0.010276299999999999,0.0096205,0.0123581,0.0152926,0.0453611,0.06947400000000001,0.0714679,0.0685289,0.0700271,0.07504079999999999,0.0731434,0.0648367,0.0677529,0.0709356,0.0722348,0.06583520000000001,0.0649778,0.0547543,0.0482227,0.0389042,0.0504896,0.0557833,0.106914,0.1237362,0.1450699,0.1575628,0.1418589,0.1584583,0.1742754,0.11832290000000001,0.1471026,0.0831035,0.08420760000000001,0.10359290000000002,0.0988913,0.0762407,0.0807366,0.1084808,0.09857010000000001,0.11945779999999999,0.14922580000000002,0.0946433,0.1350412,0.1214245,0.1229916,0.1580168,0.1432561,0.1572627,0.17106,0.1867846,0.1834327,0.1774633,0.1664455,0.1387102,0.0787442,0.058667800000000006,0.09455369999999999,0.1166113,0.11462000000000001,0.137047,0.1493091,0.1582828,0.1754596,0.18183359999999998,0.1798969,0.13451660000000001,0.1502056,0.1689584,0.1679571,0.1997234,0.23023319999999997,0.2187548,0.22093159999999998,0.21469490000000002,0.19468080000000001,0.1148998,0.1579269,0.1631493,0.1292991,0.1578155,0.18227100000000002,0.1711569,0.1920294,0.17961270000000001,0.2037383,0.226301,0.2561896,0.25403929999999997,0.19175029999999998,0.1925541,0.1818379,0.12819370000000002,0.1141316,0.1216268,0.13387549999999998,0.14141779999999998,0.15364150000000001,0.12006570000000001,0.12342919999999999,0.1326381,0.1296665,0.1532222,0.1625152,0.171941,0.1738258,0.2059755,0.21851189999999998,0.198431,0.20871559999999997,0.22595200000000001,0.2335333,0.23887239999999998,0.2654871,0.2492858,0.2525204,0.24294600000000002,0.2402832,0.23588309999999998,0.2749581,0.2910273,0.2654546,0.2211516,0.219007,0.1940313,0.2374264,0.22579,0.23864459999999998,0.2258979,0.22166389999999997,0.2272652,0.17357,0.1594605,0.1541283,0.1766608,0.1626738,0.1600565,0.1763842,0.12354689999999999,-0.0011347,0.0163836,0.027405000000000002,0.050812800000000005,0.0157544,0.007070999999999999,0.017169,0.0201258,0.0152642,0.022528100000000002,0.0104684,0.0100328,0.0112733,0.0178361,0.02814,0.0088465,0.0169386,0.0098103,0.010397199999999999,0.0125241,0.0298917,0.017432,0.0040815,0.0008908,0.0088198,0.0025068,0.0051134,0.0094884,0.0165882,0.0173543,0.017859,0.0197537,0.0267745,0.0298717,0.032283400000000004,0.0159072,0.0185823,0.0326511,0.036522700000000005,0.024792500000000002,0.0259999,0.0272108,0.0243723,0.0222413,0.0587568,0.0565258,0.053977699999999997,0.0540134,0.037095,0.030245499999999998,0.033330900000000004,0.0333238,0.034915299999999996,0.0217288,0.027133499999999998,0.034353,0.026891500000000002,0.0212793,0.030001299999999998,0.0376235,0.06267249999999999,0.09336910000000001,0.049194100000000004,0.1293843,0.12751969999999999,0.1307679,0.1132107,0.11549020000000002,0.1143216,0.0938936,0.0876737,0.0933678,0.07942,0.066755,0.0357432,0.0288256,0.032995000000000003,0.0285423,0.0390215,0.055978700000000006,0.0635926,0.054379,0.045349600000000004,0.054241300000000006,0.0870332,0.1100977,0.12482889999999999,0.1583659,0.1864533,0.169841,0.1799291,0.1769826,0.2418561,0.1712808,0.04897,0.0494847,0.0337488,0.0237618,0.023003299999999997,0.0262031,0.021476600000000002,0.022423199999999997,0.0171793,0.0178792,0.019100100000000002,0.0414899,0.0638185,0.0944454,0.1096002,0.1556526,0.1951929,0.20923419999999998,0.2117852,0.1845005,0.1978582,0.2153619,0.23195179999999999,0.1941719,0.2235399,0.2250057,0.20025089999999998,0.1335847,0.0927373,0.085028,0.07778850000000001,0.0647552,0.1323956,0.16206389999999998,0.0908111,0.0467767,0.0491876,0.0575897,0.0672271,0.143066,0.08478569999999999,0.13056589999999998,0.0965057,0.0968831,0.10877010000000001,0.1126789,0.13069360000000002,0.1109904,0.1046255,0.1156315,0.11755260000000001,0.1158169,0.1080619,0.1029201,0.0959325,0.0852576,0.0525918,0.0516505,0.0980405,0.1004993,0.1004396,0.1025152,0.1022443,0.1140629,0.10149459999999999,0.101014,0.1362829,0.06872890000000001,0.08424899999999999,0.1586574,0.15071079999999998,0.1530552,0.1302204,0.1470761,0.15733250000000001,0.1703458,0.1459872,0.1307451,0.1238773,0.138287,0.1334634,0.12285410000000001,0.1190154,0.11322479999999999,0.14233769999999998,0.1549498,0.15164919999999998,0.1671985,0.165295,0.2069283,0.2193133,0.1975203,0.1709754,0.1532684,0.13469230000000001,0.1263795,0.11713309999999999,0.1039672,0.1223488,0.19567600000000002,0.133226,0.1232254,0.1049345,0.051986500000000005,0.014074900000000001,0.0189113,0.0506317,0.0562747,0.031003399999999997,0.0231913,0.0404625,0.025598100000000002,0.007611999999999999,0.0202055,0.0336909,0.0277897,0.0190114,0.062334900000000006,0.0686998,0.0521625,0.0685393,0.0567922,0.034335700000000004,0.0252967,0.0087635,0.0249577,0.0271356,0.0300049,0.02152,0.030716399999999998,0.0408841,0.0548524,0.0423044,0.05696639999999999,0.05989989999999999,0.0595285,0.0535428,0.0685282,0.071096,0.0657538,0.0584716,0.05836670000000001,0.0522837,0.0422275,0.032651400000000004,0.0209308,0.032941700000000004,0.0488042,0.046902,0.0494214,0.0394684,0.0383451,0.0431881,0.071536,0.0607444,0.0874493,0.0905027,0.10114039999999999,0.1053231,0.0812199,0.0669897,0.0660245,0.0219518,0.026771299999999998,0.0538084,0.098136,0.0737469,0.0515016,0.036509799999999995,0.0324426,0.0440032,0.0778509,0.0997394,0.10672839999999999,0.12192620000000001,0.1775043,0.20552120000000001,0.20737009999999997,0.2032444,0.2056777,0.20452910000000002,0.1987676,0.1897971,0.1994918,0.1849337,0.1613251,0.1650238,0.1536701,0.1322292,0.1178326,0.11520040000000001,0.1476326,0.1557685,0.17857130000000002,0.1999092,0.2051136,0.2144175,0.2243214,0.20782340000000002,0.2072369,0.20324979999999998,0.21615250000000003,0.21312820000000002,0.2372223,0.2289864,0.2355675,0.2560167,0.2576528,0.28602669999999997,0.2940261,0.2950148,0.2881332,0.2643613,0.2568401,0.2462192,0.22141709999999998,0.19301200000000002,0.1737686,0.1583504,0.1494625,0.16087590000000002,0.1690971,0.1749329,0.1942485,0.2017146,0.1456673,0.1575636,0.1636311,0.20428280000000001,0.0506128,0.1019426,0.1326036,0.11656550000000002,0.11418330000000002,0.0886672,0.0849685,0.0536168,0.034821000000000005,0.0158222,0.0272849,0.025203999999999997,0.028527999999999998,0.0318915,0.035384399999999996,0.0312905,0.0394597,0.0274835,0.0419186,0.0395265,0.0206817,0.0188007,0.0164516,0.0121002,0.012534300000000002,0.015221199999999999,0.011682099999999999,0.0175645,0.0108902,0.013538900000000001,0.018194099999999998,0.014949899999999999,0.022403799999999998,0.0088482,0.029443900000000002,0.0201356,0.0206987,0.0236282,0.0155196,0.0176797,0.0141736,0.0177691,0.0212842,0.0213135,0.0225745,0.0296195,0.0296367,0.028891499999999997,0.032702999999999996,0.0396463,0.0386815,0.0397623,0.042315900000000004,0.030557099999999997,0.031081199999999996,0.0238903,0.021397,0.0319754,0.0455072,0.0416727,0.051552,0.057686400000000006,0.0648169,0.06443489999999999,0.0741144,0.0691435,0.0640055,0.0665911,0.0805504,0.0372504,0.037569399999999996,0.0290635,0.0306335,0.0361957,0.0356449,0.039753300000000005,0.0391374,0.0371587,0.0384445,0.0413443,0.0295055,0.0348346,0.0438189,0.0561329,0.061493299999999994,0.064621,0.07114709999999999,0.0727181,0.07372480000000001,0.0755945,0.049229,0.0202389,0.0140839,0.0162356,0.0124169,0.0252417,0.0480779,0.0511626,0.0693159,0.0774117,0.0791734,0.0733773,0.0707593,0.0769996,0.0798368,0.0868631,0.0868111,0.0867213,0.0951803,0.10304390000000001,0.1104977,0.09078549999999999,0.0973723,0.0686755,0.0571346,0.026059,0.0013032999999999999,0.0066345,0.0030755,null,0.0021849,0.0237519,0.0901367,0.10049809999999999,0.06468009999999999,0.024660099999999997,0.0135979,0.0043844,0.0166159,0.0179809,0.039504,0.0483981,0.0743382,0.0157882,0.0077027,0.0260413,0.0605942,0.0894495,0.1066454,0.10764689999999999,0.11389279999999999,0.1300899,0.2573248,0.2496813,0.1754691,0.1226702,0.1232486,0.1403208,0.1342544,0.1283299,0.11182410000000001,0.1046849,0.1057951,0.1021495,0.1071067,0.09798860000000001,0.09282470000000001,0.088521,0.08790590000000001,0.0960164,0.10921929999999999,0.1447,0.16775020000000002,0.15294570000000002,0.146754,0.2023782,0.2058663,0.2185624,0.1796528,0.1343755,0.11932799999999999,0.10034019999999999,0.058779700000000004,0.030122799999999998,0.048088399999999996,0.0173122,0.0129687,0.0201653,0.012909499999999999,0.012710599999999999,0.0344429,0.0406764,0.054222000000000006,0.0672571,0.0830274,0.0560523,0.0602504,0.0691262,0.07913099999999999,0.029086499999999998,0.0904885,0.0389743,0.0658631,0.0812294,0.041545,0.003056,0.0092301,0.0102691,0.0120522,0.00836,0.0162414,0.0287675,0.0179845,0.0176357,0.0182268,0.0172035,0.0074557,0.009958999999999999,0.0106355,0.014105500000000002,0.0122204,0.0121869,0.0120111,0.022552,0.0169459,0.0252186,0.029250500000000002,0.0320674,0.012764300000000001,0.009515,0.0115872,0.0436739,0.0272794,0.0469198,0.025296000000000003,0.0775953,0.10762560000000002,0.1198866,0.13059,0.1179912,0.10222469999999999,0.1131638,0.1365064,0.1436916,0.1577268,0.1626524,0.1815269,0.1695528,0.12673890000000002,0.1469821,0.1537239,0.1558406,0.1555202,0.1654823,0.1569402,0.1282324,0.0767918,0.10255220000000001,0.1401013,0.1590395,0.1308642,0.0843229,0.0854996,0.0854149,0.1015926,0.1474378,0.1533512,0.1616059,0.1555345,0.15639050000000002,0.0957681,0.1294705,0.1365091,0.1488887,0.1271355,0.093134,0.0540756,0.0989632,0.068089,0.0430972,0.10432820000000001,0.1090362,0.0968098,0.1259788,0.11689780000000001,0.1251302,0.1290658,0.148478,0.16525879999999998,0.160498,0.1199548,0.07967959999999999,0.0912072,0.12060059999999999,0.1555986,0.1722645,0.1735781,0.1565407,0.148285,0.14184190000000002,0.1461222,0.1050241,0.0931246,0.1289583,0.0856658,0.0585248,0.07686760000000001,0.0881753,0.06709190000000001,0.055965799999999996,0.07113420000000001,0.061991,0.0636745,0.0632398,0.0796413,0.0761261,0.10025409999999998,0.10812390000000001,0.1098586,0.10683469999999999,0.1284563,0.1080927,0.12798890000000002,0.1301143,0.11580490000000002,0.1087485,0.1093664,0.0337265,0.032150899999999996,0.0690458,0.0799316,0.1087766,0.0704115,0.1305434,0.1411754,0.1407079,0.1354444,0.1283475,0.143963,0.155442,0.1664091,0.1676572,0.1708782,0.16528199999999998,0.1988488,0.1662616,0.1729853,0.1794453,0.1932627,0.1945946,0.1571613,0.13193280000000002,0.1452694,0.18185500000000002,0.15536080000000002,0.1744551,0.1164704,0.13156289999999998,0.13543460000000002,0.1313582,0.1163341,0.1543493,0.1391612,0.1442484,0.1714005,0.1623392,0.1588161,0.1347526,0.1568007,0.1861292,0.1750908,0.1730489,0.17711349999999998,0.1641534,0.1842266,0.1810924,0.1807596,0.1808178,0.17388920000000002,0.16451949999999999,0.1653839,0.1627651,0.1626754,0.1539137,0.159165,0.16793960000000002,0.1728849,0.1812182,0.1666143,0.0912683,0.059035800000000006,0.09676090000000001,0.09977620000000001,0.1063627,0.0676435,0.0645087,0.1159486,0.1200636,0.089221,0.0721907,0.0340315,0.0447286,0.0518898,0.0634443,0.0610787,0.07121269999999999,0.1116919,0.0927446,0.0994271,0.1094228,0.1137328,0.1291645,0.1298379,0.10309019999999999,0.0227732,0.1018049,0.091639,0.0830594,0.0724761,0.0884664,0.0517558,0.03366,0.06415030000000001,0.06601900000000001,0.0656034,0.07535539999999999,0.1048197,0.10326679999999999,0.0936786,0.0873084,0.06460489999999999,0.0498877,0.0148792,0.0445746,0.0498986,0.055346700000000006,0.073595,0.0071789,0.0073505,0.016939100000000002,0.007377400000000001,0.0061679,0.0315839,0.023346600000000002,0.053321099999999996,0.0686021,0.0442632,0.017373,0.047234700000000004,0.0471752,0.0603232,0.0423829,0.0362948,0.040706599999999996,0.0383781,0.0269831,0.050106300000000006,0.028954200000000003,0.0382917,0.041874499999999995,0.0490496,0.0592815,0.07007139999999999,0.056913599999999995,0.056269,0.0637332,0.055019,0.044847700000000004,0.0471952,0.0374607,0.0355344,0.0424254,0.0279968,0.0121669,0.0457242,0.0735501,0.0502476,0.0435217,0.0355286,0.0212634,0.0114721,0.024271300000000003,0.0350793,0.045189,0.0357465,0.043186999999999996,0.0335565,0.0441678,0.0295512,0.006692399999999999,0.0165329,0.0291813,0.027925,0.0345868,0.0340496,0.0174979,0.0364309,0.0362646,0.0327772,0.0488652,0.0488902,0.0551532,0.0519095,0.0491744,0.0460382,0.0459804,0.0344872,0.0408938,0.0442649,0.0498792,0.0518473,0.0575855,0.0669863,0.047192,0.0322901,0.0524024,0.0877538,0.1274248,0.1589823,0.1807552,0.17656460000000002,0.1702831,0.17776160000000002,0.1360483,0.1328319,0.1342654,0.13362369999999998,0.1723728,0.1669976,0.17617560000000002,0.1972545,0.1881129,0.17660130000000002,0.1824799,0.1872185,0.1925321,0.1850155,0.1957679,0.1179316,0.09769449999999999,0.0963068,0.14443140000000002,0.1176798,0.1727826,0.1738167,0.1703908,0.1381616,0.14031960000000002,0.13761859999999998,0.1315284,0.1272124,0.1311198,0.1282855,0.1352798,0.1334496,0.1687356,0.1804091,0.1780872,0.1693926,0.1858428,0.1948488,0.1928838,0.2116626,0.1579132,0.1229555,0.1175532,0.11332690000000001,0.1261887,0.154969,0.1539758,0.1628988,0.1462059,0.1355715,0.1307222,0.1390634,0.1495607,0.1556357,0.15692699999999998,0.1527661,0.15402929999999998,0.1553953,0.1544048,0.1639802,0.06502440000000001,0.0696183,0.05628300000000001,0.062472700000000006,0.062153599999999996,0.0550543,0.0494574,0.026913,0.0283981,0.0416915,0.0490039,0.045653,0.0644434,0.0814388,0.0807548,0.0838618,0.0789562,0.0782687,0.0832001,0.0903753,0.10213829999999999,0.1267437,0.11979789999999998,0.0977552,0.072923,0.0971118,0.0608761,0.0597028,0.0626253,0.0731497,0.0245971,0.020754,0.0364622,0.0207957,0.0274724,0.0236303,0.0315847,0.0393231,0.0405823,0.0414514,0.0350468,0.0410918,0.0408017,0.0435663,0.041180299999999996,0.0559782,0.0673491,0.0824591,0.08993219999999999,0.0940744,0.08020089999999999,0.0966494,0.0838837,0.090843,0.10312220000000001,0.0908958,0.0575824,0.034658499999999995,0.0452033,0.037945400000000004,0.045203900000000005,0.051808200000000006,0.0444834,0.056622799999999994,0.0488914,0.056122799999999994,0.0580824,0.048968899999999996,0.053009600000000004,0.061341,0.0702605,0.09076769999999999,0.1206732,0.12893380000000002,0.1364821,0.147671,0.1656109,0.1792798,0.19248780000000001,0.1304829,0.1100595,0.0744708,0.0626966,0.0609073,0.0414881,0.0390309,0.0446444,0.05462399999999999,0.06530820000000001,0.08995739999999999,0.1028683,0.11122510000000001,0.1030302,0.10066539999999999,0.1087072,0.1305575,0.1209811,0.1496986,0.1645937,0.1747445,0.18346679999999999,0.16061319999999998,0.1677313,0.1689165,0.1429493,0.1383632,0.13913899999999998,0.1399107,0.1407705,0.143309,0.1515712,0.1523379,0.15865089999999998,0.1472829,0.165488,0.17217469999999999,0.16082380000000002,0.176646,0.1960277,0.2088569,0.20501529999999998,0.1864717,0.1866516,0.13926670000000002,0.1242648,0.11666380000000001,0.13422019999999998,0.1249117,0.1119357,0.12620309999999998,0.11360730000000001,0.10356590000000002,0.1031905,0.0783763,0.0871873,0.0789922,0.09725639999999999,0.1061067,0.1165398,0.098114,0.0946539,0.11602760000000001,0.1633252,0.15538970000000002,0.15643970000000001,0.1646338,0.17001470000000002,0.15908150000000001,0.1542825,0.1732241,0.17590730000000002,0.135785,0.1350755,0.14032119999999998,0.1670653,0.1688815,0.1439295,0.14934229999999998,0.1549295,0.1339981,0.0878561,0.068498,0.0910137,0.12008509999999999,0.1219363,0.1193031,0.1081462,0.11743410000000001,0.0900954,0.0981187,0.0573155,0.0624185,0.0741344,0.0762273,0.0820564,0.0650761,0.0597036,0.0721087,0.0764722,0.0854129,0.08478909999999999,0.0977391,0.0714774,0.0643659,0.093406,0.1104395,0.1114568,0.11280380000000001,0.12022649999999999,0.0832198,0.101193,0.1250996,0.1351648,0.1845821,0.2104852,0.20346769999999997,0.19169419999999998,1.2098536,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.0273083,0.0377532,0.0219605,0.058357099999999995,0.047684199999999996,0.039577,0.0228264,0.0338668,0.0240846,0.0153329,0.0081446,0.0044188,0.0026704,0.0148613,0.028179,0.0164857,0.0134193,0.0122112,0.022912,0.025778600000000002,0.0694756,0.0767712,0.0955824,0.1125567,0.08171690000000001,0.0764387,0.0877422,0.0753743,0.0647093,0.0698469,0.07267850000000001,0.078824,0.0834638,0.08442340000000001,0.0703328,0.0606422,0.0756887,0.0758648,0.0841933,0.1102171,0.139756,0.1617767,0.2071227,0.1816375,0.1588657,0.15901490000000001,0.1634418,0.1784481,0.1582965,0.1482289,0.13078099999999998,0.12074510000000001,0.123367,0.07740280000000001,0.026834000000000004,0.060163900000000006,0.07839840000000001,0.0704551,0.090351,0.0924248,0.10763819999999999,0.1442712,0.12827519999999998,0.14255089999999998,0.1617789,0.19461610000000001,0.23190550000000001,0.27371,0.2663621,0.2326749,0.21660870000000002,0.20844079999999998,0.1848569,0.1697796,0.15291870000000002,0.15245340000000002,0.1544673,0.1354515,0.11084989999999999,0.09279659999999999,0.12298519999999999,0.1591217,0.1850044,0.1379722,0.080741,0.10869359999999999,0.11142840000000001,0.1546999,0.2545961,0.2457939,0.2652843,0.32941729999999997,0.3602751,0.2608047,0.170532,0.1368979,0.1437679,0.1407485,0.1145067,0.12978499999999998,0.142191,0.12462409999999999,0.1352414,0.1480679,0.11035410000000001,0.1521601,0.1583707,0.1756442,0.1761654,0.19493270000000001,0.18431519999999998,0.2118096,0.2162253,0.12259260000000001,0.1613067,0.1732743,0.1807023,0.1707506,0.1538213,0.1398763,0.1559493,0.1855365,0.1733458,0.1695053,0.1838025,0.191772,0.1784209,0.16368,0.1525839,0.11834059999999999,0.16876059999999998,0.168737,0.2050611,0.2330408,0.24269210000000002,0.2445402,0.2385421,0.2474365,0.2113684,0.2017388,0.2146661,0.273843,0.3629728,0.3379871,0.30959949999999997,0.23030179999999997,0.22883610000000001,0.1605512,0.1979356,0.1598812,0.1482692,0.15366839999999998,0.1675856,0.1891778,0.1748371,0.2147012,0.2206752,0.2548682,0.2272768,0.2402311,0.1876069,0.1220488,0.18258259999999998,0.0569956,0.0598888,0.07000100000000001,0.07324549999999999,0.1697477,0.174133,0.1438022,0.1813353,0.1771572,0.14573529999999998,0.12971649999999998,0.1544938,0.1318929,0.0837206,0.1365306,0.1326984,0.11053740000000001,0.1193668,0.1292111,0.1566017,0.1819733,0.2343101,0.20808759999999998,0.1461697],\"yaxis\":\"y\",\"type\":\"scattergl\"}],                        {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"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\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"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\":{\"outlinewidth\":0,\"ticks\":\"\"},\"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\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"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\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"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\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"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\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"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\"]],\"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\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Time\"}},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"\\u00b5g/m3 (equivalent black carbon)\"}},\"legend\":{\"title\":{\"text\":\"Calculated at 652.0 nm:\"},\"tracegroupgap\":0},\"margin\":{\"t\":60},\"font\":{\"family\":\"Courier New, monospace\",\"size\":12,\"color\":\"RebeccaPurple\"},\"title\":{\"text\":\"Ground based in situ observations of filter_absorption_photometer at BEO Moussala (BG0001R)\"}},                        {\"responsive\": true}                    ).then(function(){\n",
       "                            \n",
       "var gd = document.getElementById('1829eb83-b616-4a78-a3fc-583deb150f5c');\n",
       "var x = new MutationObserver(function (mutations, observer) {{\n",
       "        var display = window.getComputedStyle(gd).display;\n",
       "        if (!display || display === 'none') {{\n",
       "            console.log([gd, 'removed!']);\n",
       "            Plotly.purge(gd);\n",
       "            observer.disconnect();\n",
       "        }}\n",
       "}});\n",
       "\n",
       "// Listen for the removal of the full notebook cells\n",
       "var notebookContainer = gd.closest('#notebook-container');\n",
       "if (notebookContainer) {{\n",
       "    x.observe(notebookContainer, {childList: true});\n",
       "}}\n",
       "\n",
       "// Listen for the clearing of the current output cell\n",
       "var outputEl = gd.closest('.output');\n",
       "if (outputEl) {{\n",
       "    x.observe(outputEl, {childList: true});\n",
       "}}\n",
       "\n",
       "                        })                };                });            </script>        </div>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# Convert xarray's DataArray to pandas DataFrame and plot data.\n",
    "df_eBC = ds_eBC.to_dataframe()\n",
    "\n",
    "fig = px.line(df_eBC.eBC)\n",
    "\n",
    "\n",
    "fig.update_layout(\n",
    "    title=\"{0}\".format(ds_xr.title),\n",
    "    xaxis_title=\"Time\",\n",
    "    yaxis_title=\"µg/m3 (equivalent black carbon)\",\n",
    "    font=dict(\n",
    "        family=\"Courier New, monospace\",\n",
    "        size=12,\n",
    "        color=\"RebeccaPurple\"\n",
    "    ),\n",
    "    legend=dict(\n",
    "        title='Calculated at {0} nm:'.format(closest_wavelength)\n",
    "    )\n",
    ")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 61,
   "id": "8d6de3c9",
   "metadata": {},
   "outputs": [],
   "source": [
    "# resample to daily and monthly mean values\n",
    "df_day = df_eBC.eBC.resample('D').mean()\n",
    "df_month = df_eBC.eBC.resample('M').mean()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 62,
   "id": "fa40b1ac",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2023-06-25 00:00:00 , eBC = 0.148638 µg/m3\n"
     ]
    }
   ],
   "source": [
    "daily_mean = df_day.iloc[-1:].to_dict()\n",
    "\n",
    "# create variables for daily mean\n",
    "sample_date_daily_mean = list(daily_mean.keys())[0]\n",
    "sample_value_daily_mean = round(list(daily_mean.values())[0],6)\n",
    "print(sample_date_daily_mean,', eBC =', sample_value_daily_mean, 'µg/m3')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 63,
   "id": "ca577629",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "May , eBC = 0.089523 µg/m3\n"
     ]
    }
   ],
   "source": [
    "monthly_mean = df_month.iloc[-2:-1].to_dict()\n",
    "\n",
    "# create variables for monthly mean\n",
    "sample_date_monthly_mean = list(monthly_mean.keys())[0]\n",
    "sample_value_monthly_mean = round(list(monthly_mean.values())[0],6)\n",
    "print(sample_date_monthly_mean.month_name(),', eBC =', sample_value_monthly_mean, 'µg/m3')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 69,
   "id": "34d866c7",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "May\n",
      "March - May , eBC = 0.080031 µg/m3\n"
     ]
    }
   ],
   "source": [
    "last3months = statistics.mean(list(df_month.to_dict().values())[0:3])\n",
    "\n",
    "# create variables for daily mean\n",
    "sample_date_last3months_mean = list(df_month.to_dict().keys())\n",
    "sample_value_last3months_mean = round(last3months,6)\n",
    "\n",
    "sample_date_last3months_mean = \"{0} - {1}\".format(sample_date_last3months_mean[0].month_name(),sample_date_last3months_mean[2].month_name())\n",
    "\n",
    "print(sample_date_last3months_mean,', eBC =', sample_value_last3months_mean, 'µg/m3')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "ba4eefcb",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f5f9ba21",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.9.12"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}