{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "f9cba29c",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2025-06-21T16:28:51.817987Z",
     "iopub.status.busy": "2025-06-21T16:28:51.817577Z",
     "iopub.status.idle": "2025-06-21T16:28:52.703358Z",
     "shell.execute_reply": "2025-06-21T16:28:52.702453Z"
    }
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>index</th>\n",
       "      <th>station_id</th>\n",
       "      <th>name</th>\n",
       "      <th>status</th>\n",
       "      <th>latitude</th>\n",
       "      <th>longitude</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>0</td>\n",
       "      <td>31620</td>\n",
       "      <td>5th &amp; F St NW</td>\n",
       "      <td>open</td>\n",
       "      <td>38.897637</td>\n",
       "      <td>-77.018126</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>1</td>\n",
       "      <td>31105</td>\n",
       "      <td>14th &amp; Harvard St NW</td>\n",
       "      <td>open</td>\n",
       "      <td>38.926638</td>\n",
       "      <td>-77.032126</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>2</td>\n",
       "      <td>31400</td>\n",
       "      <td>Georgia &amp; New Hampshire Ave NW</td>\n",
       "      <td>closed</td>\n",
       "      <td>38.935638</td>\n",
       "      <td>-77.024126</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>3</td>\n",
       "      <td>31111</td>\n",
       "      <td>10th &amp; U St NW</td>\n",
       "      <td>open</td>\n",
       "      <td>38.917638</td>\n",
       "      <td>-77.025126</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>4</td>\n",
       "      <td>31104</td>\n",
       "      <td>Adams Mill &amp; Columbia Rd NW</td>\n",
       "      <td>open</td>\n",
       "      <td>38.922638</td>\n",
       "      <td>-77.042126</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "   index  station_id                            name  status   latitude  \\\n",
       "0      0       31620                   5th & F St NW    open  38.897637   \n",
       "1      1       31105            14th & Harvard St NW    open  38.926638   \n",
       "2      2       31400  Georgia & New Hampshire Ave NW  closed  38.935638   \n",
       "3      3       31111                  10th & U St NW    open  38.917638   \n",
       "4      4       31104     Adams Mill & Columbia Rd NW    open  38.922638   \n",
       "\n",
       "   longitude  \n",
       "0 -77.018126  \n",
       "1 -77.032126  \n",
       "2 -77.024126  \n",
       "3 -77.025126  \n",
       "4 -77.042126  "
      ]
     },
     "execution_count": 1,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "import pandas as pd\n",
    "stations = pd.read_sql_query(\"\"\"select * from bikeshare_stations where latitude is not NULL\"\"\",'sqlite:///_static/bikeshare.db')\n",
    "stations.head()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "0e7acbb1",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2025-06-21T16:28:52.707660Z",
     "iopub.status.busy": "2025-06-21T16:28:52.707188Z",
     "iopub.status.idle": "2025-06-21T16:28:52.786825Z",
     "shell.execute_reply": "2025-06-21T16:28:52.786062Z"
    }
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>station_id</th>\n",
       "      <th>name</th>\n",
       "      <th>status</th>\n",
       "      <th>latitude</th>\n",
       "      <th>longitude</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>31620</td>\n",
       "      <td>5th &amp; F St NW</td>\n",
       "      <td>open</td>\n",
       "      <td>38.896301</td>\n",
       "      <td>-77.027463</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>31105</td>\n",
       "      <td>14th &amp; Harvard St NW</td>\n",
       "      <td>open</td>\n",
       "      <td>38.926571</td>\n",
       "      <td>-77.032414</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>31400</td>\n",
       "      <td>Georgia &amp; New Hampshire Ave NW</td>\n",
       "      <td>open</td>\n",
       "      <td>39.221500</td>\n",
       "      <td>-77.059858</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>31111</td>\n",
       "      <td>10th &amp; U St NW</td>\n",
       "      <td>open</td>\n",
       "      <td>38.916804</td>\n",
       "      <td>-77.026235</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>31104</td>\n",
       "      <td>Adams Mill &amp; Columbia Rd NW</td>\n",
       "      <td>open</td>\n",
       "      <td>38.922680</td>\n",
       "      <td>-77.042667</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "   station_id                            name status   latitude  longitude\n",
       "0       31620                   5th & F St NW   open  38.896301 -77.027463\n",
       "1       31105            14th & Harvard St NW   open  38.926571 -77.032414\n",
       "2       31400  Georgia & New Hampshire Ave NW   open  39.221500 -77.059858\n",
       "3       31111                  10th & U St NW   open  38.916804 -77.026235\n",
       "4       31104     Adams Mill & Columbia Rd NW   open  38.922680 -77.042667"
      ]
     },
     "execution_count": 2,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "import pandas as pd\n",
    "\n",
    "stations = pd.read_csv(\"https://runestone.academy/ns/books/published/httlads/_static/bikeshare_stations.csv\")\n",
    "stations.head()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "941e62dc",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2025-06-21T16:28:52.790654Z",
     "iopub.status.busy": "2025-06-21T16:28:52.789843Z",
     "iopub.status.idle": "2025-06-21T16:28:53.321247Z",
     "shell.execute_reply": "2025-06-21T16:28:53.318655Z"
    }
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "62167a62c308434d8548778f0fbc25c3",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Map(center=[38.9072, -77.0369], controls=(ZoomControl(options=['position', 'zoom_in_text', 'zoom_in_title', 'z…"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "from ipyleaflet import Map, Marker, Icon, CircleMarker\n",
    "\n",
    "locations = list(zip(stations.latitude, stations.longitude))\n",
    "dc_center = (38.9072, -77.0369)\n",
    "\n",
    "dcmap = Map(center=dc_center, zoom=12)\n",
    "for loc in locations:\n",
    "    marker = CircleMarker(location=loc, radius=2)\n",
    "    dcmap.add_layer(marker)\n",
    "\n",
    "dcmap"
   ]
  }
 ],
 "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.11.9"
  },
  "widgets": {
   "application/vnd.jupyter.widget-state+json": {
    "state": {
     "005b086cbc2d4d8084dae91e96673ee5": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8659948,
        -77.06281469999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "00a7295c78f14a1693f78bfa6255fad9": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9226795,
        -77.0426674
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "02a86d94db314559963875333dd7ff07": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.88138060000001,
        -77.0364536
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "02c9ddadc8b6485f8011fbb0df25d367": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9026397,
        -77.05140279999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "03afa0c02e5c43c28eaab1c5f6c9c203": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8577228,
        -77.0590548
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "03eff27cd386420fa9ece4e3f55fedbe": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8973304,
        -77.0091024
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "049a71c691ef43ac941c4b018358202a": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.89912959999999,
        -76.9467801
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "06bbce0c96b44951ae75c688f38a8a5c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8622178,
        -76.9951881
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "08c76c32f4d849cb9fea013e249e2ec6": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.886016,
        -77.01732
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "08f771a1463d4822890394aec0a53150": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.89912959999999,
        -76.9467801
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "0a92a0c75fd94e229c8275ee1f33be0e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        39.294017,
        -76.589202
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "0ac89e8e0f3147a8b828e4bc33e76ace": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8855388,
        -77.0060672
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "0d31450618484e0a99cd761a0866a0c3": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9001948,
        -77.0300858
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "0f4fef2867c8494f90dcd8068ddc4c08": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8856556,
        -77.0974106
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "102b5764ba1a43a7a13b6c29bd7711ec": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8872177,
        -77.0950173
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "10620c63fd894bbdb2c0a791e43153ed": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8897874,
        -76.9898913
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "12d864f3624b40a6abe7391a7e2ad697": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8968111,
        -77.0864445
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "13170c7b12c942ee86aaad4a4c00f755": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8140201,
        -77.0537762
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "14aade876a3d466eadcea02478acdedc": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.89833,
        -77.0320047
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "154fccf5dd7d487aa947d8fd30efe1f4": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9265708,
        -77.0324139
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "15ad0f51490b4133a947672d99c22363": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.88194,
        -77.11174
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "17c207f6ab454cfabb6a4759f8ae4b20": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.88919870000001,
        -77.0917965
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "1b6fcdca497442ec9ca78fbbbb883543": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9030397,
        -77.0581263
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "1bc5e20c61d4415982df79cdaeef269e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9275494,
        -77.04253299999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "1da48ba6030e4e3fa510124bad03ac4b": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8780992,
        -77.0079619
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "1faf5dec3f744a0db1315f6e1252eb12": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.89604509999999,
        -77.0784652
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "235047ba017c4e8489441bc24b622001": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.88441479999999,
        -77.1006433
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "2437aa5f7b974a289f107b81c3c8454b": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.89210370000001,
        -77.02596129999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "24bedc6cf3c54e2e9dcdfef8dda856e4": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8947509,
        -77.0727223
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "268bebaec9bb4b3f93c4ef6f5ad311f8": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8893999,
        -76.9798618
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "294f897603f34a46b8a4335c963b694c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9023127,
        -77.01832519999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "2aec96f2e41f49d9b5f17f1024d5c604": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletZoomControlModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletZoomControlModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletZoomControlView",
       "options": [
        "position",
        "zoom_in_text",
        "zoom_in_title",
        "zoom_out_text",
        "zoom_out_title"
       ],
       "position": "topleft",
       "zoom_in_text": "+",
       "zoom_in_title": "Zoom in",
       "zoom_out_text": "-",
       "zoom_out_title": "Zoom out"
      }
     },
     "2c86cac816ba4529a7c59ee41ea7bb61": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8901328,
        -76.9442518
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "30464c595cce4587b540affca3722eaf": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.899173,
        -77.031818
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "3337c2ae1f974024b16db3058cd62acf": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9030409,
        -77.0466454
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "3508a535494f472d9ddd9d8b9b55e06c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8112911,
        -77.0501472
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "360382ceecda4dc191e00479c18a7e42": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.88950699999999,
        -77.0776458
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "3825b49716dd4c04b7fd50b847715cdc": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9151073,
        -77.044913
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "3856b84279ff498da30971daf18f51bb": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.924806,
        -77.02261200000001
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "38ae26467a1e443cb427bb64654444ae": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9036794,
        -77.0532984
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "3b260422365e44f7a188b7461592b72f": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8933798,
        -77.0861211
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "3dd319f370c246698736f42c31ed20e6": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletMapStyleModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletMapStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "cursor": "grab"
      }
     },
     "3e1af69700bf4ee3ac092b1a9d7d0b85": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9296718,
        -77.02774149999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "416d7c0ead1a49b1818cc5e2f3cdb696": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8851334,
        -77.00231910000001
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "43b682b69aa645ada1c6a3d56041f56d": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.899814,
        -77.022948
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "469a82ea452d4c2c830b360da4ba0c60": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.886588,
        -76.9964451
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "47da28bfdde343cbbd3cb4419c5ddb34": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletMapStyleModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletMapStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "cursor": "move"
      }
     },
     "4857d7d0bc844bb1a5c80f37a6138fd4": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.86405389999999,
        -77.06038029999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4a626d77db6943978b428752e29d1180": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.922672,
        -77.078913
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4c023d4e10d14b6884c5ea1e5b8d13ab": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8450186,
        -76.9877334
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4c42a3f1310e43b4806e8729d5ceef07": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9340854,
        -77.0576414
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4d133194555b43ce87988da48b5c77ff": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8943989,
        -77.0300249
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4d607b3d220a44d5a73a3b15e75c1fe7": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9026383,
        -77.0385079
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4d64dd4d68ea4d47a9ed30299479f8ea": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9073207,
        -77.0032796
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4d7e7a097200403dbcf3cfff8fd05bc5": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8988663,
        -77.03367899999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4e46cbd2c4e9422fb4a1c231dc4a8ee5": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9126061,
        -77.0319494
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "4e4ef954040447cc8f35a15be28f2c79": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9009124,
        -77.01477229999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "50b7fc966942446dbbb3561fd5173bc6": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9311391,
        -77.0382492
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "538fe6239aa14068bf70271f58d68877": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9297465,
        -77.05549839999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "540a74ceb2574fd5b6578849b5d38452": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9079223,
        -77.0354926
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "54a9b04e11874fa9a906cb644280ab95": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletMapStyleModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletMapStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "cursor": "grab"
      }
     },
     "55ced6971467454ca01361d59a7ac3fd": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.876596,
        -77.004772
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "586e24e875834c3697a73c3a28012b2a": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.901629,
        -77.0465783
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "58c276114f9c4a18b80b544ad25e153c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9088354,
        -77.0319462
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "5923b8c3ee5f4c89943d53d824d0adba": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9322202,
        -77.0725966
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "59853889f2624b43b2ab1da3375109b0": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.894731,
        -76.988576
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "5a45548f17d147f09182d300e300abb1": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.936847,
        -77.032639
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "5aab702f45cb45ee9a3418828f137085": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8106028,
        -77.044629
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "5ac5bc39bfe64781b91e9e9c0cab328f": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8638871,
        -76.950623
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "5ad11ff117d04df39c3d4a26b612c1ea": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8782532,
        -77.0057589
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "5b8d64688cce484e9d1c8a89208276dd": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9037429,
        -77.04489319999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "5c7f02f5feea4e30a55981835ef980ee": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.90031099999999,
        -76.991345
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "5f443bca3ab249b0b6d7755381cb4f09": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        39.2214999,
        -77.0598581
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "603ee0b4eb374037b79c260b7904b17e": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "60cbfa49971e437c9b06769b8cee6a82": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8863705,
        -77.0452107
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "62167a62c308434d8548778f0fbc25c3": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletMapModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletMapModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletMapView",
       "bottom": 0.0,
       "bounce_at_zoom_limits": true,
       "box_zoom": true,
       "center": [
        38.9072,
        -77.0369
       ],
       "close_popup_on_click": true,
       "controls": [
        "IPY_MODEL_2aec96f2e41f49d9b5f17f1024d5c604",
        "IPY_MODEL_971973c66ab04c3a9348b91c8fb0076f"
       ],
       "crs": {
        "custom": false,
        "name": "EPSG3857"
       },
       "default_style": "IPY_MODEL_54a9b04e11874fa9a906cb644280ab95",
       "double_click_zoom": true,
       "dragging": true,
       "dragging_style": "IPY_MODEL_47da28bfdde343cbbd3cb4419c5ddb34",
       "east": 0.0,
       "fullscreen": false,
       "inertia": true,
       "inertia_deceleration": 3000,
       "inertia_max_speed": 1500,
       "interpolation": "bilinear",
       "keyboard": true,
       "keyboard_pan_offset": 80,
       "keyboard_zoom_offset": 1,
       "layers": [
        "IPY_MODEL_de208ca01bd14448b2b0c7172619854b",
        "IPY_MODEL_6acebff9dc7c4bee8674cb23a7a330a9",
        "IPY_MODEL_154fccf5dd7d487aa947d8fd30efe1f4",
        "IPY_MODEL_5f443bca3ab249b0b6d7755381cb4f09",
        "IPY_MODEL_c0c1e4fcf7b342a69b1e047fa9409292",
        "IPY_MODEL_00a7295c78f14a1693f78bfa6255fad9",
        "IPY_MODEL_b40dd0def4f74daab828ef77c330c9a5",
        "IPY_MODEL_58c276114f9c4a18b80b544ad25e153c",
        "IPY_MODEL_d628768c8a3544c8ab3aaf0ba7436567",
        "IPY_MODEL_6a74351aa9554485b3e110172d794aef",
        "IPY_MODEL_df1357c842e54e0eb172d9d1c51c376a",
        "IPY_MODEL_4e46cbd2c4e9422fb4a1c231dc4a8ee5",
        "IPY_MODEL_9d1f91c686ee45a39d804de368cf7891",
        "IPY_MODEL_ec828c796d3d4d4cb8e32edbd79dd56f",
        "IPY_MODEL_c263ca80a99f4e73b46bebe1f3e5110e",
        "IPY_MODEL_bc4ac4b50a464c29bd44a157499fee09",
        "IPY_MODEL_8128572d64e446c08c40e6e0606d4bb1",
        "IPY_MODEL_9376eec3481c484289493cc90971ca0a",
        "IPY_MODEL_8e76bb27c4b54ecc9982dc708cf506fb",
        "IPY_MODEL_4c42a3f1310e43b4806e8729d5ceef07",
        "IPY_MODEL_294f897603f34a46b8a4335c963b694c",
        "IPY_MODEL_bef1c89da57e4fea9a126a00e190d191",
        "IPY_MODEL_55ced6971467454ca01361d59a7ac3fd",
        "IPY_MODEL_f0d6cedd39bb405e909bf38ce68570a1",
        "IPY_MODEL_4d607b3d220a44d5a73a3b15e75c1fe7",
        "IPY_MODEL_dc3c82fe99004533a90f342249fc64b1",
        "IPY_MODEL_50b7fc966942446dbbb3561fd5173bc6",
        "IPY_MODEL_d8468709314a4fca9c4efa79f262c71b",
        "IPY_MODEL_7b025a5f6fd34d5191ce4f27cca0ec2d",
        "IPY_MODEL_b313188abb0b4687a50355008fe14584",
        "IPY_MODEL_f24e24a7b7604aecaf112a7b83ec22bb",
        "IPY_MODEL_d6fb2cd369644b8794545d9ca40529bf",
        "IPY_MODEL_3337c2ae1f974024b16db3058cd62acf",
        "IPY_MODEL_f0cbfa70dc294f26becb490f588c401b",
        "IPY_MODEL_a7a22f46dd3547098c51b3a4af1720fa",
        "IPY_MODEL_9879b22665124fdd9ccb0437e8b76435",
        "IPY_MODEL_62f1948d9a17453a8078302bd44fb1e9",
        "IPY_MODEL_b6c7a61cb2c64dc98f9af09a1ef8cc86",
        "IPY_MODEL_3825b49716dd4c04b7fd50b847715cdc",
        "IPY_MODEL_1bc5e20c61d4415982df79cdaeef269e",
        "IPY_MODEL_9f1246a1cc504daa98daf73143bcf3f1",
        "IPY_MODEL_3e1af69700bf4ee3ac092b1a9d7d0b85",
        "IPY_MODEL_10620c63fd894bbdb2c0a791e43153ed",
        "IPY_MODEL_bd0cc8a3bb3042c59f2ee807fdae6be0",
        "IPY_MODEL_9a60e8413c064d878088a695a951e204",
        "IPY_MODEL_59853889f2624b43b2ab1da3375109b0",
        "IPY_MODEL_43b682b69aa645ada1c6a3d56041f56d",
        "IPY_MODEL_03afa0c02e5c43c28eaab1c5f6c9c203",
        "IPY_MODEL_ebb634836547471789fe42e192df6232",
        "IPY_MODEL_005b086cbc2d4d8084dae91e96673ee5",
        "IPY_MODEL_fa7bbd3f6da34f7e8d5a5f2d7837f05e",
        "IPY_MODEL_0d31450618484e0a99cd761a0866a0c3",
        "IPY_MODEL_b096ff7f93ad438dbd4704ad673b5115",
        "IPY_MODEL_5a45548f17d147f09182d300e300abb1",
        "IPY_MODEL_8ad7bba347904c4ab673f40b95143aa7",
        "IPY_MODEL_38ae26467a1e443cb427bb64654444ae",
        "IPY_MODEL_8de3514c1ccb4811ac2c4957d871bfa4",
        "IPY_MODEL_80679618622540f4a258f558c141d51b",
        "IPY_MODEL_3856b84279ff498da30971daf18f51bb",
        "IPY_MODEL_6c6d0eba9fa64c0394f12e0121d9ac06",
        "IPY_MODEL_8f2ee7fbe20b45afb3d5c860f8b93d68",
        "IPY_MODEL_2437aa5f7b974a289f107b81c3c8454b",
        "IPY_MODEL_bbefa347a9c046aea84b54f031be0d29",
        "IPY_MODEL_efea991dcde84ecba6eb7a180c7676f5",
        "IPY_MODEL_f7bce29aa8db469aabd1f52a627aae3e",
        "IPY_MODEL_469a82ea452d4c2c830b360da4ba0c60",
        "IPY_MODEL_c67af15340c04d3c9e589786b972cde4",
        "IPY_MODEL_1b6fcdca497442ec9ca78fbbbb883543",
        "IPY_MODEL_5923b8c3ee5f4c89943d53d824d0adba",
        "IPY_MODEL_14aade876a3d466eadcea02478acdedc",
        "IPY_MODEL_fee32d68cf204cf7b9cf9ea8cffd30c7",
        "IPY_MODEL_4857d7d0bc844bb1a5c80f37a6138fd4",
        "IPY_MODEL_2c86cac816ba4529a7c59ee41ea7bb61",
        "IPY_MODEL_4e4ef954040447cc8f35a15be28f2c79",
        "IPY_MODEL_03eff27cd386420fa9ece4e3f55fedbe",
        "IPY_MODEL_6d7105c8c40842dabd93ccbdd48f7d27",
        "IPY_MODEL_f47d59fb9a2648e8890df180adfb83be",
        "IPY_MODEL_d896364c959940f78ff7f124d74d5384",
        "IPY_MODEL_75502da34b7e4acf8a738cd0dc609fb3",
        "IPY_MODEL_4d7e7a097200403dbcf3cfff8fd05bc5",
        "IPY_MODEL_7d5b1a8d147e4bc6b6ce408c8fb996cd",
        "IPY_MODEL_e80bd5f05b1b457db828c702d9931307",
        "IPY_MODEL_bc23cf561cdc48aba8fcef1775ab30c1",
        "IPY_MODEL_e21c95ea6d2141bda6278e60317d1fe5",
        "IPY_MODEL_b8f1c6bea78944b3b8c97037b89edd63",
        "IPY_MODEL_cfd722ab77aa4615a3896133126407af",
        "IPY_MODEL_30464c595cce4587b540affca3722eaf",
        "IPY_MODEL_a687ef03dc1a4dd0b6a52272e02fc399",
        "IPY_MODEL_6643c3ec4e234473ab499979ba53abee",
        "IPY_MODEL_a88de3d2840c421697f3436febd2b6a0",
        "IPY_MODEL_08f771a1463d4822890394aec0a53150",
        "IPY_MODEL_629c5fb515a540128552cee4686f9660",
        "IPY_MODEL_e2a96d5b62ae4e01af815eb170bbe3b0",
        "IPY_MODEL_cfdf701f5c9c44d886410d418a0e4518",
        "IPY_MODEL_268bebaec9bb4b3f93c4ef6f5ad311f8",
        "IPY_MODEL_a1dc8bbf325e4d4d9054058571476f77",
        "IPY_MODEL_e57d453e6acf4719b7f557471b70bd4b",
        "IPY_MODEL_9f1283f17c5d401db64a216617096328",
        "IPY_MODEL_8bb2d43c57b2480cb3a4bb53f4e76c9e",
        "IPY_MODEL_8635bd5ec52f41e4ad33e4860e135b1c",
        "IPY_MODEL_049a71c691ef43ac941c4b018358202a",
        "IPY_MODEL_a430afd37beb440ca90f655e0cb220de",
        "IPY_MODEL_06bbce0c96b44951ae75c688f38a8a5c",
        "IPY_MODEL_c071ac13ba2544d4a18317857f2d13b8",
        "IPY_MODEL_a1dff0e364aa421c9d870f7cd2c34225",
        "IPY_MODEL_812b0f2fd0034609ba825eed528d27ca",
        "IPY_MODEL_b42dc584018f4bac8a50e549b7f94b2e",
        "IPY_MODEL_ec5a6796c21f4a2da9a18e9991a4639d",
        "IPY_MODEL_7e02d7b0508445e5887727298f432290",
        "IPY_MODEL_b02d3fa0fb344bcfbb7135230dd1b721",
        "IPY_MODEL_8a9c975da43a47598d49a8fecf166998",
        "IPY_MODEL_b6f034e009434002b9c977d1aaa76db4",
        "IPY_MODEL_24bedc6cf3c54e2e9dcdfef8dda856e4",
        "IPY_MODEL_4d133194555b43ce87988da48b5c77ff",
        "IPY_MODEL_7089ea0211e945628195535613112c71",
        "IPY_MODEL_c07c43af43264010bbf2f8e3a1d4da54",
        "IPY_MODEL_fd96b2007bc4498691666b5d44a1d741",
        "IPY_MODEL_1da48ba6030e4e3fa510124bad03ac4b",
        "IPY_MODEL_ad0de4a94a0243e6a364de881bd8c279",
        "IPY_MODEL_5ac5bc39bfe64781b91e9e9c0cab328f",
        "IPY_MODEL_9fc8c2a5e282470084d612ff569c16c2",
        "IPY_MODEL_84e4c9d875d046a8a388ad1e8583b8ec",
        "IPY_MODEL_17c207f6ab454cfabb6a4759f8ae4b20",
        "IPY_MODEL_d1b9459279cc4bb9a27fb21e892f5678",
        "IPY_MODEL_d253f589ebe941ad89ae0c71e80eb57d",
        "IPY_MODEL_a0da795450a142f5870394a335fe5bdf",
        "IPY_MODEL_102b5764ba1a43a7a13b6c29bd7711ec",
        "IPY_MODEL_f218fa479cb94b79922143610e3b276c",
        "IPY_MODEL_d49515c3d7d4403a9464b6f48e2a4523",
        "IPY_MODEL_7f1ac7ed134b4e3597448d23b98d7c1c",
        "IPY_MODEL_416d7c0ead1a49b1818cc5e2f3cdb696",
        "IPY_MODEL_6840568b41c246df81596ebf2d6e028c",
        "IPY_MODEL_9578b27dba7a4b599c7c0ca5ec8e7041",
        "IPY_MODEL_540a74ceb2574fd5b6578849b5d38452",
        "IPY_MODEL_df6c6ec64ec5435d98c81d955a9b8bcd",
        "IPY_MODEL_fb37b2b791444fba99087e790cc4ae03",
        "IPY_MODEL_9cf35ca6601f4d5b883f38da02f02d15",
        "IPY_MODEL_5c7f02f5feea4e30a55981835ef980ee",
        "IPY_MODEL_8ec8bb2e5954422c86db69d2020e3455",
        "IPY_MODEL_d9efaaf8da7f4ad0aebd63d64995d022",
        "IPY_MODEL_538fe6239aa14068bf70271f58d68877",
        "IPY_MODEL_a9a1e5ed31e14fb1ad11cf52035ce6c6",
        "IPY_MODEL_d4716b94e2ac487aafff4c1487e89b4e",
        "IPY_MODEL_cf9fe4d3a6284d4e89a8b14379542a85",
        "IPY_MODEL_4c023d4e10d14b6884c5ea1e5b8d13ab",
        "IPY_MODEL_08c76c32f4d849cb9fea013e249e2ec6",
        "IPY_MODEL_5ad11ff117d04df39c3d4a26b612c1ea",
        "IPY_MODEL_4a626d77db6943978b428752e29d1180",
        "IPY_MODEL_7658f7e4626a4de891ca0480182324ca",
        "IPY_MODEL_951c0857fd0c402fb91ca1caeaf239b1",
        "IPY_MODEL_84f968a5ef5b438cab9558ad052ddecb",
        "IPY_MODEL_fbd47536e2b643889aa3684f87612760",
        "IPY_MODEL_b92312d52df64c9f86f427199ca65e5f",
        "IPY_MODEL_ff016e6dfa0c4a638ba9ad299b01a1ff",
        "IPY_MODEL_60cbfa49971e437c9b06769b8cee6a82",
        "IPY_MODEL_f49460f996e54e3cbf741664fb8cfc07",
        "IPY_MODEL_fab163d165dc4d079d6fa7db619ba602",
        "IPY_MODEL_12d864f3624b40a6abe7391a7e2ad697",
        "IPY_MODEL_1faf5dec3f744a0db1315f6e1252eb12",
        "IPY_MODEL_3b260422365e44f7a188b7461592b72f",
        "IPY_MODEL_fc810ce1f0cf48c7bfa3a1dd8f011213",
        "IPY_MODEL_ac425504d89d48b2b60e37531c76be8e",
        "IPY_MODEL_806d4e86744642ecafad563e36b4b4b5",
        "IPY_MODEL_0f4fef2867c8494f90dcd8068ddc4c08",
        "IPY_MODEL_bb5644e0b22d4ddcb2eccb9a1081f356",
        "IPY_MODEL_86107d74ef0f42cb9c487200216cda92",
        "IPY_MODEL_15ad0f51490b4133a947672d99c22363",
        "IPY_MODEL_99ef275063a14439bae5614ddbc2cfd8",
        "IPY_MODEL_da956c516b134685a1753fe00b4857a7",
        "IPY_MODEL_02a86d94db314559963875333dd7ff07",
        "IPY_MODEL_b784186cd6da49f399ef16ef2f228479",
        "IPY_MODEL_71116301e7da459292d3c2f5298c2a3e",
        "IPY_MODEL_a762d0a07d8a408fb232aec55e3b8e64",
        "IPY_MODEL_235047ba017c4e8489441bc24b622001",
        "IPY_MODEL_5b8d64688cce484e9d1c8a89208276dd",
        "IPY_MODEL_690d14b146464a99bebf23ef5aaa551b",
        "IPY_MODEL_ed992d5a5c1f47bd8a82f8c88df8021a",
        "IPY_MODEL_586e24e875834c3697a73c3a28012b2a",
        "IPY_MODEL_bf5f95f957a442ad8d45f8a7c9b8acbd",
        "IPY_MODEL_02c9ddadc8b6485f8011fbb0df25d367",
        "IPY_MODEL_4d64dd4d68ea4d47a9ed30299479f8ea",
        "IPY_MODEL_67f601cf16b244339e79716f7ba33492",
        "IPY_MODEL_ae228cbc496e410db69253e8bfb2ea16",
        "IPY_MODEL_7edbf4fb08e547c89fb47761c314eff3",
        "IPY_MODEL_ebf9e35950004a4793abc0555ef5e06d",
        "IPY_MODEL_f4800589324f45af85e273bcbaa132c7",
        "IPY_MODEL_13170c7b12c942ee86aaad4a4c00f755",
        "IPY_MODEL_0ac89e8e0f3147a8b828e4bc33e76ace",
        "IPY_MODEL_0a92a0c75fd94e229c8275ee1f33be0e",
        "IPY_MODEL_5aab702f45cb45ee9a3418828f137085",
        "IPY_MODEL_8a589e5c6c294b21857f4e3651d94550",
        "IPY_MODEL_3508a535494f472d9ddd9d8b9b55e06c",
        "IPY_MODEL_360382ceecda4dc191e00479c18a7e42",
        "IPY_MODEL_d493a016d5154ec2a2da0cc301b2829c",
        "IPY_MODEL_ee33118e1e9a4c5bb5b5340ad645b5ce"
       ],
       "layout": "IPY_MODEL_603ee0b4eb374037b79c260b7904b17e",
       "left": 9007199254740991.0,
       "max_zoom": null,
       "min_zoom": null,
       "modisdate": "2025-06-20",
       "north": 0.0,
       "options": [
        "bounce_at_zoom_limits",
        "box_zoom",
        "center",
        "close_popup_on_click",
        "double_click_zoom",
        "dragging",
        "fullscreen",
        "inertia",
        "inertia_deceleration",
        "inertia_max_speed",
        "interpolation",
        "keyboard",
        "keyboard_pan_offset",
        "keyboard_zoom_offset",
        "max_zoom",
        "min_zoom",
        "prefer_canvas",
        "scroll_wheel_zoom",
        "tap",
        "tap_tolerance",
        "touch_zoom",
        "world_copy_jump",
        "zoom",
        "zoom_animation_threshold",
        "zoom_delta",
        "zoom_snap"
       ],
       "panes": {},
       "prefer_canvas": false,
       "right": 0.0,
       "scroll_wheel_zoom": false,
       "south": 0.0,
       "style": "IPY_MODEL_3dd319f370c246698736f42c31ed20e6",
       "tabbable": null,
       "tap": true,
       "tap_tolerance": 15,
       "tooltip": null,
       "top": 9007199254740991.0,
       "touch_zoom": true,
       "west": 0.0,
       "window_url": "",
       "world_copy_jump": false,
       "zoom": 12.0,
       "zoom_animation_threshold": 4,
       "zoom_delta": 1.0,
       "zoom_snap": 1.0
      }
     },
     "629c5fb515a540128552cee4686f9660": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9111223,
        -77.0047933
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "62f1948d9a17453a8078302bd44fb1e9": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.909475,
        -77.0426854
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "6643c3ec4e234473ab499979ba53abee": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.93250380000001,
        -76.9929586
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "67f601cf16b244339e79716f7ba33492": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.896835,
        -77.0262939
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "6840568b41c246df81596ebf2d6e028c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8904029,
        -77.0886921
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "690d14b146464a99bebf23ef5aaa551b": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9037394,
        -77.0280934
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "6a74351aa9554485b3e110172d794aef": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9445754,
        -77.0635471
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "6acebff9dc7c4bee8674cb23a7a330a9": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8963014,
        -77.02746320000001
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "6c6d0eba9fa64c0394f12e0121d9ac06": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8561135,
        -77.04932090000001
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "6d7105c8c40842dabd93ccbdd48f7d27": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9232654,
        -77.04734429999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "7089ea0211e945628195535613112c71": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9019574,
        -77.0389955
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "71116301e7da459292d3c2f5298c2a3e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.88363560000001,
        -77.1164088
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "75502da34b7e4acf8a738cd0dc609fb3": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8921101,
        -77.0434861
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "7658f7e4626a4de891ca0480182324ca": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9087731,
        -77.0447816
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "7b025a5f6fd34d5191ce4f27cca0ec2d": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.895809,
        -76.920011
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "7d5b1a8d147e4bc6b6ce408c8fb996cd": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8949212,
        -77.0461794
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "7e02d7b0508445e5887727298f432290": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8973435,
        -77.02704659999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "7edbf4fb08e547c89fb47761c314eff3": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8819737,
        -77.12895759999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "7f1ac7ed134b4e3597448d23b98d7c1c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9124112,
        -77.02254719999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "80679618622540f4a258f558c141d51b": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9335106,
        -76.99533370000002
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "806d4e86744642ecafad563e36b4b4b5": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8505757,
        -77.1020507
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8128572d64e446c08c40e6e0606d4bb1": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.934356,
        -77.072569
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "812b0f2fd0034609ba825eed528d27ca": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8599562,
        -77.0535692
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "84e4c9d875d046a8a388ad1e8583b8ec": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8915558,
        -77.0848664
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "84f968a5ef5b438cab9558ad052ddecb": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.88249,
        -77.10289999999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "86107d74ef0f42cb9c487200216cda92": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8761508,
        -77.1082808
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8635bd5ec52f41e4ad33e4860e135b1c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.86598050000001,
        -76.9785383
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8a589e5c6c294b21857f4e3651d94550": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.805462,
        -77.05045299999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8a9c975da43a47598d49a8fecf166998": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8934465,
        -77.07658719999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8ad7bba347904c4ab673f40b95143aa7": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9001075,
        -77.00248669999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8bb2d43c57b2480cb3a4bb53f4e76c9e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9018903,
        -76.9426423
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8de3514c1ccb4811ac2c4957d871bfa4": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8841038,
        -76.9855178
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8e76bb27c4b54ecc9982dc708cf506fb": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.905645,
        -77.0058775
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8ec8bb2e5954422c86db69d2020e3455": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9177788,
        -77.04042179999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "8f2ee7fbe20b45afb3d5c860f8b93d68": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8428468,
        -77.05014419999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "9376eec3481c484289493cc90971ca0a": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.91558029999999,
        -77.0378968
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "951c0857fd0c402fb91ca1caeaf239b1": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9287786,
        -77.01432109999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "9578b27dba7a4b599c7c0ca5ec8e7041": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8847743,
        -77.0172452
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "971973c66ab04c3a9348b91c8fb0076f": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletAttributionControlModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletAttributionControlModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletAttributionControlView",
       "options": [
        "position",
        "prefix"
       ],
       "position": "bottomright",
       "prefix": "ipyleaflet"
      }
     },
     "9879b22665124fdd9ccb0437e8b76435": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.896995,
        -77.006384
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "99ef275063a14439bae5614ddbc2cfd8": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8782629,
        -77.120814
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "9a60e8413c064d878088a695a951e204": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8847743,
        -77.0172452
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "9cf35ca6601f4d5b883f38da02f02d15": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.900491,
        -76.998424
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "9d1f91c686ee45a39d804de368cf7891": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9049858,
        -77.0636523
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "9f1246a1cc504daa98daf73143bcf3f1": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9118701,
        -77.0384855
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "9f1283f17c5d401db64a216617096328": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.933526,
        -76.991079
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "9fc8c2a5e282470084d612ff569c16c2": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.891977,
        -77.04686199999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a0da795450a142f5870394a335fe5bdf": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9053664,
        -77.0321538
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a1dc8bbf325e4d4d9054058571476f77": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9000824,
        -76.9834855
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a1dff0e364aa421c9d870f7cd2c34225": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.905637,
        -77.027041
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a430afd37beb440ca90f655e0cb220de": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8674403,
        -76.9886086
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a687ef03dc1a4dd0b6a52272e02fc399": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9479287,
        -77.0796836
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a762d0a07d8a408fb232aec55e3b8e64": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8798836,
        -77.10754829999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a7a22f46dd3547098c51b3a4af1720fa": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8755355,
        -76.9751914
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a88de3d2840c421697f3436febd2b6a0": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8601073,
        -77.0493393
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "a9a1e5ed31e14fb1ad11cf52035ce6c6": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8903895,
        -76.9374473
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ac425504d89d48b2b60e37531c76be8e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8898671,
        -77.08028639999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ad0de4a94a0243e6a364de881bd8c279": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8699713,
        -76.96021019999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ae228cbc496e410db69253e8bfb2ea16": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9007023,
        -77.0488331
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b02d3fa0fb344bcfbb7135230dd1b721": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.896862,
        -77.07240709999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b096ff7f93ad438dbd4704ad673b5115": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9184088,
        -77.0697591
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b313188abb0b4687a50355008fe14584": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9037466,
        -77.04345769999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b40dd0def4f74daab828ef77c330c9a5": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8851334,
        -77.00231910000001
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b42dc584018f4bac8a50e549b7f94b2e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8785406,
        -76.9611286
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b6c7a61cb2c64dc98f9af09a1ef8cc86": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.854575,
        -77.0493561
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b6f034e009434002b9c977d1aaa76db4": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.891716,
        -77.079128
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b784186cd6da49f399ef16ef2f228479": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.866775,
        -76.985128
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b8f1c6bea78944b3b8c97037b89edd63": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.850898,
        -77.051842
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "b92312d52df64c9f86f427199ca65e5f": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8947906,
        -76.9964668
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "bb5644e0b22d4ddcb2eccb9a1081f356": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8824796,
        -77.1094619
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "bbefa347a9c046aea84b54f031be0d29": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8869701,
        -77.030788
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "bc23cf561cdc48aba8fcef1775ab30c1": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.915761,
        -77.06779499999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "bc4ac4b50a464c29bd44a157499fee09": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.915572,
        -77.021919
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "bd0cc8a3bb3042c59f2ee807fdae6be0": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.886198,
        -77.021844
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "bef1c89da57e4fea9a126a00e190d191": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9181132,
        -77.0319544
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "bf5f95f957a442ad8d45f8a7c9b8acbd": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9026383,
        -77.0345731
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "c071ac13ba2544d4a18317857f2d13b8": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.894099,
        -76.94776499999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "c07c43af43264010bbf2f8e3a1d4da54": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8978692,
        -77.0230529
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "c0c1e4fcf7b342a69b1e047fa9409292": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.916804,
        -77.0262348
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "c263ca80a99f4e73b46bebe1f3e5110e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9262792,
        -77.0364613
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "c67af15340c04d3c9e589786b972cde4": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8785574,
        -77.0227475
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "cf9fe4d3a6284d4e89a8b14379542a85": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8871667,
        -76.98364579999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "cfd722ab77aa4615a3896133126407af": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.880156,
        -76.995319
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "cfdf701f5c9c44d886410d418a0e4518": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8958482,
        -77.05568269999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d1b9459279cc4bb9a27fb21e892f5678": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9205903,
        -77.0439444
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d253f589ebe941ad89ae0c71e80eb57d": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9056638,
        -77.0412097
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d4716b94e2ac487aafff4c1487e89b4e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8970035,
        -76.96032009999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d493a016d5154ec2a2da0cc301b2829c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8846221,
        -77.0877534
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d49515c3d7d4403a9464b6f48e2a4523": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.899316,
        -77.04163299999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d628768c8a3544c8ab3aaf0ba7436567": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9096506,
        -77.0345573
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d6fb2cd369644b8794545d9ca40529bf": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9002149,
        -77.043466
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d8468709314a4fca9c4efa79f262c71b": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9056568,
        -77.0416876
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d896364c959940f78ff7f124d74d5384": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.895994,
        -77.0434713
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "d9efaaf8da7f4ad0aebd63d64995d022": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9052288,
        -77.05796
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "da956c516b134685a1753fe00b4857a7": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9028928,
        -77.0219051
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "dc3c82fe99004533a90f342249fc64b1": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9001215,
        -76.9885651
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "de208ca01bd14448b2b0c7172619854b": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletTileLayerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletTileLayerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletTileLayerView",
       "attribution": "&copy; <a href=\"https://www.openstreetmap.org/copyright\">OpenStreetMap</a> contributors",
       "base": true,
       "bottom": true,
       "bounds": null,
       "detect_retina": false,
       "loading": false,
       "max_native_zoom": null,
       "max_zoom": 19,
       "min_native_zoom": null,
       "min_zoom": 1,
       "name": "OpenStreetMap.Mapnik",
       "no_wrap": false,
       "opacity": 1.0,
       "options": [
        "attribution",
        "bounds",
        "detect_retina",
        "max_native_zoom",
        "max_zoom",
        "min_native_zoom",
        "min_zoom",
        "no_wrap",
        "tile_size",
        "tms",
        "zoom_offset"
       ],
       "pane": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "show_loading": false,
       "subitems": [],
       "tile_size": 256,
       "tms": false,
       "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png",
       "visible": true,
       "zoom_offset": 0
      }
     },
     "df1357c842e54e0eb172d9d1c51c376a": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.858108,
        -77.05125699999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "df6c6ec64ec5435d98c81d955a9b8bcd": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9421421,
        -77.0244436
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "e21c95ea6d2141bda6278e60317d1fe5": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.919312,
        -77.000687
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "e2a96d5b62ae4e01af815eb170bbe3b0": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.882001,
        -77.005854
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "e57d453e6acf4719b7f557471b70bd4b": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8739399,
        -76.9722665
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "e80bd5f05b1b457db828c702d9931307": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8631441,
        -77.0529042
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ebb634836547471789fe42e192df6232": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8960201,
        -77.0449211
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ebf9e35950004a4793abc0555ef5e06d": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        37.767873,
        -122.406287
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ec5a6796c21f4a2da9a18e9991a4639d": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8442637,
        -77.05047239999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ec828c796d3d4d4cb8e32edbd79dd56f": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8842471,
        -76.995792
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ed992d5a5c1f47bd8a82f8c88df8021a": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9026398,
        -77.0434555
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ee33118e1e9a4c5bb5b5340ad645b5ce": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8892686,
        -77.050176
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "efea991dcde84ecba6eb7a180c7676f5": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8491034,
        -77.05100990000001
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "f0cbfa70dc294f26becb490f588c401b": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9480833,
        -77.0327696
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "f0d6cedd39bb405e909bf38ce68570a1": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.912721,
        -77.013757
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "f218fa479cb94b79922143610e3b276c": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8878759,
        -77.0931288
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "f24e24a7b7604aecaf112a7b83ec22bb": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9309272,
        -77.030867
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "f47d59fb9a2648e8890df180adfb83be": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8625317,
        -76.9697518
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "f4800589324f45af85e273bcbaa132c7": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.80491019999999,
        -77.0430287
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "f49460f996e54e3cbf741664fb8cfc07": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8886121,
        -77.0319526
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "f7bce29aa8db469aabd1f52a627aae3e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9374498,
        -77.08679830000001
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "fa7bbd3f6da34f7e8d5a5f2d7837f05e": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9053157,
        -77.0222677
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "fab163d165dc4d079d6fa7db619ba602": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8886581,
        -77.02819749999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "fb37b2b791444fba99087e790cc4ae03": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9281258,
        -77.023104
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "fbd47536e2b643889aa3684f87612760": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8838385,
        -77.10724859999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "fc810ce1f0cf48c7bfa3a1dd8f011213": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8954325,
        -77.0888678
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "fd96b2007bc4498691666b5d44a1d741": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.8983706,
        -77.0278743
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "fee32d68cf204cf7b9cf9ea8cffd30c7": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9076089,
        -77.07225849999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     },
     "ff016e6dfa0c4a638ba9ad299b01a1ff": {
      "model_module": "jupyter-leaflet",
      "model_module_version": "^0.19",
      "model_name": "LeafletCircleMarkerModel",
      "state": {
       "_model_module": "jupyter-leaflet",
       "_model_module_version": "^0.19",
       "_model_name": "LeafletCircleMarkerModel",
       "_view_count": null,
       "_view_module": "jupyter-leaflet",
       "_view_module_version": "^0.19",
       "_view_name": "LeafletCircleMarkerView",
       "base": false,
       "bottom": false,
       "color": "#0033FF",
       "dash_array": null,
       "fill": true,
       "fill_color": null,
       "fill_opacity": 0.2,
       "line_cap": "round",
       "line_join": "round",
       "location": [
        38.9061249,
        -77.02598019999999
       ],
       "name": "",
       "opacity": 1.0,
       "options": [
        "color",
        "dash_array",
        "fill",
        "fill_color",
        "fill_opacity",
        "line_cap",
        "line_join",
        "opacity",
        "pointer_events",
        "radius",
        "stroke",
        "weight"
       ],
       "pane": "",
       "pointer_events": "",
       "popup": null,
       "popup_max_height": null,
       "popup_max_width": 300,
       "popup_min_width": 50,
       "radius": 2,
       "stroke": true,
       "subitems": [],
       "weight": 5
      }
     }
    },
    "version_major": 2,
    "version_minor": 0
   }
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}