fastbook/clean/09_tabular.ipynb

8302 lines
1.1 MiB
Plaintext
Raw Normal View History

2020-03-06 18:19:03 +00:00
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"hide_input": true
},
"outputs": [],
"source": [
"#hide\n",
"from utils import *\n",
"from kaggle import api\n",
"from pandas.api.types import is_string_dtype, is_numeric_dtype, is_categorical_dtype\n",
"from fastai2.tabular.all import *\n",
"from sklearn.ensemble import RandomForestRegressor\n",
"from sklearn.tree import DecisionTreeRegressor\n",
"from dtreeviz.trees import *\n",
"from IPython.display import Image, display_svg, SVG\n",
"\n",
"pd.options.display.max_rows = 20\n",
"pd.options.display.max_columns = 8"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Tabular modelling deep dive"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Categorical embeddings"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Beyond deep learning"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## The dataset"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Kaggle Competitions"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"creds = ''"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"cred_path = Path('~/.kaggle/kaggle.json').expanduser()\n",
"if not cred_path.exists():\n",
" cred_path.parent.mkdir(exist_ok=True)\n",
" cred_path.write(creds)\n",
" cred_path.chmod(0o600)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Path('/home/jhoward/.fastai/archive/bluebook')"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"path = URLs.path('bluebook')\n",
"path"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#hide\n",
"Path.BASE_PATH = path"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(#7) [Path('TrainAndValid.csv'),Path('Machine_Appendix.csv'),Path('random_forest_benchmark_test.csv'),Path('Test.csv'),Path('median_benchmark.csv'),Path('ValidSolution.csv'),Path('Valid.csv')]"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"if not path.exists():\n",
" path.mkdir()\n",
" api.competition_download_cli('bluebook-for-bulldozers', path=path)\n",
" file_extract(path/'bluebook-for-bulldozers.zip')\n",
"\n",
"path.ls(file_type='text')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Look at the data"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df = pd.read_csv(path/'TrainAndValid.csv', low_memory=False)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Index(['SalesID', 'SalePrice', 'MachineID', 'ModelID', 'datasource',\n",
" 'auctioneerID', 'YearMade', 'MachineHoursCurrentMeter', 'UsageBand',\n",
" 'saledate', 'fiModelDesc', 'fiBaseModel', 'fiSecondaryDesc',\n",
" 'fiModelSeries', 'fiModelDescriptor', 'ProductSize',\n",
" 'fiProductClassDesc', 'state', 'ProductGroup', 'ProductGroupDesc',\n",
" 'Drive_System', 'Enclosure', 'Forks', 'Pad_Type', 'Ride_Control',\n",
" 'Stick', 'Transmission', 'Turbocharged', 'Blade_Extension',\n",
" 'Blade_Width', 'Enclosure_Type', 'Engine_Horsepower', 'Hydraulics',\n",
" 'Pushblock', 'Ripper', 'Scarifier', 'Tip_Control', 'Tire_Size',\n",
" 'Coupler', 'Coupler_System', 'Grouser_Tracks', 'Hydraulics_Flow',\n",
" 'Track_Type', 'Undercarriage_Pad_Width', 'Stick_Length', 'Thumb',\n",
" 'Pattern_Changer', 'Grouser_Type', 'Backhoe_Mounting', 'Blade_Type',\n",
" 'Travel_Controls', 'Differential_Type', 'Steering_Controls'],\n",
" dtype='object')"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.columns"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([nan, 'Medium', 'Small', 'Large / Medium', 'Mini', 'Large', 'Compact'], dtype=object)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df['ProductSize'].unique()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"sizes = 'Large','Large / Medium','Medium','Small','Mini','Compact'"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df['ProductSize'] = df['ProductSize'].astype('category')\n",
"df['ProductSize'].cat.set_categories(sizes, ordered=True, inplace=True)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"dep_var = 'SalePrice'"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df[dep_var] = np.log(df[dep_var])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Decision trees"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Handling dates"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df = add_datepart(df, 'saledate')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df_test = pd.read_csv(path/'Test.csv', low_memory=False)\n",
"df_test = add_datepart(df_test, 'saledate')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'saleYear saleMonth saleWeek saleDay saleDayofweek saleDayofyear saleIs_month_end saleIs_month_start saleIs_quarter_end saleIs_quarter_start saleIs_year_end saleIs_year_start saleElapsed'"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"' '.join(o for o in df.columns if o.startswith('sale'))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Using TabularPandas and TabularProc"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"procs = [Categorify, FillMissing]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"cond = (df.saleYear<2011) | (df.saleMonth<10)\n",
"train_idx = np.where( cond)[0]\n",
"valid_idx = np.where(~cond)[0]\n",
"\n",
"splits = (list(train_idx),list(valid_idx))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"cont,cat = cont_cat_split(df, 1, dep_var=dep_var)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"to = TabularPandas(df, procs, cat, cont, y_names=dep_var, splits=splits)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(404710, 7988)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(to.train),len(to.valid)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>UsageBand</th>\n",
" <th>fiModelDesc</th>\n",
" <th>fiBaseModel</th>\n",
" <th>fiSecondaryDesc</th>\n",
" <th>fiModelSeries</th>\n",
" <th>fiModelDescriptor</th>\n",
" <th>ProductSize</th>\n",
" <th>fiProductClassDesc</th>\n",
" <th>state</th>\n",
" <th>ProductGroup</th>\n",
" <th>ProductGroupDesc</th>\n",
" <th>Drive_System</th>\n",
" <th>Enclosure</th>\n",
" <th>Forks</th>\n",
" <th>Pad_Type</th>\n",
" <th>Ride_Control</th>\n",
" <th>Stick</th>\n",
" <th>Transmission</th>\n",
" <th>Turbocharged</th>\n",
" <th>Blade_Extension</th>\n",
" <th>Blade_Width</th>\n",
" <th>Enclosure_Type</th>\n",
" <th>Engine_Horsepower</th>\n",
" <th>Hydraulics</th>\n",
" <th>Pushblock</th>\n",
" <th>Ripper</th>\n",
" <th>Scarifier</th>\n",
" <th>Tip_Control</th>\n",
" <th>Tire_Size</th>\n",
" <th>Coupler</th>\n",
" <th>Coupler_System</th>\n",
" <th>Grouser_Tracks</th>\n",
" <th>Hydraulics_Flow</th>\n",
" <th>Track_Type</th>\n",
" <th>Undercarriage_Pad_Width</th>\n",
" <th>Stick_Length</th>\n",
" <th>Thumb</th>\n",
" <th>Pattern_Changer</th>\n",
" <th>Grouser_Type</th>\n",
" <th>Backhoe_Mounting</th>\n",
" <th>Blade_Type</th>\n",
" <th>Travel_Controls</th>\n",
" <th>Differential_Type</th>\n",
" <th>Steering_Controls</th>\n",
" <th>saleIs_month_end</th>\n",
" <th>saleIs_month_start</th>\n",
" <th>saleIs_quarter_end</th>\n",
" <th>saleIs_quarter_start</th>\n",
" <th>saleIs_year_end</th>\n",
" <th>saleIs_year_start</th>\n",
" <th>SalesID_na</th>\n",
" <th>MachineID_na</th>\n",
" <th>ModelID_na</th>\n",
" <th>datasource_na</th>\n",
" <th>auctioneerID_na</th>\n",
" <th>YearMade_na</th>\n",
" <th>MachineHoursCurrentMeter_na</th>\n",
" <th>saleYear_na</th>\n",
" <th>saleMonth_na</th>\n",
" <th>saleWeek_na</th>\n",
" <th>saleDay_na</th>\n",
" <th>saleDayofweek_na</th>\n",
" <th>saleDayofyear_na</th>\n",
" <th>saleElapsed_na</th>\n",
" <th>SalesID</th>\n",
" <th>MachineID</th>\n",
" <th>ModelID</th>\n",
" <th>datasource</th>\n",
" <th>auctioneerID</th>\n",
" <th>YearMade</th>\n",
" <th>MachineHoursCurrentMeter</th>\n",
" <th>saleYear</th>\n",
" <th>saleMonth</th>\n",
" <th>saleWeek</th>\n",
" <th>saleDay</th>\n",
" <th>saleDayofweek</th>\n",
" <th>saleDayofyear</th>\n",
" <th>saleElapsed</th>\n",
" <th>SalePrice</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Low</td>\n",
" <td>521D</td>\n",
" <td>521</td>\n",
" <td>D</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>Wheel Loader - 110.0 to 120.0 Horsepower</td>\n",
" <td>Alabama</td>\n",
" <td>WL</td>\n",
" <td>Wheel Loader</td>\n",
" <td>#na#</td>\n",
" <td>EROPS w AC</td>\n",
" <td>None or Unspecified</td>\n",
" <td>#na#</td>\n",
" <td>None or Unspecified</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>2 Valve</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>None or Unspecified</td>\n",
" <td>None or Unspecified</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>Standard</td>\n",
" <td>Conventional</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>1139246</td>\n",
" <td>999089</td>\n",
" <td>3157</td>\n",
" <td>121</td>\n",
" <td>3.0</td>\n",
" <td>2004</td>\n",
" <td>68.0</td>\n",
" <td>2006</td>\n",
" <td>11</td>\n",
" <td>46</td>\n",
" <td>16</td>\n",
" <td>3</td>\n",
" <td>320</td>\n",
" <td>1163635200</td>\n",
" <td>11.097410</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Low</td>\n",
" <td>950FII</td>\n",
" <td>950</td>\n",
" <td>F</td>\n",
" <td>II</td>\n",
" <td>#na#</td>\n",
" <td>Medium</td>\n",
" <td>Wheel Loader - 150.0 to 175.0 Horsepower</td>\n",
" <td>North Carolina</td>\n",
" <td>WL</td>\n",
" <td>Wheel Loader</td>\n",
" <td>#na#</td>\n",
" <td>EROPS w AC</td>\n",
" <td>None or Unspecified</td>\n",
" <td>#na#</td>\n",
" <td>None or Unspecified</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>2 Valve</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>23.5</td>\n",
" <td>None or Unspecified</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>Standard</td>\n",
" <td>Conventional</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>1139248</td>\n",
" <td>117657</td>\n",
" <td>77</td>\n",
" <td>121</td>\n",
" <td>3.0</td>\n",
" <td>1996</td>\n",
" <td>4640.0</td>\n",
" <td>2004</td>\n",
" <td>3</td>\n",
" <td>13</td>\n",
" <td>26</td>\n",
" <td>4</td>\n",
" <td>86</td>\n",
" <td>1080259200</td>\n",
" <td>10.950807</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>High</td>\n",
" <td>226</td>\n",
" <td>226</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>Skid Steer Loader - 1351.0 to 1601.0 Lb Operating Capacity</td>\n",
" <td>New York</td>\n",
" <td>SSL</td>\n",
" <td>Skid Steer Loaders</td>\n",
" <td>#na#</td>\n",
" <td>OROPS</td>\n",
" <td>None or Unspecified</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>Auxiliary</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>None or Unspecified</td>\n",
" <td>None or Unspecified</td>\n",
" <td>None or Unspecified</td>\n",
" <td>Standard</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>#na#</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>False</td>\n",
" <td>1139249</td>\n",
" <td>434808</td>\n",
" <td>7009</td>\n",
" <td>121</td>\n",
" <td>3.0</td>\n",
" <td>2001</td>\n",
" <td>2838.0</td>\n",
" <td>2004</td>\n",
" <td>2</td>\n",
" <td>9</td>\n",
" <td>26</td>\n",
" <td>3</td>\n",
" <td>57</td>\n",
" <td>1077753600</td>\n",
" <td>9.210340</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"to.show(3)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"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>SalesID</th>\n",
" <th>SalePrice</th>\n",
" <th>MachineID</th>\n",
" <th>ModelID</th>\n",
" <th>...</th>\n",
" <th>saleDay_na</th>\n",
" <th>saleDayofweek_na</th>\n",
" <th>saleDayofyear_na</th>\n",
" <th>saleElapsed_na</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1139246</td>\n",
" <td>11.097410</td>\n",
" <td>999089</td>\n",
" <td>3157</td>\n",
" <td>...</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1139248</td>\n",
" <td>10.950807</td>\n",
" <td>117657</td>\n",
" <td>77</td>\n",
" <td>...</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1139249</td>\n",
" <td>9.210340</td>\n",
" <td>434808</td>\n",
" <td>7009</td>\n",
" <td>...</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>3 rows × 79 columns</p>\n",
"</div>"
],
"text/plain": [
" SalesID SalePrice MachineID ModelID ... saleDay_na saleDayofweek_na \\\n",
"0 1139246 11.097410 999089 3157 ... 1 1 \n",
"1 1139248 10.950807 117657 77 ... 1 1 \n",
"2 1139249 9.210340 434808 7009 ... 1 1 \n",
"\n",
" saleDayofyear_na saleElapsed_na \n",
"0 1 1 \n",
"1 1 1 \n",
"2 1 1 \n",
"\n",
"[3 rows x 79 columns]"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"to.items.head(3)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(#7) ['#na#','Large','Large / Medium','Medium','Small','Mini','Compact']"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"to.classes['ProductSize']"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"(path/'to.pkl').save(to)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Creating the decision tree"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"to = (path/'to.pkl').load()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"xs,y = to.train.xs,to.train.y\n",
"valid_xs,valid_y = to.valid.xs,to.valid.y"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"m = DecisionTreeRegressor(max_leaf_nodes=4)\n",
"m.fit(xs, y);"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Generated by graphviz version 2.40.1 (20161225.0304)\n",
" -->\n",
"<!-- Title: Tree Pages: 1 -->\n",
"<svg width=\"504pt\" height=\"305pt\"\n",
" viewBox=\"0.00 0.00 504.00 305.10\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<g id=\"graph0\" class=\"graph\" transform=\"scale(.8018 .8018) rotate(0) translate(4 376.5)\">\n",
"<title>Tree</title>\n",
"<polygon fill=\"#ffffff\" stroke=\"transparent\" points=\"-4,4 -4,-376.5 624.5616,-376.5 624.5616,4 -4,4\"/>\n",
"<!-- 0 -->\n",
"<g id=\"node1\" class=\"node\">\n",
"<title>0</title>\n",
"<path fill=\"#eda775\" stroke=\"#000000\" d=\"M536.7681,-373C536.7681,-373 408.7681,-373 408.7681,-373 402.7681,-373 396.7681,-367 396.7681,-361 396.7681,-361 396.7681,-317 396.7681,-317 396.7681,-311 402.7681,-305 408.7681,-305 408.7681,-305 536.7681,-305 536.7681,-305 542.7681,-305 548.7681,-311 548.7681,-317 548.7681,-317 548.7681,-361 548.7681,-361 548.7681,-367 542.7681,-373 536.7681,-373\"/>\n",
"<text text-anchor=\"start\" x=\"404.7681\" y=\"-357.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">Coupler_System ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"438.2681\" y=\"-342.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">mse = 0.48</text>\n",
"<text text-anchor=\"start\" x=\"416.7681\" y=\"-327.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">samples = 404710</text>\n",
"<text text-anchor=\"start\" x=\"435.2681\" y=\"-312.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">value = 10.1</text>\n",
"</g>\n",
"<!-- 1 -->\n",
"<g id=\"node2\" class=\"node\">\n",
"<title>1</title>\n",
"<path fill=\"#eb9d64\" stroke=\"#000000\" d=\"M371.2681,-269C371.2681,-269 258.2681,-269 258.2681,-269 252.2681,-269 246.2681,-263 246.2681,-257 246.2681,-257 246.2681,-213 246.2681,-213 246.2681,-207 252.2681,-201 258.2681,-201 258.2681,-201 371.2681,-201 371.2681,-201 377.2681,-201 383.2681,-207 383.2681,-213 383.2681,-213 383.2681,-257 383.2681,-257 383.2681,-263 377.2681,-269 371.2681,-269\"/>\n",
"<text text-anchor=\"start\" x=\"254.2681\" y=\"-253.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">YearMade ≤ 1991.5</text>\n",
"<text text-anchor=\"start\" x=\"280.2681\" y=\"-238.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">mse = 0.42</text>\n",
"<text text-anchor=\"start\" x=\"258.7681\" y=\"-223.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">samples = 360847</text>\n",
"<text text-anchor=\"start\" x=\"273.7681\" y=\"-208.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">value = 10.21</text>\n",
"</g>\n",
"<!-- 0&#45;&gt;1 -->\n",
"<g id=\"edge1\" class=\"edge\">\n",
"<title>0&#45;&gt;1</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M421.033,-304.9465C406.4377,-295.3395 390.4272,-284.8009 375.3623,-274.8848\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"376.8967,-271.7046 366.6195,-269.13 373.048,-277.5517 376.8967,-271.7046\"/>\n",
"<text text-anchor=\"middle\" x=\"371.6661\" y=\"-289.9153\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">True</text>\n",
"</g>\n",
"<!-- 2 -->\n",
"<g id=\"node7\" class=\"node\">\n",
"<title>2</title>\n",
"<path fill=\"#ffffff\" stroke=\"#000000\" d=\"M601.2681,-52.5C601.2681,-52.5 504.2681,-52.5 504.2681,-52.5 498.2681,-52.5 492.2681,-46.5 492.2681,-40.5 492.2681,-40.5 492.2681,-11.5 492.2681,-11.5 492.2681,-5.5 498.2681,.5 504.2681,.5 504.2681,.5 601.2681,.5 601.2681,.5 607.2681,.5 613.2681,-5.5 613.2681,-11.5 613.2681,-11.5 613.2681,-40.5 613.2681,-40.5 613.2681,-46.5 607.2681,-52.5 601.2681,-52.5\"/>\n",
"<text text-anchor=\"start\" x=\"518.2681\" y=\"-37.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">mse = 0.12</text>\n",
"<text text-anchor=\"start\" x=\"500.2681\" y=\"-22.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">samples = 43863</text>\n",
"<text text-anchor=\"start\" x=\"515.2681\" y=\"-7.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">value = 9.21</text>\n",
"</g>\n",
"<!-- 0&#45;&gt;2 -->\n",
"<g id=\"edge6\" class=\"edge\">\n",
"<title>0&#45;&gt;2</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M481.4818,-304.9077C496.6414,-245.5956 527.7407,-123.9199 543.3675,-62.7798\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"546.8328,-63.3556 545.9182,-52.8004 540.0508,-61.6222 546.8328,-63.3556\"/>\n",
"<text text-anchor=\"middle\" x=\"558.6677\" y=\"-70.605\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">False</text>\n",
"</g>\n",
"<!-- 3 -->\n",
"<g id=\"node3\" class=\"node\">\n",
"<title>3</title>\n",
"<path fill=\"#f0b48a\" stroke=\"#000000\" d=\"M123.7681,-52.5C123.7681,-52.5 19.7681,-52.5 19.7681,-52.5 13.7681,-52.5 7.7681,-46.5 7.7681,-40.5 7.7681,-40.5 7.7681,-11.5 7.7681,-11.5 7.7681,-5.5 13.7681,.5 19.7681,.5 19.7681,.5 123.7681,.5 123.7681,.5 129.7681,.5 135.7681,-5.5 135.7681,-11.5 135.7681,-11.5 135.7681,-40.5 135.7681,-40.5 135.7681,-46.5 129.7681,-52.5 123.7681,-52.5\"/>\n",
"<text text-anchor=\"start\" x=\"37.2681\" y=\"-37.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">mse = 0.37</text>\n",
"<text text-anchor=\"start\" x=\"15.7681\" y=\"-22.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">samples = 155724</text>\n",
"<text text-anchor=\"start\" x=\"34.2681\" y=\"-7.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">value = 9.97</text>\n",
"</g>\n",
"<!-- 1&#45;&gt;3 -->\n",
"<g id=\"edge2\" class=\"edge\">\n",
"<title>1&#45;&gt;3</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M275.1851,-200.9554C229.7661,-161.8913 155.7602,-98.2401 110.6415,-59.4343\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"112.7032,-56.5911 102.8394,-52.7238 108.1386,-61.8982 112.7032,-56.5911\"/>\n",
"</g>\n",
"<!-- 4 -->\n",
"<g id=\"node4\" class=\"node\">\n",
"<title>4</title>\n",
"<path fill=\"#e78a48\" stroke=\"#000000\" d=\"M366.7681,-165C366.7681,-165 262.7681,-165 262.7681,-165 256.7681,-165 250.7681,-159 250.7681,-153 250.7681,-153 250.7681,-109 250.7681,-109 250.7681,-103 256.7681,-97 262.7681,-97 262.7681,-97 366.7681,-97 366.7681,-97 372.7681,-97 378.7681,-103 378.7681,-109 378.7681,-109 378.7681,-153 378.7681,-153 378.7681,-159 372.7681,-165 366.7681,-165\"/>\n",
"<text text-anchor=\"start\" x=\"260.7681\" y=\"-149.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">ProductSize ≤ 4.5</text>\n",
"<text text-anchor=\"start\" x=\"280.2681\" y=\"-134.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">mse = 0.37</text>\n",
"<text text-anchor=\"start\" x=\"258.7681\" y=\"-119.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">samples = 205123</text>\n",
"<text text-anchor=\"start\" x=\"277.2681\" y=\"-104.8\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">value = 10.4</text>\n",
"</g>\n",
"<!-- 1&#45;&gt;4 -->\n",
"<g id=\"edge3\" class=\"edge\">\n",
"<title>1&#45;&gt;4</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M314.7681,-200.9465C314.7681,-192.776 314.7681,-183.9318 314.7681,-175.3697\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"318.2682,-175.13 314.7681,-165.13 311.2682,-175.13 318.2682,-175.13\"/>\n",
"</g>\n",
"<!-- 5 -->\n",
"<g id=\"node5\" class=\"node\">\n",
"<title>5</title>\n",
"<path fill=\"#e58139\" stroke=\"#000000\" d=\"M287.7681,-52.5C287.7681,-52.5 183.7681,-52.5 183.7681,-52.5 177.7681,-52.5 171.7681,-46.5 171.7681,-40.5 171.7681,-40.5 171.7681,-11.5 171.7681,-11.5 171.7681,-5.5 177.7681,.5 183.7681,.5 183.7681,.5 287.7681,.5 287.7681,.5 293.7681,.5 299.7681,-5.5 299.7681,-11.5 299.7681,-11.5 299.7681,-40.5 299.7681,-40.5 299.7681,-46.5 293.7681,-52.5 287.7681,-52.5\"/>\n",
"<text text-anchor=\"start\" x=\"201.2681\" y=\"-37.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">mse = 0.31</text>\n",
"<text text-anchor=\"start\" x=\"179.7681\" y=\"-22.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">samples = 182403</text>\n",
"<text text-anchor=\"start\" x=\"198.2681\" y=\"-7.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">value = 10.5</text>\n",
"</g>\n",
"<!-- 4&#45;&gt;5 -->\n",
"<g id=\"edge4\" class=\"edge\">\n",
"<title>4&#45;&gt;5</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M289.1191,-96.9095C280.4181,-85.3449 270.6904,-72.4157 261.9486,-60.7968\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"264.5951,-58.4928 255.7861,-52.6062 259.0015,-62.7014 264.5951,-58.4928\"/>\n",
"</g>\n",
"<!-- 6 -->\n",
"<g id=\"node6\" class=\"node\">\n",
"<title>6</title>\n",
"<path fill=\"#f7d6bf\" stroke=\"#000000\" d=\"M445.2681,-52.5C445.2681,-52.5 348.2681,-52.5 348.2681,-52.5 342.2681,-52.5 336.2681,-46.5 336.2681,-40.5 336.2681,-40.5 336.2681,-11.5 336.2681,-11.5 336.2681,-5.5 342.2681,.5 348.2681,.5 348.2681,.5 445.2681,.5 445.2681,.5 451.2681,.5 457.2681,-5.5 457.2681,-11.5 457.2681,-11.5 457.2681,-40.5 457.2681,-40.5 457.2681,-46.5 451.2681,-52.5 445.2681,-52.5\"/>\n",
"<text text-anchor=\"start\" x=\"362.2681\" y=\"-37.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">mse = 0.17</text>\n",
"<text text-anchor=\"start\" x=\"344.2681\" y=\"-22.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22720</text>\n",
"<text text-anchor=\"start\" x=\"359.2681\" y=\"-7.3\" font-family=\"Helvetica,sans-Serif\" font-size=\"14.00\" fill=\"#000000\">value = 9.62</text>\n",
"</g>\n",
"<!-- 4&#45;&gt;6 -->\n",
"<g id=\"edge5\" class=\"edge\">\n",
"<title>4&#45;&gt;6</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M341.3912,-96.9095C350.4226,-85.3449 360.5197,-72.4157 369.5935,-60.7968\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"372.5934,-62.6419 375.9899,-52.6062 367.0764,-58.3333 372.5934,-62.6419\"/>\n",
"</g>\n",
"</g>\n",
"</svg>\n"
],
"text/plain": [
"<graphviz.files.Source at 0x7f7ae86496d0>"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"draw_tree(m, xs, size=7, leaves_parallel=True, precision=2)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"294.40000000000003\" viewBox=\"0.0 0.0 865.6 294.40000000000003\" width=\"865.6\">\n",
"<g class=\"graph\" id=\"graph0\" transform=\"scale(1.6 1.6) rotate(0) translate(4 180)\">\n",
"<title>G</title>\n",
"<polygon fill=\"#ffffff\" points=\"-4,4 -4,-180 537,-180 537,4 -4,4\" stroke=\"transparent\" />\n",
"\n",
"<g class=\"node\" id=\"node1\">\n",
"<title>node4</title>\n",
"<svg height=\"68px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 163.04125 90.073481\" width=\"123px\" x=\"319.5\" y=\"-99.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 90.073481 L 163.04125 90.073481 L 163.04125 -0 L 0 -0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 17.18 61.652856 L 156.68 61.652856 L 156.68 1.856856 L 17.18 1.856856 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m86246087f2\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#pf829d4cf0d)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"23.023998\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.104161\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"29.326664\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"24.41216\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"53.508875\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"22.857494\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"25.146827\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"28.637079\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"30.535575\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"20.817732\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"23.361514\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"18.186843\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"41.396508\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.300236\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"44.283998\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"40.955744\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"58.338429\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"46.490264\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.28747\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.509018\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"21.42203\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"39.69246\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"37.395921\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"29.326664\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"30.535575\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"36.00776\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"40.955744\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.731651\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.101206\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.991522\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"56.254994\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"24.775892\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.699174\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"44.283998\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.715412\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.146827\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"23.361514\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.930099\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"45.354667\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.041865\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.43\" y=\"25.146827\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"36.00776\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.039118\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.117444\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"8.438268\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"20.232322\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.345276\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"44.283998\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"18.84416\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.300236\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"36.688984\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.101206\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"13.62341\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"31.300236\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"20.232322\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.026371\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"41.396508\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.077733\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"31.041865\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"49.672746\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"22.046475\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"53.508875\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.395921\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"36.345276\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"27.120399\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"21.42203\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"14.664323\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"53.508875\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"18.186843\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"38.130589\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"56.254994\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"18.84416\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"58.338429\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"53.508875\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"23.705223\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"41.396508\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"54.202718\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.888401\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"20.966989\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"56.254994\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"15.428984\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.370905\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.084968\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"50.379683\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.827922\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"22.366681\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.271232\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"59.474026\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"35.350443\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"29.326664\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.911488\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"29.800908\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"13.929655\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.930099\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.104161\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"26.107633\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.535575\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.759653\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.509018\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"35.350443\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.146827\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"38.130589\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"35.350443\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"23.361514\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"43.271232\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"22.366681\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"16.937607\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.271232\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"44.283998\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"51.879012\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"46.490264\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.913861\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"38.130589\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"51.879012\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"14.98822\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"39.69246\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.688984\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"12.163065\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"14.771667\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"38.89525\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.991522\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"22.046475\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"33.506502\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.101206\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.405792\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.395921\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"39.289614\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.395921\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"27.120399\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.715412\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"34.715412\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"38.130589\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"46.490264\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"36.00776\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"49.672746\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.370905\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"35.350443\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"23.361514\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"27.541351\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.787009\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"29.326664\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"40.955744\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"59.474026\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"19.387143\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"19.525385\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.334205\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"14.136637\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"17.551813\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"28.191068\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"21.731651\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"18.84416\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.913861\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"27.120399\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"42.310426\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"27.120399\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"10.721461\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"50.379683\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.715412\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.104161\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.146827\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"57.26776\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.991522\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"12.163065\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"57.26776\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"31.827922\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"28.191068\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.787009\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"24.055356\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.345276\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"39.289614\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"22.692456\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"31.827922\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.130589\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"26.708698\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"34.715412\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"33.801494\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"49.672746\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.78467\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"46.490264\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"22.528861\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"44.283998\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"26.913417\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.43\" y=\"24.775892\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"22.11008\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"16.342902\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.535575\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"33.216084\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"26.708698\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"36.688984\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"46.490264\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.354667\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.354667\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"49.672746\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"11.700532\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"15.207306\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"31.300236\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"31.827922\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.395921\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.688984\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"40.104161\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"52.676222\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"22.528861\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.300236\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"27.971982\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"34.715412\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"27.120399\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.146827\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"52.676222\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"41.396508\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"18.978438\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"10.377752\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.354667\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.117444\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"16.342902\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"21.117444\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"15.207306\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"35.350443\" xlink:href=\"#m86246087f2\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"16.342902\" xlink:href=\"#m86246087f2\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 121.805 61.652856 L 119.294 67.632456 L 124.316 67.632456 z \" style=\"fill:#444443;\" />\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L 0 3.5 \" id=\"m93acb3f775\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"61.652856\" xlink:href=\"#m93acb3f775\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(10.81875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"156.68\" y=\"61.652856\" xlink:href=\"#m93acb3f775\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z \" id=\"DejaVuSans-54\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(150.31875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-54\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_3\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"121.805\" y=\"61.652856\" xlink:href=\"#m93acb3f775\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z \" id=\"DejaVuSans-52\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(115.44375 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-52\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z \" id=\"DejaVuSans-111\" />\n",
" <path d=\"M 45.40625 46.390625 L 45.40625 75.984375 L 54.390625 75.984375 L 54.390625 0 L 45.40625 0 L 45.40625 8.203125 Q 42.578125 3.328125 38.25 0.953125 Q 33.9375 -1.421875 27.875 -1.421875 Q 17.96875 -1.421875 11.734375 6.484375 Q 5.515625 14.40625 5.515625 27.296875 Q 5.515625 40.1875 11.734375 48.09375 Q 17.96875 56 27.875 56 Q 33.9375 56 38.25 53.625 Q 42.578125 51.265625 45.40625 46.390625 z M 14.796875 27.296875 Q 14.796875 17.390625 18.875 11.75 Q 22.953125 6.109375 30.078125 6.109375 Q 37.203125 6.109375 41.296875 11.75 Q 45.40625 17.390625 45.40625 27.296875 Q 45.40625 37.203125 41.296875 42.84375 Q 37.203125 48.484375 30.078125 48.484375 Q 22.953125 48.484375 18.875 42.84375 Q 14.796875 37.203125 14.796875 27.296875 z \" id=\"DejaVuSans-100\" />\n",
" <path d=\"M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z \" id=\"DejaVuSans-117\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 18.3125 70.21875 L 18.3125 54.6875 L 36.8125 54.6875 L 36.8125 47.703125 L 18.3125 47.703125 L 18.3125 18.015625 Q 18.3125 11.328125 20.140625 9.421875 Q 21.96875 7.515625 27.59375 7.515625 L 36.8125 7.515625 L 36.8125 0 L 27.59375 0 Q 17.1875 0 13.234375 3.875 Q 9.28125 7.765625 9.28125 18.015625 L 9.28125 47.703125 L 2.6875 47.703125 L 2.6875 54.6875 L 9.28125 54.6875 L 9.28125 70.21875 z \" id=\"DejaVuSans-116\" />\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 5.515625 54.6875 L 48.1875 54.6875 L 48.1875 46.484375 L 14.40625 7.171875 L 48.1875 7.171875 L 48.1875 0 L 4.296875 0 L 4.296875 8.203125 L 38.09375 47.515625 L 5.515625 47.515625 z \" id=\"DejaVuSans-122\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(57.48625 87.993793)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"60.287109\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"101.369141\" xlink:href=\"#DejaVuSans-111\" />\n",
" <use x=\"162.550781\" xlink:href=\"#DejaVuSans-100\" />\n",
" <use x=\"226.027344\" xlink:href=\"#DejaVuSans-117\" />\n",
" <use x=\"289.40625\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"344.386719\" xlink:href=\"#DejaVuSans-116\" />\n",
" <use x=\"383.595703\" xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"447.072266\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"474.855469\" xlink:href=\"#DejaVuSans-122\" />\n",
" <use x=\"527.345703\" xlink:href=\"#DejaVuSans-101\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_4\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"m2e8a5bb2fc\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"40.502593\" xlink:href=\"#m2e8a5bb2fc\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 43.541968)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"3.039375\" xlink:href=\"#m2e8a5bb2fc\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <path clip-path=\"url(#pf829d4cf0d)\" d=\"M 17.18 32.022711 L 121.805 32.022711 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#pf829d4cf0d)\" d=\"M 121.805 61.652856 L 121.805 1.856856 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <path clip-path=\"url(#pf829d4cf0d)\" d=\"M 121.805 48.616994 L 156.68 48.616994 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 17.18 61.652856 L 17.18 1.856856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 17.18 61.652856 L 156.68 61.652856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pf829d4cf0d\">\n",
" <rect height=\"59.796\" width=\"139.5\" x=\"17.18\" y=\"1.856856\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"node\" id=\"node4\">\n",
"<title>leaf5</title>\n",
"<polygon fill=\"none\" points=\"533,-132 463,-132 463,-73 533,-73 533,-132\" stroke=\"#444443\" stroke-width=\"0\" />\n",
"<svg height=\"51px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 82.984375 68.293299\" width=\"62px\" x=\"467\" y=\"-127.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 68.293299 L 82.984375 68.293299 L 82.984375 0 L 0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 20.067187 45.667361 L 61.917187 45.667361 L 61.917187 2.179361 L 20.067187 2.179361 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m12fa529310\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#pdfd81eb657)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.4818\" y=\"25.197286\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.293223\" y=\"17.573646\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.773418\" y=\"29.995583\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.272156\" y=\"22.157404\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.264546\" y=\"18.583218\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.121802\" y=\"17.452552\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.832857\" y=\"19.117522\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.196512\" y=\"21.655887\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.645162\" y=\"23.036611\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.323956\" y=\"15.969089\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.676947\" y=\"17.819112\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.551177\" y=\"14.055716\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.49947\" y=\"30.935472\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.8521\" y=\"23.592729\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.130318\" y=\"33.035465\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.520337\" y=\"30.614916\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.222159\" y=\"34.640022\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.538042\" y=\"22.856172\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.746663\" y=\"28.835479\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.566807\" y=\"16.408579\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.170634\" y=\"28.025954\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.049396\" y=\"32.662209\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.351666\" y=\"31.60014\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.894587\" y=\"22.157404\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.727951\" y=\"23.036611\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.576338\" y=\"27.016382\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.560259\" y=\"16.633757\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.540632\" y=\"25.629798\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.354644\" y=\"31.60014\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.736285\" y=\"30.30173\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.692321\" y=\"36.459118\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.846818\" y=\"18.847751\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.703836\" y=\"35.519229\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.386933\" y=\"33.035465\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.408809\" y=\"26.076493\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.552567\" y=\"25.197286\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.617578\" y=\"19.117522\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.176117\" y=\"17.819112\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.646363\" y=\"24.778084\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.249341\" y=\"29.116375\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.278562\" y=\"23.404822\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.077456\" y=\"19.117522\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.789725\" y=\"27.016382\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.534556\" y=\"27.766461\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.132085\" y=\"16.187062\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.91902\" y=\"6.965843\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.055531\" y=\"15.543336\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.577371\" y=\"27.261848\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.994425\" y=\"14.533764\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.84104\" y=\"23.592729\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.273318\" y=\"32.662209\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.292534\" y=\"25.629798\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.170237\" y=\"10.736855\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.189758\" y=\"23.592729\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.66374\" y=\"15.543336\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.438063\" y=\"32.120827\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.618128\" y=\"30.935472\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.697253\" y=\"31.430908\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.633454\" y=\"23.404822\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.902538\" y=\"16.86272\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.438123\" y=\"39.744466\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.726409\" y=\"28.025954\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.421626\" y=\"27.261848\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.587503\" y=\"20.552847\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"49.712418\" y=\"16.408579\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.050054\" y=\"11.493882\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.07202\" y=\"14.055716\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.341789\" y=\"28.560258\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.919621\" y=\"14.533764\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.118462\" y=\"30.30173\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.030667\" y=\"18.069082\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.216862\" y=\"30.935472\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.790474\" y=\"16.747758\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.574282\" y=\"16.07764\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.850117\" y=\"41.741643\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.397519\" y=\"12.05\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.857723\" y=\"24.371397\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.11441\" y=\"35.072534\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.851006\" y=\"23.9765\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.85292\" y=\"17.095598\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.791449\" y=\"29.116375\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.437055\" y=\"32.298908\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.228507\" y=\"26.538334\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.758769\" y=\"22.157404\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.21107\" y=\"19.673639\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.743069\" y=\"22.502308\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.25503\" y=\"10.959579\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.185974\" y=\"25.197286\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.758358\" y=\"24.778084\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.423621\" y=\"29.995583\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.749947\" y=\"19.81629\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.961131\" y=\"23.036611\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.63563\" y=\"30.30173\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.876151\" y=\"28.290487\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.795719\" y=\"32.662209\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.554133\" y=\"28.835479\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.596256\" y=\"26.538334\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.981333\" y=\"19.117522\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.653303\" y=\"28.560258\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.447076\" y=\"26.538334\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.190394\" y=\"17.819112\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.517976\" y=\"32.298908\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.581625\" y=\"17.095598\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.78507\" y=\"13.14718\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.097706\" y=\"32.298908\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.639358\" y=\"33.035465\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.358711\" y=\"32.662209\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.029917\" y=\"34.640022\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.447703\" y=\"34.22082\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.3639\" y=\"28.560258\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.196075\" y=\"38.559111\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.951172\" y=\"11.729444\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.356137\" y=\"29.696164\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.256602\" y=\"27.511818\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.59762\" y=\"9.674786\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.856368\" y=\"11.571951\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.384353\" y=\"36.459118\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.181539\" y=\"16.86272\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.603646\" y=\"25.197286\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.057425\" y=\"25.629798\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.564704\" y=\"25.851315\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.958816\" y=\"28.025954\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.526224\" y=\"29.403185\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.404799\" y=\"28.025954\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.091391\" y=\"20.552847\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.253397\" y=\"26.076493\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.718154\" y=\"26.076493\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.13942\" y=\"28.560258\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"32.040962\" y=\"34.640022\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.676066\" y=\"24.371397\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.187232\" y=\"26.538334\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.292156\" y=\"17.819112\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.23953\" y=\"31.60014\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.473384\" y=\"20.858994\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.702906\" y=\"23.219473\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.495616\" y=\"22.157404\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.735746\" y=\"30.614916\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.926437\" y=\"14.928661\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.59056\" y=\"15.0292\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.09421\" y=\"35.98107\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.854441\" y=\"25.197286\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.496775\" y=\"11.110111\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.709361\" y=\"13.593875\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.465874\" y=\"25.197286\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.611996\" y=\"21.331515\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.837809\" y=\"16.633757\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.726048\" y=\"14.533764\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.775497\" y=\"34.22082\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.910003\" y=\"20.552847\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.604338\" y=\"31.60014\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.046699\" y=\"20.552847\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.270283\" y=\"8.626346\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.053272\" y=\"37.46869\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.403503\" y=\"25.197286\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.196796\" y=\"26.076493\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.117252\" y=\"31.60014\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.829809\" y=\"29.995583\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.776055\" y=\"19.117522\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.533163\" y=\"36.459118\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.108165\" y=\"9.674786\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.774696\" y=\"42.478201\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.873445\" y=\"32.662209\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.714888\" y=\"23.9765\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.012793\" y=\"21.331515\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.20234\" y=\"23.219473\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.429154\" y=\"31.60014\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.123318\" y=\"18.323725\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.65413\" y=\"27.261848\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.290954\" y=\"29.403185\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.859933\" y=\"30.30173\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.70229\" y=\"17.332525\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.135362\" y=\"23.9765\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.761821\" y=\"28.560258\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.660141\" y=\"20.253428\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.286098\" y=\"26.076493\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.179902\" y=\"25.411825\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.668182\" y=\"31.945044\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.680942\" y=\"17.213546\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.166333\" y=\"33.035465\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.462359\" y=\"18.847751\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.218674\" y=\"16.908978\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.223951\" y=\"12.714668\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.156502\" y=\"23.036611\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.834189\" y=\"24.986072\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.920654\" y=\"20.253428\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.624916\" y=\"34.640022\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.881544\" y=\"33.814133\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.067732\" y=\"33.814133\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"49.003043\" y=\"29.116375\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.550409\" y=\"9.338399\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.205593\" y=\"11.888779\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.262542\" y=\"23.592729\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.438971\" y=\"30.30173\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"50.417798\" y=\"23.9765\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.081673\" y=\"28.025954\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.286301\" y=\"27.511818\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.488721\" y=\"17.213546\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.14792\" y=\"23.592729\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.05549\" y=\"21.17218\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.741819\" y=\"26.076493\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.58067\" y=\"20.552847\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.799003\" y=\"19.117522\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.429652\" y=\"30.935472\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.955466\" y=\"14.631421\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.462334\" y=\"8.376376\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.451529\" y=\"33.814133\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.382204\" y=\"16.187062\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.898614\" y=\"12.714668\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.221167\" y=\"16.187062\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.921881\" y=\"11.888779\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.067296\" y=\"26.538334\" xlink:href=\"#m12fa529310\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.138534\" y=\"12.714668\" xlink:href=\"#m12fa529310\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\" />\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"m24793c0857\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"20.067187\" y=\"30.285352\" xlink:href=\"#m24793c0857\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(2.887187 33.324727)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"20.067187\" y=\"3.039375\" xlink:href=\"#m24793c0857\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(2.887187 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#pdfd81eb657)\" d=\"M 20.067187 24.118165 L 83.984375 24.118165 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 20.067187 45.667361 L 20.067187 2.179361 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 10.59375 45.40625 L 73.1875 45.40625 L 73.1875 37.203125 L 10.59375 37.203125 z M 10.59375 25.484375 L 73.1875 25.484375 L 73.1875 17.1875 L 10.59375 17.1875 z \" id=\"DejaVuSans-61\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" <path d=\"M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z \" id=\"DejaVuSans-52\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 55.015799)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"459.75\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"543.539062\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"607.162109\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"670.785156\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"702.572266\" xlink:href=\"#DejaVuSans-52\" />\n",
" <use x=\"766.195312\" xlink:href=\"#DejaVuSans-53\" />\n",
" </g>\n",
" \n",
" <defs>\n",
" <path d=\"M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z \" id=\"DejaVuSans-110\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.589844 66.213611)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-110\" />\n",
" <use x=\"63.378906\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"147.167969\" xlink:href=\"#DejaVuSans-50\" />\n",
" <use x=\"210.791016\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"274.414062\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pdfd81eb657\">\n",
" <rect height=\"43.488\" width=\"41.85\" x=\"20.067187\" y=\"2.179361\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge1\">\n",
"<title>node4-&gt;leaf5</title>\n",
"<path d=\"M446.1208,-86.1636C450.548,-87.5577 454.9224,-88.9351 459.1416,-90.2638\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"458.7341,-91.6031 462.9699,-91.4692 459.5751,-88.9324 458.7341,-91.6031\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"</g>\n",
"\n",
"<g class=\"node\" id=\"node5\">\n",
"<title>leaf6</title>\n",
"<polygon fill=\"none\" points=\"530.5,-59 465.5,-59 465.5,0 530.5,0 530.5,-59\" stroke=\"#444443\" stroke-width=\"0\" />\n",
"<svg height=\"51px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 76.915937 68.293299\" width=\"57px\" x=\"470\" y=\"-54.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M -0 68.293299 L 76.915938 68.293299 L 76.915938 0 L -0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 17.18 45.667361 L 59.03 45.667361 L 59.03 2.179361 L 17.18 2.179361 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m06f3c752be\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p7c325cdb0e)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.044519\" y=\"39.744466\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.992217\" y=\"43.256869\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.762572\" y=\"29.696164\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.828325\" y=\"30.614916\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.169788\" y=\"41.741643\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.331562\" y=\"33.814133\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.703217\" y=\"33.035465\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.35287\" y=\"27.511818\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.867214\" y=\"36.954554\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.127753\" y=\"39.744466\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.624115\" y=\"41.741643\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.327968\" y=\"43.256869\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"32.654743\" y=\"39.744466\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.823813\" y=\"40.249079\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.052715\" y=\"37.46869\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.228671\" y=\"44.082758\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.659182\" y=\"38.559111\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.225398\" y=\"29.116375\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.929898\" y=\"27.016382\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.755811\" y=\"36.954554\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.02194\" y=\"44.082758\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.400491\" y=\"42.478201\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.856468\" y=\"36.954554\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.288372\" y=\"34.640022\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.464417\" y=\"20.402315\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"32.641826\" y=\"27.511818\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"29.424101\" y=\"36.954554\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.895773\" y=\"29.995583\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.811486\" y=\"39.1389\" xlink:href=\"#m06f3c752be\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.021268\" y=\"39.1389\" xlink:href=\"#m06f3c752be\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\" />\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"ma0b95a8995\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"30.285352\" xlink:href=\"#ma0b95a8995\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 33.324727)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"3.039375\" xlink:href=\"#ma0b95a8995\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#p7c325cdb0e)\" d=\"M 17.18 36.186734 L 77.915937 36.186734 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 17.18 45.667361 L 17.18 2.179361 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 10.59375 45.40625 L 73.1875 45.40625 L 73.1875 37.203125 L 10.59375 37.203125 z M 10.59375 25.484375 L 73.1875 25.484375 L 73.1875 17.1875 L 10.59375 17.1875 z \" id=\"DejaVuSans-61\" />\n",
" <path d=\"M 10.984375 1.515625 L 10.984375 10.5 Q 14.703125 8.734375 18.5 7.8125 Q 22.3125 6.890625 25.984375 6.890625 Q 35.75 6.890625 40.890625 13.453125 Q 46.046875 20.015625 46.78125 33.40625 Q 43.953125 29.203125 39.59375 26.953125 Q 35.25 24.703125 29.984375 24.703125 Q 19.046875 24.703125 12.671875 31.3125 Q 6.296875 37.9375 6.296875 49.421875 Q 6.296875 60.640625 12.9375 67.421875 Q 19.578125 74.21875 30.609375 74.21875 Q 43.265625 74.21875 49.921875 64.515625 Q 56.59375 54.828125 56.59375 36.375 Q 56.59375 19.140625 48.40625 8.859375 Q 40.234375 -1.421875 26.421875 -1.421875 Q 22.703125 -1.421875 18.890625 -0.6875 Q 15.09375 0.046875 10.984375 1.515625 z M 30.609375 32.421875 Q 37.25 32.421875 41.125 36.953125 Q 45.015625 41.5 45.015625 49.421875 Q 45.015625 57.28125 41.125 61.84375 Q 37.25 66.40625 30.609375 66.40625 Q 23.96875 66.40625 20.09375 61.84375 Q 16.21875 57.28125 16.21875 49.421875 Q 16.21875 41.5 20.09375 36.953125 Q 23.96875 32.421875 30.609375 32.421875 z \" id=\"DejaVuSans-57\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" <path d=\"M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z \" id=\"DejaVuSans-55\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0.294063 55.015799)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"459.75\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"543.539062\" xlink:href=\"#DejaVuSans-57\" />\n",
" <use x=\"607.162109\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"638.949219\" xlink:href=\"#DejaVuSans-53\" />\n",
" <use x=\"702.572266\" xlink:href=\"#DejaVuSans-55\" />\n",
" </g>\n",
" \n",
" <defs>\n",
" <path d=\"M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z \" id=\"DejaVuSans-110\" />\n",
" <path d=\"M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z \" id=\"DejaVuSans-51\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.883906 66.213611)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-110\" />\n",
" <use x=\"63.378906\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"147.167969\" xlink:href=\"#DejaVuSans-51\" />\n",
" <use x=\"210.791016\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p7c325cdb0e\">\n",
" <rect height=\"43.488\" width=\"41.85\" x=\"17.18\" y=\"2.179361\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge2\">\n",
"<title>node4-&gt;leaf6</title>\n",
"<path d=\"M446.1208,-45.3949C451.2954,-43.8095 456.398,-42.2462 461.2649,-40.755\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"461.8797,-42.031 465.2941,-39.5205 461.0594,-39.3538 461.8797,-42.031\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"</g>\n",
"\n",
"<g class=\"node\" id=\"node2\">\n",
"<title>node1</title>\n",
"<svg height=\"68px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 166.86 90.073481\" width=\"125px\" x=\"169.5\" y=\"-148.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 90.073481 L 166.86 90.073481 L 166.86 -0 L 0 -0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 17.18 61.652856 L 156.68 61.652856 L 156.68 1.856856 L 17.18 1.856856 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m85b5833208\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#pb43bd6f1b4)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.849643\" y=\"23.023998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"23.023998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"40.104161\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"56.254994\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.528214\" y=\"29.800908\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.465714\" y=\"29.326664\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.697857\" y=\"35.350443\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.130589\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"24.41216\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"53.508875\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"22.857494\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"28.637079\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"30.535575\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"48.991522\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"39.897179\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"20.817732\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.421071\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.327321\" y=\"29.326664\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.849643\" y=\"23.361514\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"18.186843\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"41.396508\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.251429\" y=\"36.00776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"31.300236\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"34.101206\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.282679\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.327321\" y=\"28.864132\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"40.955744\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.144286\" y=\"57.795446\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"58.338429\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"53.508875\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"30.28747\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"38.509018\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"21.42203\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"39.69246\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"37.395921\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"51.11435\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"29.326664\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.465714\" y=\"30.535575\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"28.191068\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"36.00776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"40.955744\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"21.731651\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"21.731651\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"34.101206\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"34.101206\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"42.78467\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.759653\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.050536\" y=\"18.058103\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"48.991522\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"56.254994\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"24.775892\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"47.699174\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.389821\" y=\"36.00776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.528214\" y=\"41.396508\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.688984\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"25.911488\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"23.361514\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.389821\" y=\"19.387143\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"32.930099\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"20.966989\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.974643\" y=\"45.913861\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"45.354667\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"38.89525\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"31.041865\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.849643\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"36.00776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"37.039118\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"51.879012\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"32.930099\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.943393\" y=\"29.800908\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"21.117444\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"50.379683\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"8.438268\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"57.26776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"48.013999\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"22.528861\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"20.232322\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"36.345276\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"55.294188\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"55.294188\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"18.84416\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"31.300236\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"22.366681\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"18.058103\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"36.688984\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"34.101206\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"13.62341\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"31.300236\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"20.232322\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"43.026371\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"51.11435\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"41.396508\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"42.077733\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"39.289614\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"28.412746\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"26.708698\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"31.041865\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.805\" y=\"29.800908\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"49.672746\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.849643\" y=\"22.046475\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"53.508875\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"37.395921\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.528214\" y=\"51.11435\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.251429\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"36.345276\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"27.120399\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.576201\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"21.42203\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"14.664323\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"53.087922\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"53.508875\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"35.350443\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"18.186843\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"38.130589\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.699174\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"56.254994\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.327321\" y=\"47.084968\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.943393\" y=\"55.294188\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"18.84416\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"24.41216\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"30.787009\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"58.338429\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"55.294188\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"19.387143\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.050536\" y=\"36.688984\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"58.338429\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.849643\" y=\"53.508875\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.050536\" y=\"25.525256\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"33.801494\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"23.023998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.805\" y=\"50.379683\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.541607\" y=\"23.705223\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"25.911488\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"41.396508\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"59.474026\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.144286\" y=\"51.11435\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"37.039118\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"54.202718\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.282679\" y=\"52.676222\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.541607\" y=\"21.888401\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.528214\" y=\"38.89525\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"20.966989\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"56.254994\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"47.699174\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"15.428984\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"32.370905\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.050536\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.421071\" y=\"47.699174\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"47.084968\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"50.379683\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"41.396508\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"31.827922\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"59.011494\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"22.366681\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"38.89525\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"31.827922\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.930099\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.251429\" y=\"53.508875\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"43.271232\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"20.52274\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"59.474026\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"38.509018\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"35.350443\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"29.326664\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.697857\" y=\"58.338429\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"25.911488\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.050536\" y=\"21.731651\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.282679\" y=\"45.354667\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"29.800908\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"13.929655\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"54.38027\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.144286\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"32.930099\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"53.508875\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"40.104161\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.113036\" y=\"57.26776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"26.107633\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"30.535575\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"37.759653\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.528214\" y=\"48.991522\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"38.509018\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"35.350443\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"38.89525\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"38.130589\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"35.350443\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"23.361514\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"23.361514\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.389821\" y=\"38.130589\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"43.271232\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"22.366681\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.528214\" y=\"18.978438\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"16.937607\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.465714\" y=\"43.271232\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.113036\" y=\"51.879012\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"49.672746\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"51.879012\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.220179\" y=\"21.731651\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.974643\" y=\"55.294188\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.251429\" y=\"36.00776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"45.913861\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.528214\" y=\"20.232322\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"26.708698\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"38.130589\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.334205\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"51.879012\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"51.879012\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"14.98822\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"39.69246\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"36.688984\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.943393\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"32.097446\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"12.163065\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"14.771667\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"38.89525\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"48.991522\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"22.046475\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"58.338429\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.282679\" y=\"40.955744\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"34.101206\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"34.405792\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"37.395921\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.913861\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"39.289614\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"51.11435\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.28747\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"37.395921\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"27.120399\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"51.879012\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"43.271232\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"38.130589\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"36.00776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"49.672746\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"41.847894\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"32.370905\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"38.509018\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"31.300236\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"35.350443\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"45.354667\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"23.361514\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"58.897623\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"27.541351\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.943393\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"30.787009\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"26.107633\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.528214\" y=\"20.232322\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"29.326664\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"49.329037\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"50.379683\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.050536\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"32.930099\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"40.955744\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"59.474026\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"19.387143\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.541607\" y=\"19.525385\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.465714\" y=\"48.334205\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"14.136637\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"30.787009\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"29.326664\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"17.551813\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"47.699174\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"39.69246\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"28.191068\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"21.731651\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"18.84416\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.787009\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.697857\" y=\"51.879012\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"45.913861\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"27.120399\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"42.78467\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"17.058847\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.805\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"27.120399\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"10.721461\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.83625\" y=\"59.474026\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"27.541351\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.345276\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.113036\" y=\"36.345276\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"50.379683\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"33.506502\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"31.300236\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.421071\" y=\"48.334205\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.327321\" y=\"25.525256\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"40.104161\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.559464\" y=\"48.991522\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.084968\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"57.26776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"55.294188\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"41.396508\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"48.991522\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.541607\" y=\"12.163065\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"57.26776\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"31.827922\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"16.342902\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.104161\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"28.191068\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.71125\" y=\"30.787009\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"26.708698\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"24.055356\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"28.412746\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"36.345276\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"39.289614\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"22.692456\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"56.254994\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"25.525256\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.465714\" y=\"31.827922\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"54.38027\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"38.130589\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"48.334205\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.327321\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"26.708698\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"33.801494\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"49.672746\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"42.78467\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.541607\" y=\"22.528861\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.130589\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"53.508875\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"26.913417\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.465714\" y=\"24.775892\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"48.991522\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.327321\" y=\"25.911488\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"22.11008\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.699174\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"16.342902\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.465714\" y=\"30.535575\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"33.216084\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"26.708698\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.050536\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"36.688984\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"42.310426\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.83625\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.157679\" y=\"45.354667\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.974643\" y=\"37.395921\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.7425\" y=\"45.354667\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"28.864132\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"49.672746\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"38.89525\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.358571\" y=\"37.395921\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"44.283998\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.912143\" y=\"33.801494\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.849643\" y=\"11.700532\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"15.207306\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.83625\" y=\"43.770771\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"34.872163\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"45.354667\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.188929\" y=\"13.123871\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.434464\" y=\"31.300236\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"40.525113\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"31.827922\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.050536\" y=\"42.78467\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"37.395921\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.081786\" y=\"58.897623\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.988036\" y=\"36.688984\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.635357\" y=\"23.361514\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"20.232322\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"40.104161\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"52.676222\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"22.528861\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.264821\" y=\"31.300236\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.019286\" y=\"27.971982\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"34.715412\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.465714\" y=\"27.120399\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"25.146827\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"52.676222\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.604107\" y=\"41.396508\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"18.978438\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.77375\" y=\"27.120399\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.126429\" y=\"10.377752\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.880893\" y=\"45.354667\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.666607\" y=\"28.412746\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"21.117444\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"16.342902\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.296071\" y=\"21.117444\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.805\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"153.496964\" y=\"46.490264\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.403214\" y=\"15.207306\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.572857\" y=\"35.350443\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"50.379683\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"152.805\" y=\"54.38027\" xlink:href=\"#m85b5833208\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"155.849643\" y=\"16.342902\" xlink:href=\"#m85b5833208\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 154.396518 61.652856 L 151.885518 67.632456 L 156.907518 67.632456 z \" style=\"fill:#444443;\" />\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L 0 3.5 \" id=\"m29dfdc103a\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"61.652856\" xlink:href=\"#m29dfdc103a\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(7 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"156.68\" y=\"61.652856\" xlink:href=\"#m29dfdc103a\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" <path d=\"M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z \" id=\"DejaVuSans-56\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(146.5 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-50\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-56\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M -0.203125 72.90625 L 10.40625 72.90625 L 30.609375 42.921875 L 50.6875 72.90625 L 61.28125 72.90625 L 35.5 34.71875 L 35.5 0 L 25.59375 0 L 25.59375 34.71875 z \" id=\"DejaVuSans-89\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z \" id=\"DejaVuSans-77\" />\n",
" <path d=\"M 45.40625 46.390625 L 45.40625 75.984375 L 54.390625 75.984375 L 54.390625 0 L 45.40625 0 L 45.40625 8.203125 Q 42.578125 3.328125 38.25 0.953125 Q 33.9375 -1.421875 27.875 -1.421875 Q 17.96875 -1.421875 11.734375 6.484375 Q 5.515625 14.40625 5.515625 27.296875 Q 5.515625 40.1875 11.734375 48.09375 Q 17.96875 56 27.875 56 Q 33.9375 56 38.25 53.625 Q 42.578125 51.265625 45.40625 46.390625 z M 14.796875 27.296875 Q 14.796875 17.390625 18.875 11.75 Q 22.953125 6.109375 30.078125 6.109375 Q 37.203125 6.109375 41.296875 11.75 Q 45.40625 17.390625 45.40625 27.296875 Q 45.40625 37.203125 41.296875 42.84375 Q 37.203125 48.484375 30.078125 48.484375 Q 22.953125 48.484375 18.875 42.84375 Q 14.796875 37.203125 14.796875 27.296875 z \" id=\"DejaVuSans-100\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(62.06125 87.993793)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-89\" />\n",
" <use x=\"60.880859\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"122.404297\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"183.683594\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"224.796875\" xlink:href=\"#DejaVuSans-77\" />\n",
" <use x=\"311.076172\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"372.355469\" xlink:href=\"#DejaVuSans-100\" />\n",
" <use x=\"435.832031\" xlink:href=\"#DejaVuSans-101\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_3\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"m6c54404355\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"40.502593\" xlink:href=\"#m6c54404355\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" \n",
" <g style=\"fill:#444443;\" transform=\"translate(0 43.541968)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"3.039375\" xlink:href=\"#m6c54404355\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" \n",
" <g style=\"fill:#444443;\" transform=\"translate(0 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_5\">\n",
" <path clip-path=\"url(#pb43bd6f1b4)\" d=\"M 17.18 39.138529 L 154.396518 39.138529 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <path clip-path=\"url(#pb43bd6f1b4)\" d=\"M 154.396518 61.652856 L 154.396518 1.856856 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#pb43bd6f1b4)\" d=\"M 154.396518 34.079854 L 156.68 34.079854 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 17.18 61.652856 L 17.18 1.856856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 17.18 61.652856 L 156.68 61.652856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pb43bd6f1b4\">\n",
" <rect height=\"59.796\" width=\"139.5\" x=\"17.18\" y=\"1.856856\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge5\">\n",
"<title>node1-&gt;node4</title>\n",
"<path d=\"M298.1555,-92.5797C302.4269,-91.1751 306.733,-89.759 311.0169,-88.3502\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"311.5807,-89.6386 314.9432,-87.059 310.706,-86.9787 311.5807,-89.6386\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"</g>\n",
"\n",
"<g class=\"node\" id=\"node6\">\n",
"<title>leaf3</title>\n",
"<polygon fill=\"none\" points=\"415.5,-176 345.5,-176 345.5,-117 415.5,-117 415.5,-176\" stroke=\"#444443\" stroke-width=\"0\" />\n",
"<svg height=\"51px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 82.984375 68.293299\" width=\"62px\" x=\"349.5\" y=\"-171.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 68.293299 L 82.984375 68.293299 L 82.984375 0 L 0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 20.067187 45.667361 L 61.917187 45.667361 L 61.917187 2.179361 L 20.067187 2.179361 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m5152bb80f8\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p474bbdccff)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.15215\" y=\"17.573646\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.348299\" y=\"41.741643\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.211065\" y=\"22.502308\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.150252\" y=\"26.076493\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.220159\" y=\"26.538334\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.352097\" y=\"28.560258\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.478238\" y=\"36.459118\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.240995\" y=\"29.845051\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.958192\" y=\"33.035465\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.459165\" y=\"22.157404\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.526482\" y=\"27.016382\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.685688\" y=\"25.629798\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.811136\" y=\"26.076493\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.419485\" y=\"21.821016\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.185294\" y=\"42.861972\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.682386\" y=\"39.744466\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.380529\" y=\"38.002994\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.964571\" y=\"32.662209\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"31.799844\" y=\"21.331515\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.93556\" y=\"16.633757\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.851158\" y=\"25.629798\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.075408\" y=\"31.945044\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.199749\" y=\"31.60014\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.283293\" y=\"28.290487\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.505615\" y=\"13.962087\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.091091\" y=\"34.640022\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.999876\" y=\"27.016382\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.238268\" y=\"30.30173\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.981882\" y=\"30.935472\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.168243\" y=\"27.511818\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.75581\" y=\"19.673639\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.791336\" y=\"25.197286\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.065261\" y=\"14.928661\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.586284\" y=\"16.07764\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.719189\" y=\"34.22082\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.615184\" y=\"25.197286\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.26651\" y=\"38.559111\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.574008\" y=\"24.778084\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.045908\" y=\"22.502308\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.334485\" y=\"37.46869\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.990545\" y=\"42.478201\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.926016\" y=\"35.748192\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.448525\" y=\"17.213546\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.262664\" y=\"41.042876\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.226229\" y=\"31.60014\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.531133\" y=\"41.042876\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.790338\" y=\"19.117522\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.77883\" y=\"17.095598\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"32.62257\" y=\"13.962087\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.385631\" y=\"38.002994\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.61191\" y=\"29.403185\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.808113\" y=\"21.492736\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.588197\" y=\"20.253428\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.074741\" y=\"25.197286\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.953838\" y=\"22.502308\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.24413\" y=\"38.002994\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.097299\" y=\"33.035465\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.750428\" y=\"16.520703\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.720127\" y=\"39.438319\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.620229\" y=\"26.538334\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.432005\" y=\"35.519229\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.813923\" y=\"35.072534\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.337563\" y=\"41.042876\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.501502\" y=\"18.583218\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.598711\" y=\"23.219473\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.560851\" y=\"43.256869\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.846099\" y=\"41.042876\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.962971\" y=\"14.928661\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.161296\" y=\"27.511818\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.632173\" y=\"19.392743\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.50395\" y=\"25.411825\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.36415\" y=\"17.573646\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.235368\" y=\"37.46869\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.506406\" y=\"33.035465\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.358299\" y=\"19.673639\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.45228\" y=\"44.082758\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.787311\" y=\"38.002994\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.005167\" y=\"27.766461\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.522634\" y=\"39.1389\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.466753\" y=\"29.116375\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.336775\" y=\"35.519229\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.127135\" y=\"26.076493\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.618083\" y=\"35.519229\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.278999\" y=\"30.935472\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.865576\" y=\"43.74637\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.839105\" y=\"23.9765\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.660046\" y=\"24.778084\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.819842\" y=\"39.744466\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.371003\" y=\"15.75455\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.243755\" y=\"28.835479\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.660831\" y=\"43.256869\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.481857\" y=\"16.633757\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.99351\" y=\"33.814133\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.238398\" y=\"40.378208\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.80173\" y=\"26.076493\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.700473\" y=\"39.744466\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.29791\" y=\"42.478201\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.308097\" y=\"32.662209\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.674581\" y=\"36.459118\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.071676\" y=\"19.117522\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.990758\" y=\"29.116375\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.746607\" y=\"17.819112\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.328026\" y=\"28.560258\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.091801\" y=\"14.631421\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.583977\" y=\"30.30173\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.320789\" y=\"38.559111\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.054446\" y=\"36.954554\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.870446\" y=\"16.633757\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.451025\" y=\"41.042876\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.260597\" y=\"27.016382\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.700101\" y=\"15.543336\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.003701\" y=\"20.253428\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.914041\" y=\"35.98107\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"50.611779\" y=\"25.197286\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"49.825497\" y=\"38.559111\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.652106\" y=\"25.197286\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.292232\" y=\"30.30173\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.921292\" y=\"24.172518\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.905709\" y=\"43.256869\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.208693\" y=\"30.614916\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.325226\" y=\"34.22082\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.07029\" y=\"38.002994\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.863092\" y=\"22.856172\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.136952\" y=\"29.116375\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.804838\" y=\"38.559111\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.571971\" y=\"32.298908\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.727027\" y=\"31.263752\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.990675\" y=\"28.835479\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.425975\" y=\"23.592729\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.23315\" y=\"33.814133\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.511858\" y=\"43.663556\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.627735\" y=\"31.60014\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.018794\" y=\"30.30173\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.548027\" y=\"19.81629\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.682676\" y=\"15.543336\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.561427\" y=\"36.704584\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.915833\" y=\"37.46869\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.05987\" y=\"32.662209\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.238198\" y=\"24.778084\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.572711\" y=\"33.035465\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.000327\" y=\"30.30173\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.482607\" y=\"23.219473\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.180971\" y=\"22.157404\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.931051\" y=\"35.519229\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.438343\" y=\"29.696164\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.708945\" y=\"23.219473\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.957222\" y=\"19.117522\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.674276\" y=\"38.559111\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.391771\" y=\"25.197286\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.273366\" y=\"31.945044\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.573547\" y=\"13.235355\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.674072\" y=\"34.640022\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.817351\" y=\"44.082758\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.809921\" y=\"20.858994\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.046983\" y=\"27.261848\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.60248\" y=\"27.261848\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.00425\" y=\"23.592729\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.783314\" y=\"35.98107\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.414619\" y=\"19.392743\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.610487\" y=\"36.459118\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.036678\" y=\"35.072534\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.136264\" y=\"41.042876\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.314395\" y=\"30.935472\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.694082\" y=\"30.30173\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.4916\" y=\"12.714668\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.983073\" y=\"29.995583\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.595626\" y=\"20.253428\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.609786\" y=\"21.492736\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.513601\" y=\"41.741643\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.769343\" y=\"19.392743\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.643383\" y=\"40.378208\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.806004\" y=\"35.98107\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.627188\" y=\"26.076493\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.234265\" y=\"29.116375\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.002853\" y=\"28.560258\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.757936\" y=\"39.744466\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.515273\" y=\"36.459118\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.627864\" y=\"19.673639\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.835651\" y=\"35.519229\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.893555\" y=\"32.662209\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.191439\" y=\"31.60014\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.306703\" y=\"32.662209\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.819108\" y=\"28.025954\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.739437\" y=\"21.821016\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.736565\" y=\"28.025954\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"50.210828\" y=\"33.035465\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.691071\" y=\"25.411825\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.123074\" y=\"32.662209\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.868313\" y=\"26.190494\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.57605\" y=\"33.814133\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.631659\" y=\"10.373554\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.074582\" y=\"31.945044\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.172548\" y=\"43.663556\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.1268\" y=\"17.819112\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.076117\" y=\"15.543336\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.856389\" y=\"26.076493\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.428893\" y=\"20.552847\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.839742\" y=\"21.492736\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.704473\" y=\"34.640022\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.051921\" y=\"34.640022\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.029394\" y=\"37.46869\" xlink:href=\"#m5152bb80f8\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"31.509347\" y=\"40.378208\" xlink:href=\"#m5152bb80f8\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\" />\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"mdd4a93c874\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"20.067187\" y=\"30.285352\" xlink:href=\"#mdd4a93c874\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(2.887187 33.324727)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"20.067187\" y=\"3.039375\" xlink:href=\"#mdd4a93c874\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(2.887187 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#p474bbdccff)\" d=\"M 20.067187 29.293305 L 83.984375 29.293305 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 20.067187 45.667361 L 20.067187 2.179361 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 10.59375 45.40625 L 73.1875 45.40625 L 73.1875 37.203125 L 10.59375 37.203125 z M 10.59375 25.484375 L 73.1875 25.484375 L 73.1875 17.1875 L 10.59375 17.1875 z \" id=\"DejaVuSans-61\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" <path d=\"M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z \" id=\"DejaVuSans-55\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 55.015799)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"459.75\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"543.539062\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"607.162109\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"670.785156\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"702.572266\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"766.195312\" xlink:href=\"#DejaVuSans-55\" />\n",
" </g>\n",
" \n",
" <defs>\n",
" <path d=\"M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z \" id=\"DejaVuSans-110\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.589844 66.213611)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-110\" />\n",
" <use x=\"63.378906\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"147.167969\" xlink:href=\"#DejaVuSans-50\" />\n",
" <use x=\"210.791016\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"274.414062\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p474bbdccff\">\n",
" <rect height=\"43.488\" width=\"41.85\" x=\"20.067187\" y=\"2.179361\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge4\">\n",
"<title>node1-&gt;leaf3</title>\n",
"<path d=\"M298.1555,-128.8153C312.9018,-131.9823 328.0626,-135.2383 341.2924,-138.0796\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"341.1287,-139.4763 345.3336,-138.9475 341.7167,-136.7387 341.1287,-139.4763\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"</g>\n",
"\n",
"<g class=\"node\" id=\"node7\">\n",
"<title>leaf2</title>\n",
"<polygon fill=\"none\" points=\"264,-63 199,-63 199,-4 264,-4 264,-63\" stroke=\"#444443\" stroke-width=\"0\" />\n",
"<svg height=\"51px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 76.915937 68.293299\" width=\"57px\" x=\"203.5\" y=\"-58.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M -0 68.293299 L 76.915938 68.293299 L 76.915938 0 L -0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 17.18 45.667361 L 59.03 45.667361 L 59.03 2.179361 L 17.18 2.179361 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"mc52746b1e9\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#pb4ae4b0f0f)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.187763\" y=\"41.042876\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.796123\" y=\"33.814133\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.911827\" y=\"39.1389\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.434804\" y=\"48.001847\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.419059\" y=\"49.187202\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.878303\" y=\"45.423805\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.074229\" y=\"41.042876\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.322641\" y=\"44.082758\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.484403\" y=\"46.911426\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.033805\" y=\"43.256869\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.314109\" y=\"33.814133\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.779841\" y=\"38.559111\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.562291\" y=\"37.46869\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.177769\" y=\"35.519229\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"31.127075\" y=\"38.002994\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.349069\" y=\"33.814133\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.289687\" y=\"37.679904\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.179463\" y=\"38.559111\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.415075\" y=\"42.478201\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.560998\" y=\"44.961965\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.980728\" y=\"39.744466\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.222109\" y=\"44.082758\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.003885\" y=\"42.478201\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.826088\" y=\"43.256869\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.746116\" y=\"44.082758\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.287529\" y=\"38.559111\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.545659\" y=\"48.001847\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.454534\" y=\"49.187202\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.256847\" y=\"42.478201\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.780147\" y=\"40.378208\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.298851\" y=\"43.256869\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.449792\" y=\"48.001847\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.165787\" y=\"44.961965\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.738714\" y=\"38.002994\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.886431\" y=\"46.911426\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.703401\" y=\"39.744466\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.69013\" y=\"40.378208\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.100161\" y=\"44.082758\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"32.047988\" y=\"44.082758\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.852244\" y=\"42.861972\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.746632\" y=\"36.459118\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.673722\" y=\"44.082758\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.740213\" y=\"45.901854\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.004573\" y=\"44.082758\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.737516\" y=\"37.46869\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.196065\" y=\"37.46869\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.47184\" y=\"33.814133\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.806089\" y=\"38.002994\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.28193\" y=\"41.042876\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.315741\" y=\"37.46869\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.610934\" y=\"42.861972\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.740068\" y=\"41.741643\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"27.705927\" y=\"45.708617\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.908691\" y=\"42.478201\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.241881\" y=\"42.478201\" xlink:href=\"#mc52746b1e9\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.013558\" y=\"44.082758\" xlink:href=\"#mc52746b1e9\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\" />\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"mfeee40949e\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"30.285352\" xlink:href=\"#mfeee40949e\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 33.324727)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"3.039375\" xlink:href=\"#mfeee40949e\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#pb4ae4b0f0f)\" d=\"M 17.18 41.650696 L 77.915937 41.650696 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 17.18 45.667361 L 17.18 2.179361 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 10.59375 45.40625 L 73.1875 45.40625 L 73.1875 37.203125 L 10.59375 37.203125 z M 10.59375 25.484375 L 73.1875 25.484375 L 73.1875 17.1875 L 10.59375 17.1875 z \" id=\"DejaVuSans-61\" />\n",
" <path d=\"M 10.984375 1.515625 L 10.984375 10.5 Q 14.703125 8.734375 18.5 7.8125 Q 22.3125 6.890625 25.984375 6.890625 Q 35.75 6.890625 40.890625 13.453125 Q 46.046875 20.015625 46.78125 33.40625 Q 43.953125 29.203125 39.59375 26.953125 Q 35.25 24.703125 29.984375 24.703125 Q 19.046875 24.703125 12.671875 31.3125 Q 6.296875 37.9375 6.296875 49.421875 Q 6.296875 60.640625 12.9375 67.421875 Q 19.578125 74.21875 30.609375 74.21875 Q 43.265625 74.21875 49.921875 64.515625 Q 56.59375 54.828125 56.59375 36.375 Q 56.59375 19.140625 48.40625 8.859375 Q 40.234375 -1.421875 26.421875 -1.421875 Q 22.703125 -1.421875 18.890625 -0.6875 Q 15.09375 0.046875 10.984375 1.515625 z M 30.609375 32.421875 Q 37.25 32.421875 41.125 36.953125 Q 45.015625 41.5 45.015625 49.421875 Q 45.015625 57.28125 41.125 61.84375 Q 37.25 66.40625 30.609375 66.40625 Q 23.96875 66.40625 20.09375 61.84375 Q 16.21875 57.28125 16.21875 49.421875 Q 16.21875 41.5 20.09375 36.953125 Q 23.96875 32.421875 30.609375 32.421875 z \" id=\"DejaVuSans-57\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" <path d=\"M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z \" id=\"DejaVuSans-55\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0.294063 55.015799)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"459.75\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"543.539062\" xlink:href=\"#DejaVuSans-57\" />\n",
" <use x=\"607.162109\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"638.949219\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"702.572266\" xlink:href=\"#DejaVuSans-55\" />\n",
" </g>\n",
" \n",
" <defs>\n",
" <path d=\"M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z \" id=\"DejaVuSans-110\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" <path d=\"M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z \" id=\"DejaVuSans-54\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.883906 66.213611)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-110\" />\n",
" <use x=\"63.378906\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"147.167969\" xlink:href=\"#DejaVuSans-53\" />\n",
" <use x=\"210.791016\" xlink:href=\"#DejaVuSans-54\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pb4ae4b0f0f\">\n",
" <rect height=\"43.488\" width=\"41.85\" x=\"17.18\" y=\"2.179361\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"\n",
"<g class=\"node\" id=\"node3\">\n",
"<title>node0</title>\n",
"<svg height=\"68px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 176.719375 90.351606\" width=\"132px\" x=\"4\" y=\"-107.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 90.351606 L 176.719375 90.351606 L 176.719375 0 L 0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 30.858125 61.652856 L 170.358125 61.652856 L 170.358125 1.856856 L 30.858125 1.856856 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m847e57560d\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#pb68ddd7d99)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.023998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.023998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.800908\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.41216\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.857494\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.637079\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.535575\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.897179\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.817732\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.186843\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"52.676222\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"64.862774\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"66.492637\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.864132\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"61.317967\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.955744\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"170.358125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.795446\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.28747\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.509018\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.42203\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.69246\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"63.363445\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"58.338429\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.535575\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.191068\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"170.358125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.955744\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.78467\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.759653\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.058103\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.775892\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"47.699174\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.11435\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.911488\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"19.387143\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.966989\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.913861\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.041865\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.670102\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.039118\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.800908\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.117444\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"8.438268\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.013999\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.528861\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.84416\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.366681\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"60.682936\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.058103\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"13.62341\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.026371\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.077733\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.289614\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.412746\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.041865\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.800908\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.046475\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.576201\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.42203\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"14.664323\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.087922\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"58.338429\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.186843\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.084968\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.84416\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.41216\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"19.387143\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"64.862774\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.525256\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.801494\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.023998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"66.492637\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.705223\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.911488\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.039118\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"54.202718\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"52.676222\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.888401\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.966989\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"15.428984\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.370905\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.084968\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.011494\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.366681\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"54.38027\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.271232\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.52274\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.509018\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.911488\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.800908\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"13.929655\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"54.38027\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.107633\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.535575\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.759653\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"58.338429\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.509018\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"64.862774\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"60.682936\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.271232\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.366681\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.978438\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.11435\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.937607\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.271232\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"63.363445\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.913861\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.334205\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"14.98822\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.69246\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.097446\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"12.163065\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"14.771667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.046475\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.955744\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.405792\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.913861\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.289614\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.28747\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"54.38027\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.271232\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.847894\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.370905\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.509018\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.897623\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.541351\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.107633\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"170.358125\" y=\"57.795446\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"48.991522\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.329037\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.955744\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"19.387143\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"19.525385\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.334205\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"14.136637\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"17.551813\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"61.975284\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.69246\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.191068\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"170.358125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.84416\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.913861\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.78467\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"17.058847\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"10.721461\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.541351\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.334205\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.525256\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.084968\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"12.163065\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.342902\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.191068\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.055356\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.412746\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.289614\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.692456\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.525256\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"54.38027\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.334205\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.11435\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"55.294188\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.801494\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.795446\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.78467\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.528861\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.913417\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.775892\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.911488\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.11008\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.342902\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.535575\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.216084\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.864132\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.801494\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"11.700532\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"15.207306\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.872163\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"13.123871\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.78467\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.897623\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"56.254994\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"52.676222\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.528861\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.971982\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"61.709583\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"52.676222\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.978438\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"10.377752\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.412746\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.117444\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.342902\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.117444\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"15.207306\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"54.38027\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m847e57560d\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.342902\" xlink:href=\"#m847e57560d\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 65.733125 61.652856 L 63.222125 67.632456 L 68.244125 67.632456 z \" style=\"fill:#444443;\" />\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L 0 3.5 \" id=\"m5e03df837d\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"30.858125\" y=\"61.652856\" xlink:href=\"#m5e03df837d\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.496875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"170.358125\" y=\"61.652856\" xlink:href=\"#m5e03df837d\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(163.996875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-50\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_3\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"65.733125\" y=\"61.652856\" xlink:href=\"#m5e03df837d\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(59.371875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" \n",
" <defs>\n",
" <path d=\"M 64.40625 67.28125 L 64.40625 56.890625 Q 59.421875 61.53125 53.78125 63.8125 Q 48.140625 66.109375 41.796875 66.109375 Q 29.296875 66.109375 22.65625 58.46875 Q 16.015625 50.828125 16.015625 36.375 Q 16.015625 21.96875 22.65625 14.328125 Q 29.296875 6.6875 41.796875 6.6875 Q 48.140625 6.6875 53.78125 8.984375 Q 59.421875 11.28125 64.40625 15.921875 L 64.40625 5.609375 Q 59.234375 2.09375 53.4375 0.328125 Q 47.65625 -1.421875 41.21875 -1.421875 Q 24.65625 -1.421875 15.125 8.703125 Q 5.609375 18.84375 5.609375 36.375 Q 5.609375 53.953125 15.125 64.078125 Q 24.65625 74.21875 41.21875 74.21875 Q 47.75 74.21875 53.53125 72.484375 Q 59.328125 70.75 64.40625 67.28125 z \" id=\"DejaVuSans-67\" />\n",
" <path d=\"M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z \" id=\"DejaVuSans-111\" />\n",
" <path d=\"M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z \" id=\"DejaVuSans-117\" />\n",
" <path d=\"M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z \" id=\"DejaVuSans-112\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 50.984375 -16.609375 L 50.984375 -23.578125 L -0.984375 -23.578125 L -0.984375 -16.609375 z \" id=\"DejaVuSans-95\" />\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z \" id=\"DejaVuSans-121\" />\n",
" <path d=\"M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z \" id=\"DejaVuSans-115\" />\n",
" <path d=\"M 18.3125 70.21875 L 18.3125 54.6875 L 36.8125 54.6875 L 36.8125 47.703125 L 18.3125 47.703125 L 18.3125 18.015625 Q 18.3125 11.328125 20.140625 9.421875 Q 21.96875 7.515625 27.59375 7.515625 L 36.8125 7.515625 L 36.8125 0 L 27.59375 0 Q 17.1875 0 13.234375 3.875 Q 9.28125 7.765625 9.28125 18.015625 L 9.28125 47.703125 L 2.6875 47.703125 L 2.6875 54.6875 L 9.28125 54.6875 L 9.28125 70.21875 z \" id=\"DejaVuSans-116\" />\n",
" <path d=\"M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z \" id=\"DejaVuSans-109\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(60.047969 87.993793)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-67\" />\n",
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-111\" />\n",
" <use x=\"131.005859\" xlink:href=\"#DejaVuSans-117\" />\n",
" <use x=\"194.384766\" xlink:href=\"#DejaVuSans-112\" />\n",
" <use x=\"257.861328\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"285.644531\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"347.167969\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"388.28125\" xlink:href=\"#DejaVuSans-95\" />\n",
" <use x=\"438.28125\" xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"501.757812\" xlink:href=\"#DejaVuSans-121\" />\n",
" <use x=\"560.9375\" xlink:href=\"#DejaVuSans-115\" />\n",
" <use x=\"613.037109\" xlink:href=\"#DejaVuSans-116\" />\n",
" <use x=\"652.246094\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"713.769531\" xlink:href=\"#DejaVuSans-109\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_4\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"m600a6886f9\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"30.858125\" y=\"40.502593\" xlink:href=\"#m600a6886f9\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(13.678125 43.541968)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"30.858125\" y=\"3.039375\" xlink:href=\"#m600a6886f9\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" \n",
" <g style=\"fill:#444443;\" transform=\"translate(13.678125 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" \n",
" <defs>\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(7.598437 54.743137)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <path clip-path=\"url(#pb68ddd7d99)\" d=\"M 30.858125 36.381323 L 65.733125 36.381323 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#pb68ddd7d99)\" d=\"M 65.733125 61.652856 L 65.733125 1.856856 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <path clip-path=\"url(#pb68ddd7d99)\" d=\"M 65.733125 56.129942 L 170.358125 56.129942 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 30.858125 61.652856 L 30.858125 1.856856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 30.858125 61.652856 L 170.358125 61.652856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pb68ddd7d99\">\n",
" <rect height=\"59.796\" width=\"139.5\" x=\"30.858125\" y=\"1.856856\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge7\">\n",
"<title>node0-&gt;node1</title>\n",
"<path d=\"M140.3664,-91.3639C147.1241,-93.0795 153.9804,-94.8201 160.7418,-96.5366\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"160.7162,-97.9745 164.9377,-97.6018 161.4052,-95.2605 160.7162,-97.9745\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<text fill=\"#000000\" font-family=\"Times,serif\" font-size=\"14.00\" text-anchor=\"start\" x=\"148\" y=\"-98.3\">&lt;</text>\n",
"</g>\n",
"\n",
"<g class=\"edge\" id=\"edge8\">\n",
"<title>node0-&gt;leaf2</title>\n",
"<path d=\"M140.3664,-56.0718C159.1731,-51.4138 178.7438,-46.5665 194.9064,-42.5634\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"195.3935,-43.8852 198.9395,-41.5645 194.7202,-41.1673 195.3935,-43.8852\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<text fill=\"#000000\" font-family=\"Times,serif\" font-size=\"14.00\" text-anchor=\"start\" x=\"148\" y=\"-57.3\">&#8805;</text>\n",
"</g>\n",
"\n",
"\n",
"</g>\n",
"</svg>"
],
"text/plain": [
"<dtreeviz.trees.DTreeViz at 0x7f7b15b5c290>"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"samp_idx = np.random.permutation(len(y))[:500]\n",
"dtreeviz(m, xs.iloc[samp_idx], y.iloc[samp_idx], xs.columns, dep_var,\n",
" fontname='DejaVu Sans', scale=1.6, label_fontsize=10,\n",
" orientation='LR')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"xs.loc[xs['YearMade']<1900, 'YearMade'] = 1950\n",
"valid_xs.loc[valid_xs['YearMade']<1900, 'YearMade'] = 1950"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"294.40000000000003\" viewBox=\"0.0 0.0 870.4000000000001 294.40000000000003\" width=\"870.4000000000001\">\n",
"<g class=\"graph\" id=\"graph0\" transform=\"scale(1.6 1.6) rotate(0) translate(4 180)\">\n",
"<title>G</title>\n",
"<polygon fill=\"#ffffff\" points=\"-4,4 -4,-180 540,-180 540,4 -4,4\" stroke=\"transparent\" />\n",
"\n",
"<g class=\"node\" id=\"node1\">\n",
"<title>node4</title>\n",
"<svg height=\"68px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 163.04125 90.073481\" width=\"123px\" x=\"322.5\" y=\"-99.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 90.073481 L 163.04125 90.073481 L 163.04125 -0 L 0 -0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 17.18 61.652856 L 156.68 61.652856 L 156.68 1.856856 L 17.18 1.856856 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m11519c9715\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p3e90d72a52)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"23.023998\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.104161\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"29.326664\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"24.41216\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"53.508875\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"22.857494\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"25.146827\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"28.637079\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"30.535575\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"20.817732\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"23.361514\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"18.186843\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"41.396508\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.300236\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"44.283998\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"40.955744\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"58.338429\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"46.490264\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.28747\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.509018\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"21.42203\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"39.69246\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"37.395921\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"29.326664\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"30.535575\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"36.00776\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"40.955744\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.731651\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.101206\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.991522\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"56.254994\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"24.775892\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.699174\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"44.283998\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.715412\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.146827\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"23.361514\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.930099\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"45.354667\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.041865\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.43\" y=\"25.146827\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"36.00776\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.039118\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.117444\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"8.438268\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"20.232322\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.345276\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"44.283998\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"18.84416\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.300236\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"36.688984\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.101206\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"13.62341\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"31.300236\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"20.232322\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.026371\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"41.396508\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.077733\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"31.041865\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"49.672746\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"22.046475\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"53.508875\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.395921\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"36.345276\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"27.120399\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"21.42203\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"14.664323\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"53.508875\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"18.186843\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"38.130589\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"56.254994\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"18.84416\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"58.338429\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"53.508875\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"23.705223\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"41.396508\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"54.202718\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.888401\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"20.966989\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"56.254994\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"15.428984\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.370905\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.084968\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"50.379683\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.827922\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"22.366681\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.271232\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"59.474026\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"35.350443\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"29.326664\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.911488\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"29.800908\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"13.929655\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.930099\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.104161\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"26.107633\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.535575\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.759653\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.509018\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"35.350443\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.146827\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"38.130589\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"35.350443\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"23.361514\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"43.271232\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"22.366681\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"16.937607\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.271232\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"44.283998\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"51.879012\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"46.490264\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.913861\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"38.130589\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"51.879012\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"14.98822\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"39.69246\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.688984\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"12.163065\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"14.771667\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"38.89525\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.991522\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"22.046475\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"33.506502\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.101206\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.405792\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.395921\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"39.289614\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.395921\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"27.120399\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.715412\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"34.715412\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"38.130589\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"46.490264\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"36.00776\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"49.672746\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.370905\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"35.350443\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"23.361514\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"27.541351\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.787009\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"29.326664\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"40.955744\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"59.474026\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"19.387143\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"19.525385\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.334205\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"14.136637\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"17.551813\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"28.191068\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"21.731651\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"18.84416\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.913861\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"27.120399\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"42.310426\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"27.120399\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"10.721461\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"50.379683\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.715412\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.104161\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.146827\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"57.26776\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.991522\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"12.163065\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"57.26776\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"31.827922\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"28.191068\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.787009\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"24.055356\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.345276\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"39.289614\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"22.692456\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"31.827922\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.130589\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"26.708698\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"34.715412\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"33.801494\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"49.672746\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.78467\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"46.490264\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"22.528861\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"44.283998\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"26.913417\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.43\" y=\"24.775892\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"22.11008\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"16.342902\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.535575\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.18\" y=\"33.216084\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"26.708698\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"36.688984\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"46.490264\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.354667\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.354667\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"49.672746\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"11.700532\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"15.207306\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"31.300236\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"31.827922\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.395921\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.688984\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"40.104161\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"156.68\" y=\"52.676222\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"22.528861\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"31.300236\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"27.971982\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"34.715412\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"27.120399\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"25.146827\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"133.43\" y=\"52.676222\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"41.396508\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"18.978438\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"10.377752\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.354667\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.117444\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"16.342902\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"63.68\" y=\"21.117444\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"15.207306\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"35.350443\" xlink:href=\"#m11519c9715\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"16.342902\" xlink:href=\"#m11519c9715\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 121.805 61.652856 L 119.294 67.632456 L 124.316 67.632456 z \" style=\"fill:#444443;\" />\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L 0 3.5 \" id=\"md67d0b2cc0\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"61.652856\" xlink:href=\"#md67d0b2cc0\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(10.81875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"156.68\" y=\"61.652856\" xlink:href=\"#md67d0b2cc0\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z \" id=\"DejaVuSans-54\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(150.31875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-54\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_3\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"121.805\" y=\"61.652856\" xlink:href=\"#md67d0b2cc0\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z \" id=\"DejaVuSans-52\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(115.44375 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-52\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z \" id=\"DejaVuSans-111\" />\n",
" <path d=\"M 45.40625 46.390625 L 45.40625 75.984375 L 54.390625 75.984375 L 54.390625 0 L 45.40625 0 L 45.40625 8.203125 Q 42.578125 3.328125 38.25 0.953125 Q 33.9375 -1.421875 27.875 -1.421875 Q 17.96875 -1.421875 11.734375 6.484375 Q 5.515625 14.40625 5.515625 27.296875 Q 5.515625 40.1875 11.734375 48.09375 Q 17.96875 56 27.875 56 Q 33.9375 56 38.25 53.625 Q 42.578125 51.265625 45.40625 46.390625 z M 14.796875 27.296875 Q 14.796875 17.390625 18.875 11.75 Q 22.953125 6.109375 30.078125 6.109375 Q 37.203125 6.109375 41.296875 11.75 Q 45.40625 17.390625 45.40625 27.296875 Q 45.40625 37.203125 41.296875 42.84375 Q 37.203125 48.484375 30.078125 48.484375 Q 22.953125 48.484375 18.875 42.84375 Q 14.796875 37.203125 14.796875 27.296875 z \" id=\"DejaVuSans-100\" />\n",
" <path d=\"M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z \" id=\"DejaVuSans-117\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 18.3125 70.21875 L 18.3125 54.6875 L 36.8125 54.6875 L 36.8125 47.703125 L 18.3125 47.703125 L 18.3125 18.015625 Q 18.3125 11.328125 20.140625 9.421875 Q 21.96875 7.515625 27.59375 7.515625 L 36.8125 7.515625 L 36.8125 0 L 27.59375 0 Q 17.1875 0 13.234375 3.875 Q 9.28125 7.765625 9.28125 18.015625 L 9.28125 47.703125 L 2.6875 47.703125 L 2.6875 54.6875 L 9.28125 54.6875 L 9.28125 70.21875 z \" id=\"DejaVuSans-116\" />\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 5.515625 54.6875 L 48.1875 54.6875 L 48.1875 46.484375 L 14.40625 7.171875 L 48.1875 7.171875 L 48.1875 0 L 4.296875 0 L 4.296875 8.203125 L 38.09375 47.515625 L 5.515625 47.515625 z \" id=\"DejaVuSans-122\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(57.48625 87.993793)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"60.287109\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"101.369141\" xlink:href=\"#DejaVuSans-111\" />\n",
" <use x=\"162.550781\" xlink:href=\"#DejaVuSans-100\" />\n",
" <use x=\"226.027344\" xlink:href=\"#DejaVuSans-117\" />\n",
" <use x=\"289.40625\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"344.386719\" xlink:href=\"#DejaVuSans-116\" />\n",
" <use x=\"383.595703\" xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"447.072266\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"474.855469\" xlink:href=\"#DejaVuSans-122\" />\n",
" <use x=\"527.345703\" xlink:href=\"#DejaVuSans-101\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_4\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"m78c618a134\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"40.502593\" xlink:href=\"#m78c618a134\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 43.541968)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"3.039375\" xlink:href=\"#m78c618a134\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <path clip-path=\"url(#p3e90d72a52)\" d=\"M 17.18 32.022711 L 121.805 32.022711 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#p3e90d72a52)\" d=\"M 121.805 61.652856 L 121.805 1.856856 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <path clip-path=\"url(#p3e90d72a52)\" d=\"M 121.805 48.616994 L 156.68 48.616994 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 17.18 61.652856 L 17.18 1.856856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 17.18 61.652856 L 156.68 61.652856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p3e90d72a52\">\n",
" <rect height=\"59.796\" width=\"139.5\" x=\"17.18\" y=\"1.856856\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"node\" id=\"node4\">\n",
"<title>leaf5</title>\n",
"<polygon fill=\"none\" points=\"536,-132 466,-132 466,-73 536,-73 536,-132\" stroke=\"#444443\" stroke-width=\"0\" />\n",
"<svg height=\"51px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 82.984375 68.293299\" width=\"62px\" x=\"470\" y=\"-127.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 68.293299 L 82.984375 68.293299 L 82.984375 0 L 0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 20.067187 45.667361 L 61.917187 45.667361 L 61.917187 2.179361 L 20.067187 2.179361 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"mc2c3ea3e17\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p4aecf8e123)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.259281\" y=\"25.197286\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.457121\" y=\"17.573646\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.351633\" y=\"29.995583\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.549533\" y=\"22.157404\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.318404\" y=\"18.583218\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.930912\" y=\"17.452552\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.860321\" y=\"19.117522\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.303113\" y=\"21.655887\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.445286\" y=\"23.036611\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.647352\" y=\"15.969089\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.649989\" y=\"17.819112\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.356903\" y=\"14.055716\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.646103\" y=\"30.935472\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.185324\" y=\"23.592729\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.378557\" y=\"33.035465\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.533491\" y=\"30.614916\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.990482\" y=\"34.640022\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.028485\" y=\"22.856172\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.81598\" y=\"28.835479\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.505667\" y=\"16.408579\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.039693\" y=\"28.025954\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.588389\" y=\"32.662209\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.280875\" y=\"31.60014\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.780632\" y=\"22.157404\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.014986\" y=\"23.036611\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.167808\" y=\"27.016382\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.183688\" y=\"16.633757\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.34143\" y=\"25.629798\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.743463\" y=\"31.60014\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.541029\" y=\"30.30173\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.131323\" y=\"36.459118\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.289965\" y=\"18.847751\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.77603\" y=\"35.519229\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.499097\" y=\"33.035465\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.184299\" y=\"26.076493\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.643045\" y=\"25.197286\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.480571\" y=\"19.117522\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.636641\" y=\"17.819112\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.881335\" y=\"24.778084\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.799079\" y=\"29.116375\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.515601\" y=\"23.404822\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.635285\" y=\"19.117522\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.953342\" y=\"27.016382\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.345359\" y=\"27.766461\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.973553\" y=\"16.187062\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.426491\" y=\"6.965843\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.982813\" y=\"15.543336\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.432103\" y=\"27.261848\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.883905\" y=\"14.533764\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.519418\" y=\"23.592729\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.791805\" y=\"32.662209\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.661873\" y=\"25.629798\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.191526\" y=\"10.736855\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.730225\" y=\"23.592729\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.489943\" y=\"15.543336\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.391688\" y=\"32.120827\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.915225\" y=\"30.935472\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.620587\" y=\"31.430908\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.667028\" y=\"23.404822\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.00031\" y=\"16.86272\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.750315\" y=\"39.744466\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.21844\" y=\"28.025954\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.063435\" y=\"27.261848\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.85371\" y=\"20.552847\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.496219\" y=\"16.408579\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.003758\" y=\"11.493882\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.682936\" y=\"14.055716\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.815095\" y=\"28.560258\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.98879\" y=\"14.533764\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.916229\" y=\"30.30173\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.866469\" y=\"18.069082\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.293663\" y=\"30.935472\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.936211\" y=\"16.747758\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.857969\" y=\"16.07764\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.813214\" y=\"41.741643\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.372445\" y=\"12.05\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.794403\" y=\"24.371397\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.644604\" y=\"35.072534\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.102362\" y=\"23.9765\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.922488\" y=\"17.095598\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.806824\" y=\"29.116375\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.28399\" y=\"32.298908\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.414402\" y=\"26.538334\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.183388\" y=\"22.157404\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.602568\" y=\"19.673639\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.941403\" y=\"22.502308\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.146152\" y=\"10.959579\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.558187\" y=\"25.197286\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.2205\" y=\"24.778084\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.089984\" y=\"29.995583\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.884874\" y=\"19.81629\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.851412\" y=\"23.036611\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.716218\" y=\"30.30173\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.497533\" y=\"28.290487\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.569019\" y=\"32.662209\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.178466\" y=\"28.835479\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.107667\" y=\"26.538334\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.551565\" y=\"19.117522\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.413477\" y=\"28.560258\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.787952\" y=\"26.538334\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.941681\" y=\"17.819112\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.042572\" y=\"32.298908\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.765524\" y=\"17.095598\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.515337\" y=\"13.14718\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.2706\" y=\"32.298908\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.070425\" y=\"33.035465\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.095948\" y=\"32.662209\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.768873\" y=\"34.640022\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.120839\" y=\"34.22082\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.033168\" y=\"28.560258\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.920386\" y=\"38.559111\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.411328\" y=\"11.729444\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.323116\" y=\"29.696164\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.982269\" y=\"27.511818\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.891408\" y=\"9.674786\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.598463\" y=\"11.571951\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.990325\" y=\"36.459118\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.105319\" y=\"16.86272\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.539071\" y=\"25.197286\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.068216\" y=\"25.629798\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.412713\" y=\"25.851315\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.074535\" y=\"28.025954\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.900866\" y=\"29.403185\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.713895\" y=\"28.025954\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.692909\" y=\"20.552847\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.974078\" y=\"26.076493\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.534125\" y=\"26.076493\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.984868\" y=\"28.560258\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.112451\" y=\"34.640022\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.70229\" y=\"24.371397\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.527592\" y=\"26.538334\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"31.969742\" y=\"17.819112\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.721179\" y=\"31.60014\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.816032\" y=\"20.858994\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.521781\" y=\"23.219473\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.633684\" y=\"22.157404\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.211928\" y=\"30.614916\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.887488\" y=\"14.928661\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.365916\" y=\"15.0292\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.669086\" y=\"35.98107\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.852108\" y=\"25.197286\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.082991\" y=\"11.110111\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.165249\" y=\"13.593875\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.517914\" y=\"25.197286\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.691735\" y=\"21.331515\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.871481\" y=\"16.633757\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.035891\" y=\"14.533764\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.931902\" y=\"34.22082\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.627282\" y=\"20.552847\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.40253\" y=\"31.60014\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.155196\" y=\"20.552847\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.975903\" y=\"8.626346\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.111756\" y=\"37.46869\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.181555\" y=\"25.197286\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.539142\" y=\"26.076493\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.423314\" y=\"31.60014\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.269987\" y=\"29.995583\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.074317\" y=\"19.117522\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.503858\" y=\"36.459118\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.580467\" y=\"9.674786\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.444271\" y=\"42.478201\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.616181\" y=\"32.662209\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.195608\" y=\"23.9765\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.986267\" y=\"21.331515\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.200871\" y=\"23.219473\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.747611\" y=\"31.60014\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.632729\" y=\"18.323725\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.091959\" y=\"27.261848\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.577482\" y=\"29.403185\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.501745\" y=\"30.30173\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.627289\" y=\"17.332525\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.029303\" y=\"23.9765\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.613494\" y=\"28.560258\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.339947\" y=\"20.253428\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.55254\" y=\"26.076493\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.748643\" y=\"25.411825\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.451126\" y=\"31.945044\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.318373\" y=\"17.213546\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.523182\" y=\"33.035465\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.271163\" y=\"18.847751\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.391669\" y=\"16.908978\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.930084\" y=\"12.714668\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.769716\" y=\"23.036611\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.630033\" y=\"24.986072\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.44577\" y=\"20.253428\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.884241\" y=\"34.640022\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.783835\" y=\"33.814133\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.48306\" y=\"33.814133\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.443273\" y=\"29.116375\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.805133\" y=\"9.338399\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.81602\" y=\"11.888779\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.123893\" y=\"23.592729\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.537643\" y=\"30.30173\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.963873\" y=\"23.9765\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.021986\" y=\"28.025954\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.161212\" y=\"27.511818\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.343803\" y=\"17.213546\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.986261\" y=\"23.592729\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.786451\" y=\"21.17218\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.448906\" y=\"26.076493\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.518442\" y=\"20.552847\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.31589\" y=\"19.117522\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.79785\" y=\"30.935472\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.331527\" y=\"14.631421\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.861128\" y=\"8.376376\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.687061\" y=\"33.814133\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.615087\" y=\"16.187062\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.958006\" y=\"12.714668\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.692491\" y=\"16.187062\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.91312\" y=\"11.888779\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.378273\" y=\"26.538334\" xlink:href=\"#mc2c3ea3e17\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.893279\" y=\"12.714668\" xlink:href=\"#mc2c3ea3e17\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\" />\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"me265ed0184\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"20.067187\" y=\"30.285352\" xlink:href=\"#me265ed0184\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(2.887187 33.324727)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"20.067187\" y=\"3.039375\" xlink:href=\"#me265ed0184\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(2.887187 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#p4aecf8e123)\" d=\"M 20.067187 24.118165 L 83.984375 24.118165 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 20.067187 45.667361 L 20.067187 2.179361 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 10.59375 45.40625 L 73.1875 45.40625 L 73.1875 37.203125 L 10.59375 37.203125 z M 10.59375 25.484375 L 73.1875 25.484375 L 73.1875 17.1875 L 10.59375 17.1875 z \" id=\"DejaVuSans-61\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" <path d=\"M 37.796875 64.3125 L 12.890625 25.390625 L 37.796875 25.390625 z M 35.203125 72.90625 L 47.609375 72.90625 L 47.609375 25.390625 L 58.015625 25.390625 L 58.015625 17.1875 L 47.609375 17.1875 L 47.609375 0 L 37.796875 0 L 37.796875 17.1875 L 4.890625 17.1875 L 4.890625 26.703125 z \" id=\"DejaVuSans-52\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 55.015799)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"459.75\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"543.539062\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"607.162109\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"670.785156\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"702.572266\" xlink:href=\"#DejaVuSans-52\" />\n",
" <use x=\"766.195312\" xlink:href=\"#DejaVuSans-53\" />\n",
" </g>\n",
" \n",
" <defs>\n",
" <path d=\"M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z \" id=\"DejaVuSans-110\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.589844 66.213611)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-110\" />\n",
" <use x=\"63.378906\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"147.167969\" xlink:href=\"#DejaVuSans-50\" />\n",
" <use x=\"210.791016\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"274.414062\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p4aecf8e123\">\n",
" <rect height=\"43.488\" width=\"41.85\" x=\"20.067187\" y=\"2.179361\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge1\">\n",
"<title>node4-&gt;leaf5</title>\n",
"<path d=\"M449.1208,-86.1636C453.548,-87.5577 457.9224,-88.9351 462.1416,-90.2638\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"461.7341,-91.6031 465.9699,-91.4692 462.5751,-88.9324 461.7341,-91.6031\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"</g>\n",
"\n",
"<g class=\"node\" id=\"node5\">\n",
"<title>leaf6</title>\n",
"<polygon fill=\"none\" points=\"533.5,-59 468.5,-59 468.5,0 533.5,0 533.5,-59\" stroke=\"#444443\" stroke-width=\"0\" />\n",
"<svg height=\"51px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 76.915937 68.293299\" width=\"57px\" x=\"473\" y=\"-54.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M -0 68.293299 L 76.915938 68.293299 L 76.915938 0 L -0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 17.18 45.667361 L 59.03 45.667361 L 59.03 2.179361 L 17.18 2.179361 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"mae883dc4b5\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p7ae8c0f203)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.699528\" y=\"39.744466\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.894712\" y=\"43.256869\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.649546\" y=\"29.696164\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.215818\" y=\"30.614916\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.691837\" y=\"41.741643\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.035389\" y=\"33.814133\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.426255\" y=\"33.035465\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.155859\" y=\"27.511818\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.12128\" y=\"36.954554\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.06503\" y=\"39.744466\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.416309\" y=\"41.741643\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.660352\" y=\"43.256869\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.393141\" y=\"39.744466\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.350991\" y=\"40.249079\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.943103\" y=\"37.46869\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.968604\" y=\"44.082758\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"31.81733\" y=\"38.559111\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.341741\" y=\"29.116375\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.683195\" y=\"27.016382\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.700408\" y=\"36.954554\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.966673\" y=\"44.082758\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.279779\" y=\"42.478201\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.728679\" y=\"36.954554\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.169781\" y=\"34.640022\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.809464\" y=\"20.402315\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.429948\" y=\"27.511818\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.376954\" y=\"36.954554\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.52498\" y=\"29.995583\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.283861\" y=\"39.1389\" xlink:href=\"#mae883dc4b5\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.147515\" y=\"39.1389\" xlink:href=\"#mae883dc4b5\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\" />\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"m601fbf2ea6\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"30.285352\" xlink:href=\"#m601fbf2ea6\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 33.324727)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"3.039375\" xlink:href=\"#m601fbf2ea6\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#p7ae8c0f203)\" d=\"M 17.18 36.186734 L 77.915937 36.186734 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 17.18 45.667361 L 17.18 2.179361 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 10.59375 45.40625 L 73.1875 45.40625 L 73.1875 37.203125 L 10.59375 37.203125 z M 10.59375 25.484375 L 73.1875 25.484375 L 73.1875 17.1875 L 10.59375 17.1875 z \" id=\"DejaVuSans-61\" />\n",
" <path d=\"M 10.984375 1.515625 L 10.984375 10.5 Q 14.703125 8.734375 18.5 7.8125 Q 22.3125 6.890625 25.984375 6.890625 Q 35.75 6.890625 40.890625 13.453125 Q 46.046875 20.015625 46.78125 33.40625 Q 43.953125 29.203125 39.59375 26.953125 Q 35.25 24.703125 29.984375 24.703125 Q 19.046875 24.703125 12.671875 31.3125 Q 6.296875 37.9375 6.296875 49.421875 Q 6.296875 60.640625 12.9375 67.421875 Q 19.578125 74.21875 30.609375 74.21875 Q 43.265625 74.21875 49.921875 64.515625 Q 56.59375 54.828125 56.59375 36.375 Q 56.59375 19.140625 48.40625 8.859375 Q 40.234375 -1.421875 26.421875 -1.421875 Q 22.703125 -1.421875 18.890625 -0.6875 Q 15.09375 0.046875 10.984375 1.515625 z M 30.609375 32.421875 Q 37.25 32.421875 41.125 36.953125 Q 45.015625 41.5 45.015625 49.421875 Q 45.015625 57.28125 41.125 61.84375 Q 37.25 66.40625 30.609375 66.40625 Q 23.96875 66.40625 20.09375 61.84375 Q 16.21875 57.28125 16.21875 49.421875 Q 16.21875 41.5 20.09375 36.953125 Q 23.96875 32.421875 30.609375 32.421875 z \" id=\"DejaVuSans-57\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" <path d=\"M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z \" id=\"DejaVuSans-55\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0.294063 55.015799)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"459.75\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"543.539062\" xlink:href=\"#DejaVuSans-57\" />\n",
" <use x=\"607.162109\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"638.949219\" xlink:href=\"#DejaVuSans-53\" />\n",
" <use x=\"702.572266\" xlink:href=\"#DejaVuSans-55\" />\n",
" </g>\n",
" \n",
" <defs>\n",
" <path d=\"M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z \" id=\"DejaVuSans-110\" />\n",
" <path d=\"M 40.578125 39.3125 Q 47.65625 37.796875 51.625 33 Q 55.609375 28.21875 55.609375 21.1875 Q 55.609375 10.40625 48.1875 4.484375 Q 40.765625 -1.421875 27.09375 -1.421875 Q 22.515625 -1.421875 17.65625 -0.515625 Q 12.796875 0.390625 7.625 2.203125 L 7.625 11.71875 Q 11.71875 9.328125 16.59375 8.109375 Q 21.484375 6.890625 26.8125 6.890625 Q 36.078125 6.890625 40.9375 10.546875 Q 45.796875 14.203125 45.796875 21.1875 Q 45.796875 27.640625 41.28125 31.265625 Q 36.765625 34.90625 28.71875 34.90625 L 20.21875 34.90625 L 20.21875 43.015625 L 29.109375 43.015625 Q 36.375 43.015625 40.234375 45.921875 Q 44.09375 48.828125 44.09375 54.296875 Q 44.09375 59.90625 40.109375 62.90625 Q 36.140625 65.921875 28.71875 65.921875 Q 24.65625 65.921875 20.015625 65.03125 Q 15.375 64.15625 9.8125 62.3125 L 9.8125 71.09375 Q 15.4375 72.65625 20.34375 73.4375 Q 25.25 74.21875 29.59375 74.21875 Q 40.828125 74.21875 47.359375 69.109375 Q 53.90625 64.015625 53.90625 55.328125 Q 53.90625 49.265625 50.4375 45.09375 Q 46.96875 40.921875 40.578125 39.3125 z \" id=\"DejaVuSans-51\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.883906 66.213611)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-110\" />\n",
" <use x=\"63.378906\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"147.167969\" xlink:href=\"#DejaVuSans-51\" />\n",
" <use x=\"210.791016\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p7ae8c0f203\">\n",
" <rect height=\"43.488\" width=\"41.85\" x=\"17.18\" y=\"2.179361\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge2\">\n",
"<title>node4-&gt;leaf6</title>\n",
"<path d=\"M449.1208,-45.3949C454.2954,-43.8095 459.398,-42.2462 464.2649,-40.755\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"464.8797,-42.031 468.2941,-39.5205 464.0594,-39.3538 464.8797,-42.031\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"</g>\n",
"\n",
"<g class=\"node\" id=\"node2\">\n",
"<title>node1</title>\n",
"<svg height=\"68px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 170.67625 90.073481\" width=\"128px\" x=\"169\" y=\"-148.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 90.073481 L 170.67625 90.073481 L 170.67625 -0 L 0 -0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 17.18 61.652856 L 156.68 61.652856 L 156.68 1.856856 L 17.18 1.856856 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m2f9f117b13\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p1931a7f4ce)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"142.248966\" y=\"23.023998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"23.023998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"40.104161\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"56.254994\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"84.524828\" y=\"29.800908\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"118.197241\" y=\"29.326664\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"70.093793\" y=\"35.350443\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.130589\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"24.41216\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"53.508875\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"22.857494\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"28.637079\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"30.535575\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"48.991522\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"39.897179\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"20.817732\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"65.283448\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"115.792069\" y=\"29.326664\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"142.248966\" y=\"23.361514\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"18.186843\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"41.396508\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"79.714483\" y=\"36.00776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"31.300236\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"34.101206\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"62.878276\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"115.792069\" y=\"28.864132\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"40.955744\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"60.473103\" y=\"57.795446\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"58.338429\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"53.508875\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"30.28747\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"38.509018\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"21.42203\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"39.69246\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"37.395921\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"51.11435\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"29.326664\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"118.197241\" y=\"30.535575\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"28.191068\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"36.00776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"40.955744\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"21.731651\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"21.731651\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"34.101206\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"34.101206\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"42.78467\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"37.759653\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.981724\" y=\"18.058103\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"48.991522\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"56.254994\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"24.775892\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"47.699174\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"82.119655\" y=\"36.00776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"84.524828\" y=\"41.396508\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.688984\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"25.911488\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"23.361514\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"82.119655\" y=\"19.387143\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"32.930099\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"20.966989\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"74.904138\" y=\"45.913861\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"45.354667\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"38.89525\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"31.041865\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"142.248966\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"36.00776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"37.039118\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"51.879012\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"32.930099\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"91.740345\" y=\"29.800908\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"21.117444\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"50.379683\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"8.438268\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"57.26776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"48.013999\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"22.528861\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"20.232322\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"36.345276\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"55.294188\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"55.294188\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"18.84416\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"31.300236\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"22.366681\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"18.058103\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"36.688984\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"34.101206\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"13.62341\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"31.300236\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"20.232322\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"43.026371\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"51.11435\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"41.396508\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"42.077733\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"39.289614\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"28.412746\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"26.708698\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"31.041865\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"89.335172\" y=\"29.800908\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"49.672746\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"142.248966\" y=\"22.046475\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"53.508875\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"37.395921\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"84.524828\" y=\"51.11435\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"79.714483\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"36.345276\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"27.120399\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"21.576201\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"21.42203\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"14.664323\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"53.087922\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"53.508875\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"35.350443\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"18.186843\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"38.130589\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.699174\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"56.254994\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"115.792069\" y=\"47.084968\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"91.740345\" y=\"55.294188\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"18.84416\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"24.41216\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"30.787009\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"58.338429\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"55.294188\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"19.387143\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.981724\" y=\"36.688984\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"58.338429\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"142.248966\" y=\"53.508875\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.981724\" y=\"25.525256\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"33.801494\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"23.023998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"89.335172\" y=\"50.379683\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.274828\" y=\"23.705223\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"25.911488\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"41.396508\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"59.474026\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"60.473103\" y=\"51.11435\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"37.039118\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"54.202718\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"62.878276\" y=\"52.676222\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.274828\" y=\"21.888401\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"84.524828\" y=\"38.89525\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"20.966989\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"56.254994\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"47.699174\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"15.428984\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"32.370905\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.981724\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"65.283448\" y=\"47.699174\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"47.084968\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"50.379683\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"41.396508\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"31.827922\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"59.011494\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"22.366681\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"38.89525\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"31.827922\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"32.930099\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"79.714483\" y=\"53.508875\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"43.271232\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"20.52274\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"59.474026\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"38.509018\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"35.350443\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"29.326664\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"70.093793\" y=\"58.338429\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"25.911488\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.981724\" y=\"21.731651\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"62.878276\" y=\"45.354667\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"29.800908\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"13.929655\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"54.38027\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"60.473103\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"32.930099\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"53.508875\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"40.104161\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"77.30931\" y=\"57.26776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"26.107633\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"30.535575\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"37.759653\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"84.524828\" y=\"48.991522\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"38.509018\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"35.350443\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"38.89525\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"38.130589\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"35.350443\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"23.361514\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"23.361514\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"82.119655\" y=\"38.130589\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"43.271232\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"22.366681\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"84.524828\" y=\"18.978438\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"16.937607\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"118.197241\" y=\"43.271232\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"77.30931\" y=\"51.879012\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"49.672746\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"51.879012\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"96.55069\" y=\"21.731651\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"74.904138\" y=\"55.294188\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"79.714483\" y=\"36.00776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"45.913861\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"84.524828\" y=\"20.232322\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"26.708698\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"38.130589\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"48.334205\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"51.879012\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"51.879012\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"14.98822\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"39.69246\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"36.688984\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"91.740345\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"32.097446\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"12.163065\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"14.771667\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"38.89525\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"48.991522\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"22.046475\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"58.338429\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"62.878276\" y=\"40.955744\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"34.101206\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"34.405792\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"37.395921\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"45.913861\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"39.289614\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"51.11435\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.28747\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"37.395921\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"27.120399\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"51.879012\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"43.271232\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"38.130589\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"36.00776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"49.672746\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"41.847894\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"32.370905\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"38.509018\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"31.300236\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"35.350443\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"45.354667\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"23.361514\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"58.897623\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"27.541351\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"91.740345\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"30.787009\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"26.107633\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"84.524828\" y=\"20.232322\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"29.326664\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"49.329037\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"50.379683\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.981724\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"32.930099\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"40.955744\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"59.474026\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"19.387143\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.274828\" y=\"19.525385\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"118.197241\" y=\"48.334205\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"14.136637\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"30.787009\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"29.326664\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"17.551813\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"47.699174\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"39.69246\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"28.191068\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"21.731651\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"18.84416\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"30.787009\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"70.093793\" y=\"51.879012\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"45.913861\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"27.120399\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"42.78467\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"17.058847\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"89.335172\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"27.120399\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"10.721461\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"72.498966\" y=\"59.474026\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"27.541351\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"36.345276\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"77.30931\" y=\"36.345276\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"50.379683\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"33.506502\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"31.300236\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"65.283448\" y=\"48.334205\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"115.792069\" y=\"25.525256\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"40.104161\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"67.688621\" y=\"48.991522\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.084968\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"57.26776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"55.294188\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"41.396508\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"48.991522\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.274828\" y=\"12.163065\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"57.26776\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"31.827922\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"16.342902\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"40.104161\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"28.191068\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"139.843793\" y=\"30.787009\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"26.708698\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"24.055356\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"28.412746\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"36.345276\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"39.289614\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"22.692456\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"56.254994\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"25.525256\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"118.197241\" y=\"31.827922\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"54.38027\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"38.130589\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"48.334205\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"115.792069\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"26.708698\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.89525\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"33.801494\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"49.672746\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"42.78467\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"154.274828\" y=\"22.528861\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"38.130589\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"53.508875\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"26.913417\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"118.197241\" y=\"24.775892\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"48.991522\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"115.792069\" y=\"25.911488\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"22.11008\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"47.699174\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"16.342902\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"118.197241\" y=\"30.535575\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"33.216084\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"26.708698\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.981724\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"36.688984\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"42.310426\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"72.498966\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"130.223103\" y=\"45.354667\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"74.904138\" y=\"37.395921\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"123.007586\" y=\"45.354667\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"28.864132\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"49.672746\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"38.89525\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"98.955862\" y=\"37.395921\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"44.283998\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"108.576552\" y=\"33.801494\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"142.248966\" y=\"11.700532\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"15.207306\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"72.498966\" y=\"43.770771\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"34.872163\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"45.354667\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"113.386897\" y=\"13.123871\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"135.033448\" y=\"31.300236\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"40.525113\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"31.827922\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"110.981724\" y=\"42.78467\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"37.395921\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"94.145517\" y=\"58.897623\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"144.654138\" y=\"36.688984\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"103.766207\" y=\"23.361514\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"20.232322\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"40.104161\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"52.676222\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"22.528861\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"149.464483\" y=\"31.300236\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"127.817931\" y=\"27.971982\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"34.715412\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"118.197241\" y=\"27.120399\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"25.146827\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"52.676222\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"120.602414\" y=\"41.396508\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"18.978438\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"106.171379\" y=\"27.120399\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"147.05931\" y=\"10.377752\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"125.412759\" y=\"45.354667\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"86.93\" y=\"28.412746\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"21.117444\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"16.342902\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"132.628276\" y=\"21.117444\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"89.335172\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"101.361034\" y=\"46.490264\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"151.869655\" y=\"15.207306\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"137.438621\" y=\"35.350443\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"17.18\" y=\"50.379683\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"89.335172\" y=\"54.38027\" xlink:href=\"#m2f9f117b13\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"142.248966\" y=\"16.342902\" xlink:href=\"#m2f9f117b13\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 116.994655 61.652856 L 114.483655 67.632456 L 119.505655 67.632456 z \" style=\"fill:#444443;\" />\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L 0 3.5 \" id=\"me209d4359a\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"61.652856\" xlink:href=\"#me209d4359a\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 10.984375 1.515625 L 10.984375 10.5 Q 14.703125 8.734375 18.5 7.8125 Q 22.3125 6.890625 25.984375 6.890625 Q 35.75 6.890625 40.890625 13.453125 Q 46.046875 20.015625 46.78125 33.40625 Q 43.953125 29.203125 39.59375 26.953125 Q 35.25 24.703125 29.984375 24.703125 Q 19.046875 24.703125 12.671875 31.3125 Q 6.296875 37.9375 6.296875 49.421875 Q 6.296875 60.640625 12.9375 67.421875 Q 19.578125 74.21875 30.609375 74.21875 Q 43.265625 74.21875 49.921875 64.515625 Q 56.59375 54.828125 56.59375 36.375 Q 56.59375 19.140625 48.40625 8.859375 Q 40.234375 -1.421875 26.421875 -1.421875 Q 22.703125 -1.421875 18.890625 -0.6875 Q 15.09375 0.046875 10.984375 1.515625 z M 30.609375 32.421875 Q 37.25 32.421875 41.125 36.953125 Q 45.015625 41.5 45.015625 49.421875 Q 45.015625 57.28125 41.125 61.84375 Q 37.25 66.40625 30.609375 66.40625 Q 23.96875 66.40625 20.09375 61.84375 Q 16.21875 57.28125 16.21875 49.421875 Q 16.21875 41.5 20.09375 36.953125 Q 23.96875 32.421875 30.609375 32.421875 z \" id=\"DejaVuSans-57\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(3.18375 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-57\" />\n",
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-53\" />\n",
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"254.492188\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"286.279297\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"156.68\" y=\"61.652856\" xlink:href=\"#me209d4359a\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" <path d=\"M 31.78125 34.625 Q 24.75 34.625 20.71875 30.859375 Q 16.703125 27.09375 16.703125 20.515625 Q 16.703125 13.921875 20.71875 10.15625 Q 24.75 6.390625 31.78125 6.390625 Q 38.8125 6.390625 42.859375 10.171875 Q 46.921875 13.96875 46.921875 20.515625 Q 46.921875 27.09375 42.890625 30.859375 Q 38.875 34.625 31.78125 34.625 z M 21.921875 38.8125 Q 15.578125 40.375 12.03125 44.71875 Q 8.5 49.078125 8.5 55.328125 Q 8.5 64.0625 14.71875 69.140625 Q 20.953125 74.21875 31.78125 74.21875 Q 42.671875 74.21875 48.875 69.140625 Q 55.078125 64.0625 55.078125 55.328125 Q 55.078125 49.078125 51.53125 44.71875 Q 48 40.375 41.703125 38.8125 Q 48.828125 37.15625 52.796875 32.3125 Q 56.78125 27.484375 56.78125 20.515625 Q 56.78125 9.90625 50.3125 4.234375 Q 43.84375 -1.421875 31.78125 -1.421875 Q 19.734375 -1.421875 13.25 4.234375 Q 6.78125 9.90625 6.78125 20.515625 Q 6.78125 27.484375 10.78125 32.3125 Q 14.796875 37.15625 21.921875 38.8125 z M 18.3125 54.390625 Q 18.3125 48.734375 21.84375 45.5625 Q 25.390625 42.390625 31.78125 42.390625 Q 38.140625 42.390625 41.71875 45.5625 Q 45.3125 48.734375 45.3125 54.390625 Q 45.3125 60.0625 41.71875 63.234375 Q 38.140625 66.40625 31.78125 66.40625 Q 25.390625 66.40625 21.84375 63.234375 Q 18.3125 60.0625 18.3125 54.390625 z \" id=\"DejaVuSans-56\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(142.68375 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-50\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-56\" />\n",
" <use x=\"254.492188\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"286.279297\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_3\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"116.994655\" y=\"61.652856\" xlink:href=\"#me209d4359a\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <g style=\"fill:#444443;\" transform=\"translate(102.998405 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-57\" />\n",
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-57\" />\n",
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"254.492188\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"286.279297\" xlink:href=\"#DejaVuSans-53\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" \n",
" <defs>\n",
" <path d=\"M -0.203125 72.90625 L 10.40625 72.90625 L 30.609375 42.921875 L 50.6875 72.90625 L 61.28125 72.90625 L 35.5 34.71875 L 35.5 0 L 25.59375 0 L 25.59375 34.71875 z \" id=\"DejaVuSans-89\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.8125 72.90625 L 24.515625 72.90625 L 43.109375 23.296875 L 61.8125 72.90625 L 76.515625 72.90625 L 76.515625 0 L 66.890625 0 L 66.890625 64.015625 L 48.09375 14.015625 L 38.1875 14.015625 L 19.390625 64.015625 L 19.390625 0 L 9.8125 0 z \" id=\"DejaVuSans-77\" />\n",
" <path d=\"M 45.40625 46.390625 L 45.40625 75.984375 L 54.390625 75.984375 L 54.390625 0 L 45.40625 0 L 45.40625 8.203125 Q 42.578125 3.328125 38.25 0.953125 Q 33.9375 -1.421875 27.875 -1.421875 Q 17.96875 -1.421875 11.734375 6.484375 Q 5.515625 14.40625 5.515625 27.296875 Q 5.515625 40.1875 11.734375 48.09375 Q 17.96875 56 27.875 56 Q 33.9375 56 38.25 53.625 Q 42.578125 51.265625 45.40625 46.390625 z M 14.796875 27.296875 Q 14.796875 17.390625 18.875 11.75 Q 22.953125 6.109375 30.078125 6.109375 Q 37.203125 6.109375 41.296875 11.75 Q 45.40625 17.390625 45.40625 27.296875 Q 45.40625 37.203125 41.296875 42.84375 Q 37.203125 48.484375 30.078125 48.484375 Q 22.953125 48.484375 18.875 42.84375 Q 14.796875 37.203125 14.796875 27.296875 z \" id=\"DejaVuSans-100\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(62.06125 87.993793)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-89\" />\n",
" <use x=\"60.880859\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"122.404297\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"183.683594\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"224.796875\" xlink:href=\"#DejaVuSans-77\" />\n",
" <use x=\"311.076172\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"372.355469\" xlink:href=\"#DejaVuSans-100\" />\n",
" <use x=\"435.832031\" xlink:href=\"#DejaVuSans-101\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_4\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"m12e1ad746d\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"40.502593\" xlink:href=\"#m12e1ad746d\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" \n",
" <g style=\"fill:#444443;\" transform=\"translate(0 43.541968)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"3.039375\" xlink:href=\"#m12e1ad746d\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" \n",
" <g style=\"fill:#444443;\" transform=\"translate(0 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <path clip-path=\"url(#p1931a7f4ce)\" d=\"M 17.18 39.138529 L 116.994655 39.138529 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#p1931a7f4ce)\" d=\"M 116.994655 61.652856 L 116.994655 1.856856 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <path clip-path=\"url(#p1931a7f4ce)\" d=\"M 116.994655 34.079854 L 156.68 34.079854 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 17.18 61.652856 L 17.18 1.856856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 17.18 61.652856 L 156.68 61.652856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p1931a7f4ce\">\n",
" <rect height=\"59.796\" width=\"139.5\" x=\"17.18\" y=\"1.856856\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge5\">\n",
"<title>node1-&gt;node4</title>\n",
"<path d=\"M301.2045,-92.2939C305.3727,-90.9368 309.57,-89.5702 313.7446,-88.211\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"314.2006,-89.535 317.5706,-86.9654 313.3337,-86.8726 314.2006,-89.535\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"</g>\n",
"\n",
"<g class=\"node\" id=\"node6\">\n",
"<title>leaf3</title>\n",
"<polygon fill=\"none\" points=\"418.5,-176 348.5,-176 348.5,-117 418.5,-117 418.5,-176\" stroke=\"#444443\" stroke-width=\"0\" />\n",
"<svg height=\"51px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 82.984375 68.293299\" width=\"62px\" x=\"352.5\" y=\"-171.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 68.293299 L 82.984375 68.293299 L 82.984375 0 L 0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 20.067187 45.667361 L 61.917187 45.667361 L 61.917187 2.179361 L 20.067187 2.179361 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"md4f35b8fb4\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p9a5101c749)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.31403\" y=\"17.573646\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.43053\" y=\"41.741643\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.54047\" y=\"22.502308\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.170482\" y=\"26.076493\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.501879\" y=\"26.538334\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.727849\" y=\"28.560258\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.828903\" y=\"36.459118\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.467919\" y=\"29.845051\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.71483\" y=\"33.035465\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.882794\" y=\"22.157404\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"32.603539\" y=\"27.016382\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.522456\" y=\"25.629798\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.915929\" y=\"26.076493\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.237253\" y=\"21.821016\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.550025\" y=\"42.861972\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.473989\" y=\"39.744466\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.790171\" y=\"38.002994\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.290302\" y=\"32.662209\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.064997\" y=\"21.331515\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.79741\" y=\"16.633757\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.568141\" y=\"25.629798\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.942328\" y=\"31.945044\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.845796\" y=\"31.60014\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.379685\" y=\"28.290487\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.843587\" y=\"13.962087\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.529228\" y=\"34.640022\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.633357\" y=\"27.016382\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.375584\" y=\"30.30173\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.061585\" y=\"30.935472\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.312926\" y=\"27.511818\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.024286\" y=\"19.673639\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.617151\" y=\"25.197286\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.161619\" y=\"14.928661\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.815664\" y=\"16.07764\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.467149\" y=\"34.22082\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.836389\" y=\"25.197286\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.227277\" y=\"38.559111\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.56848\" y=\"24.778084\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.884132\" y=\"22.502308\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.180807\" y=\"37.46869\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.023183\" y=\"42.478201\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.462681\" y=\"35.748192\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.034681\" y=\"17.213546\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.635605\" y=\"41.042876\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.568578\" y=\"31.60014\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.028996\" y=\"41.042876\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.187716\" y=\"19.117522\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.807674\" y=\"17.095598\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.314007\" y=\"13.962087\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.539634\" y=\"38.002994\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.137484\" y=\"29.403185\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.722481\" y=\"21.492736\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.9822\" y=\"20.253428\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.117146\" y=\"25.197286\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.815838\" y=\"22.502308\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.919988\" y=\"38.002994\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"51.8857\" y=\"33.035465\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.578299\" y=\"16.520703\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.952008\" y=\"39.438319\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.020946\" y=\"26.538334\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.055411\" y=\"35.519229\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.521424\" y=\"35.072534\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.072678\" y=\"41.042876\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.102897\" y=\"18.583218\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.839153\" y=\"23.219473\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.454596\" y=\"43.256869\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.249982\" y=\"41.042876\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.001186\" y=\"14.928661\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.803342\" y=\"27.511818\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.265497\" y=\"19.392743\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.042844\" y=\"25.411825\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.949046\" y=\"17.573646\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.688444\" y=\"37.46869\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"49.455413\" y=\"33.035465\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.126612\" y=\"19.673639\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.015283\" y=\"44.082758\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.023907\" y=\"38.002994\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.379366\" y=\"27.766461\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.217035\" y=\"39.1389\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.014077\" y=\"29.116375\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.153067\" y=\"35.519229\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.992901\" y=\"26.076493\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.339646\" y=\"35.519229\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.343337\" y=\"30.935472\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.313451\" y=\"43.74637\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.452651\" y=\"23.9765\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.915037\" y=\"24.778084\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.1861\" y=\"39.744466\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.085404\" y=\"15.75455\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.477343\" y=\"28.835479\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.939474\" y=\"43.256869\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.763462\" y=\"16.633757\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.952872\" y=\"33.814133\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.163308\" y=\"40.378208\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.571926\" y=\"26.076493\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.492206\" y=\"39.744466\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.74\" y=\"42.478201\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.131141\" y=\"32.662209\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.863629\" y=\"36.459118\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.749656\" y=\"19.117522\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.410768\" y=\"29.116375\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.288\" y=\"17.819112\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.403115\" y=\"28.560258\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.320691\" y=\"14.631421\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.949319\" y=\"30.30173\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.994954\" y=\"38.559111\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.458668\" y=\"36.954554\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.686552\" y=\"16.633757\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.996879\" y=\"41.042876\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.958306\" y=\"27.016382\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.469383\" y=\"15.543336\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.93105\" y=\"20.253428\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.716577\" y=\"35.98107\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.471768\" y=\"25.197286\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.989698\" y=\"38.559111\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.764788\" y=\"25.197286\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.215331\" y=\"30.30173\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.155082\" y=\"24.172518\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.460608\" y=\"43.256869\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.982758\" y=\"30.614916\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.448074\" y=\"34.22082\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.175087\" y=\"38.002994\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.56386\" y=\"22.856172\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.47201\" y=\"29.116375\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.42725\" y=\"38.559111\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.298034\" y=\"32.298908\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.086312\" y=\"31.263752\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.970279\" y=\"28.835479\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.780615\" y=\"23.592729\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.567905\" y=\"33.814133\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.395394\" y=\"43.663556\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.497283\" y=\"31.60014\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.977147\" y=\"30.30173\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.557113\" y=\"19.81629\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.746606\" y=\"15.543336\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.697897\" y=\"36.704584\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.281678\" y=\"37.46869\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.438105\" y=\"32.662209\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.335496\" y=\"24.778084\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.279145\" y=\"33.035465\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.694276\" y=\"30.30173\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.490826\" y=\"23.219473\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.550604\" y=\"22.157404\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.467932\" y=\"35.519229\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.897935\" y=\"29.696164\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.286982\" y=\"23.219473\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.716109\" y=\"19.117522\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.312387\" y=\"38.559111\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.082158\" y=\"25.197286\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.962683\" y=\"31.945044\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.563914\" y=\"13.235355\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.093886\" y=\"34.640022\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.790064\" y=\"44.082758\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.99216\" y=\"20.858994\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.078785\" y=\"27.261848\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.580234\" y=\"27.261848\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.878071\" y=\"23.592729\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.536424\" y=\"35.98107\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.905888\" y=\"19.392743\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.420423\" y=\"36.459118\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.482438\" y=\"35.072534\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.395774\" y=\"41.042876\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.637927\" y=\"30.935472\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.014721\" y=\"30.30173\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.46141\" y=\"12.714668\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.650386\" y=\"29.995583\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.27697\" y=\"20.253428\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.944552\" y=\"21.492736\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.242666\" y=\"41.741643\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.546288\" y=\"19.392743\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.517337\" y=\"40.378208\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.135161\" y=\"35.98107\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.002246\" y=\"26.076493\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.714968\" y=\"29.116375\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.407169\" y=\"28.560258\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.268146\" y=\"39.744466\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"49.564537\" y=\"36.459118\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.053167\" y=\"19.673639\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.203734\" y=\"35.519229\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"48.6076\" y=\"32.662209\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.046033\" y=\"31.60014\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.22408\" y=\"32.662209\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.182989\" y=\"28.025954\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.907386\" y=\"21.821016\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.334456\" y=\"28.025954\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.964157\" y=\"33.035465\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.853691\" y=\"25.411825\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.466437\" y=\"32.662209\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"37.175834\" y=\"26.190494\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.592952\" y=\"33.814133\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.232211\" y=\"10.373554\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.669003\" y=\"31.945044\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.390435\" y=\"43.663556\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.273399\" y=\"17.819112\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"46.343917\" y=\"15.543336\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.930009\" y=\"26.076493\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.029558\" y=\"20.552847\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.009625\" y=\"21.492736\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.071533\" y=\"34.640022\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.34146\" y=\"34.640022\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"45.906337\" y=\"37.46869\" xlink:href=\"#md4f35b8fb4\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.523807\" y=\"40.378208\" xlink:href=\"#md4f35b8fb4\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\" />\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"me631d0e7a3\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"20.067187\" y=\"30.285352\" xlink:href=\"#me631d0e7a3\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(2.887187 33.324727)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"20.067187\" y=\"3.039375\" xlink:href=\"#me631d0e7a3\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(2.887187 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#p9a5101c749)\" d=\"M 20.067187 29.293305 L 83.984375 29.293305 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 20.067187 45.667361 L 20.067187 2.179361 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 10.59375 45.40625 L 73.1875 45.40625 L 73.1875 37.203125 L 10.59375 37.203125 z M 10.59375 25.484375 L 73.1875 25.484375 L 73.1875 17.1875 L 10.59375 17.1875 z \" id=\"DejaVuSans-61\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" <path d=\"M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z \" id=\"DejaVuSans-55\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 55.015799)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"459.75\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"543.539062\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"607.162109\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"670.785156\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"702.572266\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"766.195312\" xlink:href=\"#DejaVuSans-55\" />\n",
" </g>\n",
" \n",
" <defs>\n",
" <path d=\"M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z \" id=\"DejaVuSans-110\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.589844 66.213611)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-110\" />\n",
" <use x=\"63.378906\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"147.167969\" xlink:href=\"#DejaVuSans-50\" />\n",
" <use x=\"210.791016\" xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"274.414062\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p9a5101c749\">\n",
" <rect height=\"43.488\" width=\"41.85\" x=\"20.067187\" y=\"2.179361\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge4\">\n",
"<title>node1-&gt;leaf3</title>\n",
"<path d=\"M301.2045,-129.002C316.0059,-132.1491 331.1741,-135.3742 344.3914,-138.1845\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"344.2244,-139.5803 348.4281,-139.0429 344.8067,-136.8415 344.2244,-139.5803\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"</g>\n",
"\n",
"<g class=\"node\" id=\"node7\">\n",
"<title>leaf2</title>\n",
"<polygon fill=\"none\" points=\"265.5,-63 200.5,-63 200.5,-4 265.5,-4 265.5,-63\" stroke=\"#444443\" stroke-width=\"0\" />\n",
"<svg height=\"51px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 76.915937 68.293299\" width=\"57px\" x=\"205\" y=\"-58.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M -0 68.293299 L 76.915938 68.293299 L 76.915938 0 L -0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 17.18 45.667361 L 59.03 45.667361 L 59.03 2.179361 L 17.18 2.179361 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"ma7a3bbd58a\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p739e1cb7a3)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.730752\" y=\"41.042876\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.581976\" y=\"33.814133\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.842195\" y=\"39.1389\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.684581\" y=\"48.001847\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.546363\" y=\"49.187202\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.611467\" y=\"45.423805\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.936656\" y=\"41.042876\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.834501\" y=\"44.082758\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.736163\" y=\"46.911426\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.45854\" y=\"43.256869\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.612508\" y=\"33.814133\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.854909\" y=\"38.559111\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.542908\" y=\"37.46869\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.605999\" y=\"35.519229\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.251787\" y=\"38.002994\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.73602\" y=\"33.814133\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.557017\" y=\"37.679904\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.21069\" y=\"38.559111\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.345019\" y=\"42.478201\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.255359\" y=\"44.961965\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.628571\" y=\"39.744466\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.251839\" y=\"44.082758\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.274001\" y=\"42.478201\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.827903\" y=\"43.256869\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.642584\" y=\"44.082758\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.001745\" y=\"38.559111\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.501797\" y=\"48.001847\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.060949\" y=\"49.187202\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.906656\" y=\"42.478201\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.611571\" y=\"40.378208\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.17709\" y=\"43.256869\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.846335\" y=\"48.001847\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.603492\" y=\"44.961965\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.889619\" y=\"38.002994\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.578871\" y=\"46.911426\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.199582\" y=\"39.744466\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.87371\" y=\"40.378208\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"47.971982\" y=\"44.082758\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.370901\" y=\"44.082758\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"32.430609\" y=\"42.861972\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.090816\" y=\"36.459118\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.333382\" y=\"44.082758\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"33.741111\" y=\"45.901854\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"43.37236\" y=\"44.082758\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"40.371324\" y=\"37.46869\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"36.456268\" y=\"37.46869\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.029921\" y=\"33.814133\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"39.058067\" y=\"38.002994\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.56146\" y=\"41.042876\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"42.245288\" y=\"37.46869\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"44.094707\" y=\"42.861972\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.657897\" y=\"41.741643\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"41.250881\" y=\"45.708617\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"38.070983\" y=\"42.478201\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"34.623759\" y=\"42.478201\" xlink:href=\"#ma7a3bbd58a\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"35.166722\" y=\"44.082758\" xlink:href=\"#ma7a3bbd58a\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\" />\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"macb317c9bd\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"30.285352\" xlink:href=\"#macb317c9bd\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 33.324727)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"17.18\" y=\"3.039375\" xlink:href=\"#macb317c9bd\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#p739e1cb7a3)\" d=\"M 17.18 41.650696 L 77.915937 41.650696 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 17.18 45.667361 L 17.18 2.179361 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" <path d=\"M 10.59375 45.40625 L 73.1875 45.40625 L 73.1875 37.203125 L 10.59375 37.203125 z M 10.59375 25.484375 L 73.1875 25.484375 L 73.1875 17.1875 L 10.59375 17.1875 z \" id=\"DejaVuSans-61\" />\n",
" <path d=\"M 10.984375 1.515625 L 10.984375 10.5 Q 14.703125 8.734375 18.5 7.8125 Q 22.3125 6.890625 25.984375 6.890625 Q 35.75 6.890625 40.890625 13.453125 Q 46.046875 20.015625 46.78125 33.40625 Q 43.953125 29.203125 39.59375 26.953125 Q 35.25 24.703125 29.984375 24.703125 Q 19.046875 24.703125 12.671875 31.3125 Q 6.296875 37.9375 6.296875 49.421875 Q 6.296875 60.640625 12.9375 67.421875 Q 19.578125 74.21875 30.609375 74.21875 Q 43.265625 74.21875 49.921875 64.515625 Q 56.59375 54.828125 56.59375 36.375 Q 56.59375 19.140625 48.40625 8.859375 Q 40.234375 -1.421875 26.421875 -1.421875 Q 22.703125 -1.421875 18.890625 -0.6875 Q 15.09375 0.046875 10.984375 1.515625 z M 30.609375 32.421875 Q 37.25 32.421875 41.125 36.953125 Q 45.015625 41.5 45.015625 49.421875 Q 45.015625 57.28125 41.125 61.84375 Q 37.25 66.40625 30.609375 66.40625 Q 23.96875 66.40625 20.09375 61.84375 Q 16.21875 57.28125 16.21875 49.421875 Q 16.21875 41.5 20.09375 36.953125 Q 23.96875 32.421875 30.609375 32.421875 z \" id=\"DejaVuSans-57\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" <path d=\"M 8.203125 72.90625 L 55.078125 72.90625 L 55.078125 68.703125 L 28.609375 0 L 18.3125 0 L 43.21875 64.59375 L 8.203125 64.59375 z \" id=\"DejaVuSans-55\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(0.294063 55.015799)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"459.75\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"543.539062\" xlink:href=\"#DejaVuSans-57\" />\n",
" <use x=\"607.162109\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"638.949219\" xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"702.572266\" xlink:href=\"#DejaVuSans-55\" />\n",
" </g>\n",
" \n",
" <defs>\n",
" <path d=\"M 54.890625 33.015625 L 54.890625 0 L 45.90625 0 L 45.90625 32.71875 Q 45.90625 40.484375 42.875 44.328125 Q 39.84375 48.1875 33.796875 48.1875 Q 26.515625 48.1875 22.3125 43.546875 Q 18.109375 38.921875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.34375 51.125 25.703125 53.5625 Q 30.078125 56 35.796875 56 Q 45.21875 56 50.046875 50.171875 Q 54.890625 44.34375 54.890625 33.015625 z \" id=\"DejaVuSans-110\" />\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" <path d=\"M 33.015625 40.375 Q 26.375 40.375 22.484375 35.828125 Q 18.609375 31.296875 18.609375 23.390625 Q 18.609375 15.53125 22.484375 10.953125 Q 26.375 6.390625 33.015625 6.390625 Q 39.65625 6.390625 43.53125 10.953125 Q 47.40625 15.53125 47.40625 23.390625 Q 47.40625 31.296875 43.53125 35.828125 Q 39.65625 40.375 33.015625 40.375 z M 52.59375 71.296875 L 52.59375 62.3125 Q 48.875 64.0625 45.09375 64.984375 Q 41.3125 65.921875 37.59375 65.921875 Q 27.828125 65.921875 22.671875 59.328125 Q 17.53125 52.734375 16.796875 39.40625 Q 19.671875 43.65625 24.015625 45.921875 Q 28.375 48.1875 33.59375 48.1875 Q 44.578125 48.1875 50.953125 41.515625 Q 57.328125 34.859375 57.328125 23.390625 Q 57.328125 12.15625 50.6875 5.359375 Q 44.046875 -1.421875 33.015625 -1.421875 Q 20.359375 -1.421875 13.671875 8.265625 Q 6.984375 17.96875 6.984375 36.375 Q 6.984375 53.65625 15.1875 63.9375 Q 23.390625 74.21875 37.203125 74.21875 Q 40.921875 74.21875 44.703125 73.484375 Q 48.484375 72.75 52.59375 71.296875 z \" id=\"DejaVuSans-54\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.883906 66.213611)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-110\" />\n",
" <use x=\"63.378906\" xlink:href=\"#DejaVuSans-61\" />\n",
" <use x=\"147.167969\" xlink:href=\"#DejaVuSans-53\" />\n",
" <use x=\"210.791016\" xlink:href=\"#DejaVuSans-54\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p739e1cb7a3\">\n",
" <rect height=\"43.488\" width=\"41.85\" x=\"17.18\" y=\"2.179361\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"\n",
"<g class=\"node\" id=\"node3\">\n",
"<title>node0</title>\n",
"<svg height=\"68px\" preserveAspectRatio=\"xMinYMin meet\" version=\"1.1\" viewBox=\"0 0 176.719375 90.351606\" width=\"132px\" x=\"4\" y=\"-107.5\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 90.351606 L 176.719375 90.351606 L 176.719375 0 L 0 0 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 30.858125 61.652856 L 170.358125 61.652856 L 170.358125 1.856856 L 30.858125 1.856856 z \" style=\"fill:#ffffff;\" />\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"M 0 1.118034 C 0.296506 1.118034 0.580908 1.000231 0.790569 0.790569 C 1.000231 0.580908 1.118034 0.296506 1.118034 0 C 1.118034 -0.296506 1.000231 -0.580908 0.790569 -0.790569 C 0.580908 -1.000231 0.296506 -1.118034 0 -1.118034 C -0.296506 -1.118034 -0.580908 -1.000231 -0.790569 -0.790569 C -1.000231 -0.580908 -1.118034 -0.296506 -1.118034 0 C -1.118034 0.296506 -1.000231 0.580908 -0.790569 0.790569 C -0.580908 1.000231 -0.296506 1.118034 0 1.118034 z \" id=\"m4b2981d43b\" style=\"stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g clip-path=\"url(#p5e772a3ccb)\">\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.023998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.023998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.800908\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.41216\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.857494\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.637079\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.535575\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.897179\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.817732\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.186843\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"52.676222\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"64.862774\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"66.492637\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.864132\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"61.317967\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.955744\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"170.358125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.795446\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.28747\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.509018\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.42203\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.69246\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"63.363445\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"58.338429\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.535575\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.191068\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"170.358125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.955744\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.78467\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.759653\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.058103\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.775892\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"47.699174\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.11435\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.911488\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"19.387143\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.966989\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.913861\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.041865\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.670102\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.039118\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.800908\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.117444\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"8.438268\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.013999\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.528861\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.84416\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.366681\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"60.682936\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.058103\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"13.62341\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.026371\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.077733\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.289614\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.412746\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.041865\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.800908\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.046475\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.576201\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.42203\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"14.664323\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.087922\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"58.338429\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.186843\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.084968\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.84416\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.41216\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"19.387143\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"64.862774\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.525256\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.801494\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.023998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"66.492637\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.705223\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.911488\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.039118\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"54.202718\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"52.676222\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.888401\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.966989\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"15.428984\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.370905\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.084968\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.011494\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.366681\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"54.38027\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.271232\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.52274\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.509018\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.911488\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.800908\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"13.929655\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"54.38027\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.107633\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.535575\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.759653\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"58.338429\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.509018\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"64.862774\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"60.682936\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.271232\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.366681\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.978438\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.11435\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.937607\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.271232\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"63.363445\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.913861\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.334205\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"14.98822\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.69246\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.097446\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"12.163065\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"14.771667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.046475\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.338429\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.955744\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.101206\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.405792\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.913861\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.289614\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.11435\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.28747\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"54.38027\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.271232\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.00776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.847894\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.370905\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.509018\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.897623\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.541351\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.107633\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"170.358125\" y=\"57.795446\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"48.991522\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.329037\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"32.930099\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.955744\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"19.387143\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"19.525385\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.334205\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"14.136637\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"29.326664\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"17.551813\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"61.975284\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.69246\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.191068\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.731651\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"170.358125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.84416\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"51.879012\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.913861\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.78467\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"17.058847\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"10.721461\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.541351\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.506502\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.334205\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.525256\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.084968\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"12.163065\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.342902\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.191068\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.787009\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.055356\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.412746\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.345276\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"39.289614\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.692456\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"56.254994\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.525256\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"54.38027\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.334205\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"51.11435\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"55.294188\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.801494\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.795446\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.78467\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.528861\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.130589\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"53.508875\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.913417\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"24.775892\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"48.991522\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.911488\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.11008\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"47.699174\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.342902\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"30.535575\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.216084\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"26.708698\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.310426\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.864132\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"49.672746\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"38.89525\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"44.283998\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"33.801494\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"11.700532\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"15.207306\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"43.770771\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.872163\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"13.123871\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.525113\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.827922\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"42.78467\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"37.395921\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"58.897623\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"36.688984\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"23.361514\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"20.232322\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"40.104161\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"56.254994\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"52.676222\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"22.528861\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"31.300236\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.971982\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"61.709583\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"34.715412\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"25.146827\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"52.676222\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"41.396508\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"18.978438\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"27.120399\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"10.377752\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"45.354667\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"28.412746\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.117444\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.342902\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"21.117444\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"46.490264\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"15.207306\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"35.350443\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"50.379683\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"54.38027\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"57.26776\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"100.608125\" y=\"59.474026\" xlink:href=\"#m4b2981d43b\" />\n",
" <use style=\"fill:#4575b4;fill-opacity:0.5;stroke:#4575b4;stroke-opacity:0.5;stroke-width:0.3;\" x=\"30.858125\" y=\"16.342902\" xlink:href=\"#m4b2981d43b\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 65.733125 61.652856 L 63.222125 67.632456 L 68.244125 67.632456 z \" style=\"fill:#444443;\" />\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"M 0 0 L 0 3.5 \" id=\"mb5f4ac1dd5\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"30.858125\" y=\"61.652856\" xlink:href=\"#mb5f4ac1dd5\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" \n",
" <defs>\n",
" <path d=\"M 31.78125 66.40625 Q 24.171875 66.40625 20.328125 58.90625 Q 16.5 51.421875 16.5 36.375 Q 16.5 21.390625 20.328125 13.890625 Q 24.171875 6.390625 31.78125 6.390625 Q 39.453125 6.390625 43.28125 13.890625 Q 47.125 21.390625 47.125 36.375 Q 47.125 51.421875 43.28125 58.90625 Q 39.453125 66.40625 31.78125 66.40625 z M 31.78125 74.21875 Q 44.046875 74.21875 50.515625 64.515625 Q 56.984375 54.828125 56.984375 36.375 Q 56.984375 17.96875 50.515625 8.265625 Q 44.046875 -1.421875 31.78125 -1.421875 Q 19.53125 -1.421875 13.0625 8.265625 Q 6.59375 17.96875 6.59375 36.375 Q 6.59375 54.828125 13.0625 64.515625 Q 19.53125 74.21875 31.78125 74.21875 z \" id=\"DejaVuSans-48\" />\n",
" <path d=\"M 10.6875 12.40625 L 21 12.40625 L 21 0 L 10.6875 0 z \" id=\"DejaVuSans-46\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(24.496875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_2\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"170.358125\" y=\"61.652856\" xlink:href=\"#mb5f4ac1dd5\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" \n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 L 53.609375 8.296875 L 53.609375 0 L 7.328125 0 L 7.328125 8.296875 Q 12.9375 14.109375 22.625 23.890625 Q 32.328125 33.6875 34.8125 36.53125 Q 39.546875 41.84375 41.421875 45.53125 Q 43.3125 49.21875 43.3125 52.78125 Q 43.3125 58.59375 39.234375 62.25 Q 35.15625 65.921875 28.609375 65.921875 Q 23.96875 65.921875 18.8125 64.3125 Q 13.671875 62.703125 7.8125 59.421875 L 7.8125 69.390625 Q 13.765625 71.78125 18.9375 73 Q 24.125 74.21875 28.421875 74.21875 Q 39.75 74.21875 46.484375 68.546875 Q 53.21875 62.890625 53.21875 53.421875 Q 53.21875 48.921875 51.53125 44.890625 Q 49.859375 40.875 45.40625 35.40625 Q 44.1875 33.984375 37.640625 27.21875 Q 31.109375 20.453125 19.1875 8.296875 z \" id=\"DejaVuSans-50\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(163.996875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-50\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_3\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"65.733125\" y=\"61.652856\" xlink:href=\"#mb5f4ac1dd5\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" \n",
" <defs>\n",
" <path d=\"M 10.796875 72.90625 L 49.515625 72.90625 L 49.515625 64.59375 L 19.828125 64.59375 L 19.828125 46.734375 Q 21.96875 47.46875 24.109375 47.828125 Q 26.265625 48.1875 28.421875 48.1875 Q 40.625 48.1875 47.75 41.5 Q 54.890625 34.8125 54.890625 23.390625 Q 54.890625 11.625 47.5625 5.09375 Q 40.234375 -1.421875 26.90625 -1.421875 Q 22.3125 -1.421875 17.546875 -0.640625 Q 12.796875 0.140625 7.71875 1.703125 L 7.71875 11.625 Q 12.109375 9.234375 16.796875 8.0625 Q 21.484375 6.890625 26.703125 6.890625 Q 35.15625 6.890625 40.078125 11.328125 Q 45.015625 15.765625 45.015625 23.390625 Q 45.015625 31 40.078125 35.4375 Q 35.15625 39.890625 26.703125 39.890625 Q 22.75 39.890625 18.8125 39.015625 Q 14.890625 38.140625 10.796875 36.28125 z \" id=\"DejaVuSans-53\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(59.371875 74.731606)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-48\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\" />\n",
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" \n",
" <defs>\n",
" <path d=\"M 64.40625 67.28125 L 64.40625 56.890625 Q 59.421875 61.53125 53.78125 63.8125 Q 48.140625 66.109375 41.796875 66.109375 Q 29.296875 66.109375 22.65625 58.46875 Q 16.015625 50.828125 16.015625 36.375 Q 16.015625 21.96875 22.65625 14.328125 Q 29.296875 6.6875 41.796875 6.6875 Q 48.140625 6.6875 53.78125 8.984375 Q 59.421875 11.28125 64.40625 15.921875 L 64.40625 5.609375 Q 59.234375 2.09375 53.4375 0.328125 Q 47.65625 -1.421875 41.21875 -1.421875 Q 24.65625 -1.421875 15.125 8.703125 Q 5.609375 18.84375 5.609375 36.375 Q 5.609375 53.953125 15.125 64.078125 Q 24.65625 74.21875 41.21875 74.21875 Q 47.75 74.21875 53.53125 72.484375 Q 59.328125 70.75 64.40625 67.28125 z \" id=\"DejaVuSans-67\" />\n",
" <path d=\"M 30.609375 48.390625 Q 23.390625 48.390625 19.1875 42.75 Q 14.984375 37.109375 14.984375 27.296875 Q 14.984375 17.484375 19.15625 11.84375 Q 23.34375 6.203125 30.609375 6.203125 Q 37.796875 6.203125 41.984375 11.859375 Q 46.1875 17.53125 46.1875 27.296875 Q 46.1875 37.015625 41.984375 42.703125 Q 37.796875 48.390625 30.609375 48.390625 z M 30.609375 56 Q 42.328125 56 49.015625 48.375 Q 55.71875 40.765625 55.71875 27.296875 Q 55.71875 13.875 49.015625 6.21875 Q 42.328125 -1.421875 30.609375 -1.421875 Q 18.84375 -1.421875 12.171875 6.21875 Q 5.515625 13.875 5.515625 27.296875 Q 5.515625 40.765625 12.171875 48.375 Q 18.84375 56 30.609375 56 z \" id=\"DejaVuSans-111\" />\n",
" <path d=\"M 8.5 21.578125 L 8.5 54.6875 L 17.484375 54.6875 L 17.484375 21.921875 Q 17.484375 14.15625 20.5 10.265625 Q 23.53125 6.390625 29.59375 6.390625 Q 36.859375 6.390625 41.078125 11.03125 Q 45.3125 15.671875 45.3125 23.6875 L 45.3125 54.6875 L 54.296875 54.6875 L 54.296875 0 L 45.3125 0 L 45.3125 8.40625 Q 42.046875 3.421875 37.71875 1 Q 33.40625 -1.421875 27.6875 -1.421875 Q 18.265625 -1.421875 13.375 4.4375 Q 8.5 10.296875 8.5 21.578125 z M 31.109375 56 z \" id=\"DejaVuSans-117\" />\n",
" <path d=\"M 18.109375 8.203125 L 18.109375 -20.796875 L 9.078125 -20.796875 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.390625 Q 20.953125 51.265625 25.265625 53.625 Q 29.59375 56 35.59375 56 Q 45.5625 56 51.78125 48.09375 Q 58.015625 40.1875 58.015625 27.296875 Q 58.015625 14.40625 51.78125 6.484375 Q 45.5625 -1.421875 35.59375 -1.421875 Q 29.59375 -1.421875 25.265625 0.953125 Q 20.953125 3.328125 18.109375 8.203125 z M 48.6875 27.296875 Q 48.6875 37.203125 44.609375 42.84375 Q 40.53125 48.484375 33.40625 48.484375 Q 26.265625 48.484375 22.1875 42.84375 Q 18.109375 37.203125 18.109375 27.296875 Q 18.109375 17.390625 22.1875 11.75 Q 26.265625 6.109375 33.40625 6.109375 Q 40.53125 6.109375 44.609375 11.75 Q 48.6875 17.390625 48.6875 27.296875 z \" id=\"DejaVuSans-112\" />\n",
" <path d=\"M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 0 L 9.421875 0 z \" id=\"DejaVuSans-108\" />\n",
" <path d=\"M 56.203125 29.59375 L 56.203125 25.203125 L 14.890625 25.203125 Q 15.484375 15.921875 20.484375 11.0625 Q 25.484375 6.203125 34.421875 6.203125 Q 39.59375 6.203125 44.453125 7.46875 Q 49.3125 8.734375 54.109375 11.28125 L 54.109375 2.78125 Q 49.265625 0.734375 44.1875 -0.34375 Q 39.109375 -1.421875 33.890625 -1.421875 Q 20.796875 -1.421875 13.15625 6.1875 Q 5.515625 13.8125 5.515625 26.8125 Q 5.515625 40.234375 12.765625 48.109375 Q 20.015625 56 32.328125 56 Q 43.359375 56 49.78125 48.890625 Q 56.203125 41.796875 56.203125 29.59375 z M 47.21875 32.234375 Q 47.125 39.59375 43.09375 43.984375 Q 39.0625 48.390625 32.421875 48.390625 Q 24.90625 48.390625 20.390625 44.140625 Q 15.875 39.890625 15.1875 32.171875 z \" id=\"DejaVuSans-101\" />\n",
" <path d=\"M 41.109375 46.296875 Q 39.59375 47.171875 37.8125 47.578125 Q 36.03125 48 33.890625 48 Q 26.265625 48 22.1875 43.046875 Q 18.109375 38.09375 18.109375 28.8125 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 20.953125 51.171875 25.484375 53.578125 Q 30.03125 56 36.53125 56 Q 37.453125 56 38.578125 55.875 Q 39.703125 55.765625 41.0625 55.515625 z \" id=\"DejaVuSans-114\" />\n",
" <path d=\"M 50.984375 -16.609375 L 50.984375 -23.578125 L -0.984375 -23.578125 L -0.984375 -16.609375 z \" id=\"DejaVuSans-95\" />\n",
" <path d=\"M 53.515625 70.515625 L 53.515625 60.890625 Q 47.90625 63.578125 42.921875 64.890625 Q 37.9375 66.21875 33.296875 66.21875 Q 25.25 66.21875 20.875 63.09375 Q 16.5 59.96875 16.5 54.203125 Q 16.5 49.359375 19.40625 46.890625 Q 22.3125 44.4375 30.421875 42.921875 L 36.375 41.703125 Q 47.40625 39.59375 52.65625 34.296875 Q 57.90625 29 57.90625 20.125 Q 57.90625 9.515625 50.796875 4.046875 Q 43.703125 -1.421875 29.984375 -1.421875 Q 24.8125 -1.421875 18.96875 -0.25 Q 13.140625 0.921875 6.890625 3.21875 L 6.890625 13.375 Q 12.890625 10.015625 18.65625 8.296875 Q 24.421875 6.59375 29.984375 6.59375 Q 38.421875 6.59375 43.015625 9.90625 Q 47.609375 13.234375 47.609375 19.390625 Q 47.609375 24.75 44.3125 27.78125 Q 41.015625 30.8125 33.5 32.328125 L 27.484375 33.5 Q 16.453125 35.6875 11.515625 40.375 Q 6.59375 45.0625 6.59375 53.421875 Q 6.59375 63.09375 13.40625 68.65625 Q 20.21875 74.21875 32.171875 74.21875 Q 37.3125 74.21875 42.625 73.28125 Q 47.953125 72.359375 53.515625 70.515625 z \" id=\"DejaVuSans-83\" />\n",
" <path d=\"M 32.171875 -5.078125 Q 28.375 -14.84375 24.75 -17.8125 Q 21.140625 -20.796875 15.09375 -20.796875 L 7.90625 -20.796875 L 7.90625 -13.28125 L 13.1875 -13.28125 Q 16.890625 -13.28125 18.9375 -11.515625 Q 21 -9.765625 23.484375 -3.21875 L 25.09375 0.875 L 2.984375 54.6875 L 12.5 54.6875 L 29.59375 11.921875 L 46.6875 54.6875 L 56.203125 54.6875 z \" id=\"DejaVuSans-121\" />\n",
" <path d=\"M 44.28125 53.078125 L 44.28125 44.578125 Q 40.484375 46.53125 36.375 47.5 Q 32.28125 48.484375 27.875 48.484375 Q 21.1875 48.484375 17.84375 46.4375 Q 14.5 44.390625 14.5 40.28125 Q 14.5 37.15625 16.890625 35.375 Q 19.28125 33.59375 26.515625 31.984375 L 29.59375 31.296875 Q 39.15625 29.25 43.1875 25.515625 Q 47.21875 21.78125 47.21875 15.09375 Q 47.21875 7.46875 41.1875 3.015625 Q 35.15625 -1.421875 24.609375 -1.421875 Q 20.21875 -1.421875 15.453125 -0.5625 Q 10.6875 0.296875 5.421875 2 L 5.421875 11.28125 Q 10.40625 8.6875 15.234375 7.390625 Q 20.0625 6.109375 24.8125 6.109375 Q 31.15625 6.109375 34.5625 8.28125 Q 37.984375 10.453125 37.984375 14.40625 Q 37.984375 18.0625 35.515625 20.015625 Q 33.0625 21.96875 24.703125 23.78125 L 21.578125 24.515625 Q 13.234375 26.265625 9.515625 29.90625 Q 5.8125 33.546875 5.8125 39.890625 Q 5.8125 47.609375 11.28125 51.796875 Q 16.75 56 26.8125 56 Q 31.78125 56 36.171875 55.265625 Q 40.578125 54.546875 44.28125 53.078125 z \" id=\"DejaVuSans-115\" />\n",
" <path d=\"M 18.3125 70.21875 L 18.3125 54.6875 L 36.8125 54.6875 L 36.8125 47.703125 L 18.3125 47.703125 L 18.3125 18.015625 Q 18.3125 11.328125 20.140625 9.421875 Q 21.96875 7.515625 27.59375 7.515625 L 36.8125 7.515625 L 36.8125 0 L 27.59375 0 Q 17.1875 0 13.234375 3.875 Q 9.28125 7.765625 9.28125 18.015625 L 9.28125 47.703125 L 2.6875 47.703125 L 2.6875 54.6875 L 9.28125 54.6875 L 9.28125 70.21875 z \" id=\"DejaVuSans-116\" />\n",
" <path d=\"M 52 44.1875 Q 55.375 50.25 60.0625 53.125 Q 64.75 56 71.09375 56 Q 79.640625 56 84.28125 50.015625 Q 88.921875 44.046875 88.921875 33.015625 L 88.921875 0 L 79.890625 0 L 79.890625 32.71875 Q 79.890625 40.578125 77.09375 44.375 Q 74.3125 48.1875 68.609375 48.1875 Q 61.625 48.1875 57.5625 43.546875 Q 53.515625 38.921875 53.515625 30.90625 L 53.515625 0 L 44.484375 0 L 44.484375 32.71875 Q 44.484375 40.625 41.703125 44.40625 Q 38.921875 48.1875 33.109375 48.1875 Q 26.21875 48.1875 22.15625 43.53125 Q 18.109375 38.875 18.109375 30.90625 L 18.109375 0 L 9.078125 0 L 9.078125 54.6875 L 18.109375 54.6875 L 18.109375 46.1875 Q 21.1875 51.21875 25.484375 53.609375 Q 29.78125 56 35.6875 56 Q 41.65625 56 45.828125 52.96875 Q 50 49.953125 52 44.1875 z \" id=\"DejaVuSans-109\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(60.047969 87.993793)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-67\" />\n",
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-111\" />\n",
" <use x=\"131.005859\" xlink:href=\"#DejaVuSans-117\" />\n",
" <use x=\"194.384766\" xlink:href=\"#DejaVuSans-112\" />\n",
" <use x=\"257.861328\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"285.644531\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"347.167969\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"388.28125\" xlink:href=\"#DejaVuSans-95\" />\n",
" <use x=\"438.28125\" xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"501.757812\" xlink:href=\"#DejaVuSans-121\" />\n",
" <use x=\"560.9375\" xlink:href=\"#DejaVuSans-115\" />\n",
" <use x=\"613.037109\" xlink:href=\"#DejaVuSans-116\" />\n",
" <use x=\"652.246094\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"713.769531\" xlink:href=\"#DejaVuSans-109\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_4\">\n",
" <defs>\n",
" <path d=\"M 0 0 L -3.5 0 \" id=\"m4b34c2219e\" style=\"stroke:#444443;stroke-width:0.3;\" />\n",
" </defs>\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"30.858125\" y=\"40.502593\" xlink:href=\"#m4b34c2219e\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" \n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 L 28.515625 8.296875 L 28.515625 63.921875 L 10.984375 60.40625 L 10.984375 69.390625 L 28.421875 72.90625 L 38.28125 72.90625 L 38.28125 8.296875 L 54.390625 8.296875 L 54.390625 0 L 12.40625 0 z \" id=\"DejaVuSans-49\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(13.678125 43.541968)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"fill:#444443;stroke:#444443;stroke-width:0.3;\" x=\"30.858125\" y=\"3.039375\" xlink:href=\"#m4b34c2219e\" />\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" \n",
" <g style=\"fill:#444443;\" transform=\"translate(13.678125 6.07875)scale(0.08 -0.08)\">\n",
" <use xlink:href=\"#DejaVuSans-49\" />\n",
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-50\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" \n",
" <defs>\n",
" <path d=\"M 34.28125 27.484375 Q 23.390625 27.484375 19.1875 25 Q 14.984375 22.515625 14.984375 16.5 Q 14.984375 11.71875 18.140625 8.90625 Q 21.296875 6.109375 26.703125 6.109375 Q 34.1875 6.109375 38.703125 11.40625 Q 43.21875 16.703125 43.21875 25.484375 L 43.21875 27.484375 z M 52.203125 31.203125 L 52.203125 0 L 43.21875 0 L 43.21875 8.296875 Q 40.140625 3.328125 35.546875 0.953125 Q 30.953125 -1.421875 24.3125 -1.421875 Q 15.921875 -1.421875 10.953125 3.296875 Q 6 8.015625 6 15.921875 Q 6 25.140625 12.171875 29.828125 Q 18.359375 34.515625 30.609375 34.515625 L 43.21875 34.515625 L 43.21875 35.40625 Q 43.21875 41.609375 39.140625 45 Q 35.0625 48.390625 27.6875 48.390625 Q 23 48.390625 18.546875 47.265625 Q 14.109375 46.140625 10.015625 43.890625 L 10.015625 52.203125 Q 14.9375 54.109375 19.578125 55.046875 Q 24.21875 56 28.609375 56 Q 40.484375 56 46.34375 49.84375 Q 52.203125 43.703125 52.203125 31.203125 z \" id=\"DejaVuSans-97\" />\n",
" <path d=\"M 19.671875 64.796875 L 19.671875 37.40625 L 32.078125 37.40625 Q 38.96875 37.40625 42.71875 40.96875 Q 46.484375 44.53125 46.484375 51.125 Q 46.484375 57.671875 42.71875 61.234375 Q 38.96875 64.796875 32.078125 64.796875 z M 9.8125 72.90625 L 32.078125 72.90625 Q 44.34375 72.90625 50.609375 67.359375 Q 56.890625 61.8125 56.890625 51.125 Q 56.890625 40.328125 50.609375 34.8125 Q 44.34375 29.296875 32.078125 29.296875 L 19.671875 29.296875 L 19.671875 0 L 9.8125 0 z \" id=\"DejaVuSans-80\" />\n",
" <path d=\"M 9.421875 54.6875 L 18.40625 54.6875 L 18.40625 0 L 9.421875 0 z M 9.421875 75.984375 L 18.40625 75.984375 L 18.40625 64.59375 L 9.421875 64.59375 z \" id=\"DejaVuSans-105\" />\n",
" <path d=\"M 48.78125 52.59375 L 48.78125 44.1875 Q 44.96875 46.296875 41.140625 47.34375 Q 37.3125 48.390625 33.40625 48.390625 Q 24.65625 48.390625 19.8125 42.84375 Q 14.984375 37.3125 14.984375 27.296875 Q 14.984375 17.28125 19.8125 11.734375 Q 24.65625 6.203125 33.40625 6.203125 Q 37.3125 6.203125 41.140625 7.25 Q 44.96875 8.296875 48.78125 10.40625 L 48.78125 2.09375 Q 45.015625 0.34375 40.984375 -0.53125 Q 36.96875 -1.421875 32.421875 -1.421875 Q 20.0625 -1.421875 12.78125 6.34375 Q 5.515625 14.109375 5.515625 27.296875 Q 5.515625 40.671875 12.859375 48.328125 Q 20.21875 56 33.015625 56 Q 37.15625 56 41.109375 55.140625 Q 45.0625 54.296875 48.78125 52.59375 z \" id=\"DejaVuSans-99\" />\n",
" </defs>\n",
" <g style=\"fill:#444443;\" transform=\"translate(7.598437 54.743137)rotate(-90)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#DejaVuSans-83\" />\n",
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-97\" />\n",
" <use x=\"124.755859\" xlink:href=\"#DejaVuSans-108\" />\n",
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-101\" />\n",
" <use x=\"214.0625\" xlink:href=\"#DejaVuSans-80\" />\n",
" <use x=\"274.349609\" xlink:href=\"#DejaVuSans-114\" />\n",
" <use x=\"315.462891\" xlink:href=\"#DejaVuSans-105\" />\n",
" <use x=\"343.246094\" xlink:href=\"#DejaVuSans-99\" />\n",
" <use x=\"398.226562\" xlink:href=\"#DejaVuSans-101\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <path clip-path=\"url(#p5e772a3ccb)\" d=\"M 30.858125 36.381323 L 65.733125 36.381323 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#p5e772a3ccb)\" d=\"M 65.733125 61.652856 L 65.733125 1.856856 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <path clip-path=\"url(#p5e772a3ccb)\" d=\"M 65.733125 56.129942 L 170.358125 56.129942 \" style=\"fill:none;stroke:#444443;stroke-dasharray:3.7,1.6;stroke-dashoffset:0;\" />\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 30.858125 61.652856 L 30.858125 1.856856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 30.858125 61.652856 L 170.358125 61.652856 \" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.3;\" />\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p5e772a3ccb\">\n",
" <rect height=\"59.796\" width=\"139.5\" x=\"30.858125\" y=\"1.856856\" />\n",
" </clipPath>\n",
" </defs>\n",
"</svg></g>\n",
"\n",
"<g class=\"edge\" id=\"edge7\">\n",
"<title>node0-&gt;node1</title>\n",
"<path d=\"M140.0726,-91.1256C146.8609,-92.8331 153.7572,-94.5677 160.5678,-96.2809\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"160.575,-97.7262 164.7957,-97.3443 161.258,-95.0108 160.575,-97.7262\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<text fill=\"#000000\" font-family=\"Times,serif\" font-size=\"14.00\" text-anchor=\"start\" x=\"148\" y=\"-98.3\">&lt;</text>\n",
"</g>\n",
"\n",
"<g class=\"edge\" id=\"edge8\">\n",
"<title>node0-&gt;leaf2</title>\n",
"<path d=\"M140.0726,-56.3043C159.3226,-51.5804 179.4402,-46.6435 196.0146,-42.5762\" fill=\"none\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<polygon fill=\"#444443\" points=\"196.5983,-43.8745 200.1494,-41.5615 195.9309,-41.1552 196.5983,-43.8745\" stroke=\"#444443\" stroke-width=\".3\" />\n",
"<text fill=\"#000000\" font-family=\"Times,serif\" font-size=\"14.00\" text-anchor=\"start\" x=\"148\" y=\"-57.3\">&#8805;</text>\n",
"</g>\n",
"\n",
"\n",
"</g>\n",
"</svg>"
],
"text/plain": [
"<dtreeviz.trees.DTreeViz at 0x7f7aa4341c10>"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m = DecisionTreeRegressor(max_leaf_nodes=4).fit(xs, y)\n",
"\n",
"dtreeviz(m, xs.iloc[samp_idx], y.iloc[samp_idx], xs.columns, dep_var,\n",
" fontname='DejaVu Sans', scale=1.6, label_fontsize=10,\n",
" orientation='LR')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"m = DecisionTreeRegressor()\n",
"m.fit(xs, y);"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def r_mse(pred,y): return round(math.sqrt(((pred-y)**2).mean()), 6)\n",
"def m_rmse(m, xs, y): return r_mse(m.predict(xs), y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.0"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m_rmse(m, xs, y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.337727"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m_rmse(m, valid_xs, valid_y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(340909, 404710)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m.get_n_leaves(), len(xs)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0.248562, 0.32368)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m = DecisionTreeRegressor(min_samples_leaf=25)\n",
"m.fit(to.train.xs, to.train.y)\n",
"m_rmse(m, xs, y), m_rmse(m, valid_xs, valid_y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"12397"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m.get_n_leaves()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Categorical variables"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Random forests"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#hide\n",
"# pip install --pre -f https://sklearn-nightly.scdn8.secure.raxcdn.com scikit-learn --U"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Creating a random forest"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def rf(xs, y, n_estimators=40, max_samples=200_000,\n",
" max_features=0.5, min_samples_leaf=5, **kwargs):\n",
" return RandomForestRegressor(n_jobs=-1, n_estimators=n_estimators,\n",
" max_samples=max_samples, max_features=max_features,\n",
" min_samples_leaf=min_samples_leaf, oob_score=True).fit(xs, y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"m = rf(xs, y);"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0.170896, 0.233502)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m_rmse(m, xs, y), m_rmse(m, valid_xs, valid_y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"preds = np.stack([t.predict(valid_xs) for t in m.estimators_])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.233502"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"r_mse(preds.mean(0), valid_y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"plt.plot([r_mse(preds[:i+1].mean(0), valid_y) for i in range(40)]);"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Out-of-bag error"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.210686"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"r_mse(m.oob_prediction_, y)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Model interpretation"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Tree variance for prediction confidence"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"preds = np.stack([t.predict(valid_xs) for t in m.estimators_])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(40, 7988)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"preds.shape"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"preds_std = preds.std(0)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([0.21529149, 0.10351274, 0.08901878, 0.28374773, 0.11977206])"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"preds_std[:5]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Feature importance"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def rf_feat_importance(m, df):\n",
" return pd.DataFrame({'cols':df.columns, 'imp':m.feature_importances_}\n",
" ).sort_values('imp', ascending=False)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"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>cols</th>\n",
" <th>imp</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>69</th>\n",
" <td>YearMade</td>\n",
" <td>0.182890</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>ProductSize</td>\n",
" <td>0.127268</td>\n",
" </tr>\n",
" <tr>\n",
" <th>30</th>\n",
" <td>Coupler_System</td>\n",
" <td>0.117698</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>fiProductClassDesc</td>\n",
" <td>0.069939</td>\n",
" </tr>\n",
" <tr>\n",
" <th>66</th>\n",
" <td>ModelID</td>\n",
" <td>0.057263</td>\n",
" </tr>\n",
" <tr>\n",
" <th>77</th>\n",
" <td>saleElapsed</td>\n",
" <td>0.050113</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32</th>\n",
" <td>Hydraulics_Flow</td>\n",
" <td>0.047091</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>fiSecondaryDesc</td>\n",
" <td>0.041225</td>\n",
" </tr>\n",
" <tr>\n",
" <th>31</th>\n",
" <td>Grouser_Tracks</td>\n",
" <td>0.031988</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>fiModelDesc</td>\n",
" <td>0.031838</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" cols imp\n",
"69 YearMade 0.182890\n",
"6 ProductSize 0.127268\n",
"30 Coupler_System 0.117698\n",
"7 fiProductClassDesc 0.069939\n",
"66 ModelID 0.057263\n",
"77 saleElapsed 0.050113\n",
"32 Hydraulics_Flow 0.047091\n",
"3 fiSecondaryDesc 0.041225\n",
"31 Grouser_Tracks 0.031988\n",
"1 fiModelDesc 0.031838"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"fi = rf_feat_importance(m, xs)\n",
"fi[:10]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAzcAAAGeCAYAAACpXf/VAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdaZSdVZn28f9FgDCHeUgYgjIKKGIBSkODoo1MgrYyI9gCDk3bONAgrRhsQLEVFdFGoJUhBnECxcCL0MgMygmiiIIyFIQkICFkDlNyvR/2LjkUpypVSQ1J5fqtVYtznj0+Rz/kXnvve8s2ERERERERS7vlBnsCERERERERfSHBTUREREREDAkJbiIiIiIiYkhIcBMREREREUNCgpuIiIiIiBgSlh/sCcTQsO6663r06NGDPY2IiIiIGOImTJgw1fZ6rcoS3ESfGD16NI1GY7CnERERERFDnKTHuyrLtrSIiIiIiBgSsnKzjJFkYEvbD/dlv/dPmsHoU8d3Wd7+5f37criIiIiIiNfIys0gknSEpIak2ZKmSLpO0u6DPa+IiIiIiKVRgptBIulTwDeAs4ENgE2B7wAHDea8uiIpq3wRERERsURLcDMIJI0Avgj8q+2f2Z5j+yXb19g+WdJwSd+QNLn+fUPS8Nr2WEm3d+rPkraony+RdIGkGyTNknSLpM26mMdwSV+V9ISkp2u7lWvZXpKelHSKpKeA7/frjxIRERERsZgS3AyOtwErAVd1Uf6fwFuBHYE3AbsAn+tF/0cC/wWsC9wH/KCLeucAW9VxtgBGAac3lW8IrA1sBpzQubGkE+q2usb8uTN6Mb2IiIiIiL6X4GZwrANMtf1yF+VHAl+0/TfbzwBnAEf3ov/xtm+1/QIlUHqbpE2aK0gScDzwSdvTbM+ibJE7rKnaAuALtl+wPa/zILYvtN1mu23YKiN6Mb2IiIiIiL6XcxSD41lgXUnLdxHgjASa83c/Xp/11MSOD7ZnS5pW209sqrMesAowocQ5AAgY1lTnGdvP92LciIiIiIhBk+BmcNwFPA8cDPykRflkylawB+r3TeszgDmUoAQASRu2aL9JU/lqlK1lkzvVmQrMA7azPamLebrbt2iyw6gRNJLuOSIiIiIGUbalDQLbMyhnW74t6WBJq0haQdK+kr4CXAF8TtJ6ktatdcfW5r8HtpO0o6SVgDEththP0u6SVqScvfmN7eZVG2wvAC4Cvi5pfQBJoyTt0w+vHBERERHR7xLcDBLb5wKfoiQKeIayZexE4GrgTKAB/AG4H7i3PsP2XyiZ1m4E/grc3rlvYBzwBWAa8BbKGZ5WTgEeBu6WNLP2ufXiv11ERERExMCT3eOdR7EUkHQJ8KTt3mRXW2xtbW1uNBoDOWRERERELIMkTbDd1qosKzcRERERETEkJLgZAJJOk3TxYM8jIiIiImIoy7a0PiZpL2Cs7Y0Hey4LI2kMsIXto+p3A3MpWdJeoFwAeqHtKxfW1/CNtvRGx3xjoWO2J6NaRERERCyGbEuL15DUVRrwN9lejZJY4BLgfElfGLCJRUREREQsomU+uJF0qqRHJM2S9CdJ763Px0ga21RvtCR3BAWS1pb0fUmTJT0n6WpJqwLXASMlza5/I1v09R5JD0iaLulmSds2lbVL+oykP0iaIenKmvK5o/wASffVtndKemNT2UhJP5X0jKTHJH2iqWyMpJ9IGlszox3b3e9ie6rty4GPAZ+VtM6i/8oREREREf1vmQ9ugEeAPYARwBnAWEkb9aDd5ZTLNLcD1ge+bnsOsC8w2fZq9e9Vl2dK2opyj81JwHrAtcA19U6aDocA7wY2B95IDUQk7QR8D/gIsA7wXeAXkoZLWg64hnIPzihgb+CkTvfWHES5NHRN4Ac9eEeAn1Mue92lc4GkEyQ1JDXmz53Rw+4iIiIiIvrHMh/c2P6x7cm2F9SzJX+lxT/km9XgZ1/go7afs/2S7Vt6OOShwHjbN9h+CfgqsDKwW1Od8+qcplEClh3r8+OB79r+je35ti+lnI15K7AzsJ7tL9p+0fajlEs6D2vq9y7bV9d3ndeTydY5TgXWblF2oe02223DVhnRw9ePiIiIiOgfXZ27WGZI+iDlMs3R9dFqwLoLabYJMM32c4sw5Ejg8Y4vthdImkhZbenwVNPnubUNwGbAMZL+ral8xVo+n7IdbnpT2TDgtqbvE3s7WUkrUFaYpvW2bURERETEQFqmgxtJm1FWN/amrGrMl3QfIGAOZdtZhw2bPk8E1pa0pu3mYAJKprHuTAZ2aJqDKMHSpB5MeSJwlu2zWrzL24DHbG/ZTftFSY13EPAy8NvuKu0wagSNZEKLiIiIiEG0rG9LW5XyD/5nACR9CNi+lt0H/KOkTSWNAD7b0cj2FErigO9IWkvSCpL+sRY/DaxT27TyI2B/SXvXVZFPU7aW3dmD+V4EfFTSripWlbS/pNUpwcdMSadIWlnSMEnbS9q5F7/H39WECUcC3wbOsf3sovQTERERETFQlungxvafgK8Bd1GCkh2AO2rZDcCVwB+ACcAvOzU/GngJeBD4GyVBALYfpCQMeLRmNBvZ3Mj2Q8BRwLcoZ1kOBA60/WIP5tugnLs5H3gOeJiabMD2/NrXjsBjte+LKYkSeuP3kmbXvo8DPmn79F72EREREREx4HKJZ/SJtrY2NxqNwZ5GRERERAxxucQzIiIiIiKGvAQ3ERERERExJCS4GWIkHSnpV03f/0HSXyXNlnSwpOskHTOYc4yIiIiI6A85czOAJO0OfAXYjnIvzZ+Bk2zf049j/h/wC9vf7K8xAIZvtKU3OuYbC63XnnTREREREbEYujtzs0zfczOQJK1Bybj2MUo66BWBPShpoPtqjOVtv9zp8WbAA/3Ud0RERETEEiPb0gbOVgC2r7A93/Y827+y/QcAScdL+rOkWZL+JGmn+vxUSY80PX9vR4eSjpV0h6SvS5oGjKnPbq/ljwCvA66p29KGS7pZ0nFNffxLHfc5SdfXi007yizpXyX9FfjrQPxIERERERGLKsHNwPkLMF/SpZL2lbRWR4GkDwBjgA8CawDvATouzXyEssIzAjgDGCtpo6Z+dwUeBdYHzmoe0PbrgSco9+isZvtVq0SSDgZOA94HrAfcRrmjp9nBdYw3dH4hSSdIakhqzJ87o6e/Q0REREREv0hwM0BszwR2BwxcBDwj6ReSNqBclvkV2/e4eNj247Xdj21Ptr3A9pWUFZRdmrqebPtbtl+2Pa+X0/oI8CXbf65bzs4Gdmxevanl01r1bftC222224at0tu7QiMiIiIi+laCmwFUg4hjbW8MbA+MBL4BbEJZoXkNSR+UdJ+k6ZKm13brNlWZuBhT2gz4ZlPf0wABo/qo/4iIiIiIAZOEAoPE9oOSLqGsnkwEXt+5Tl1BuQjYG7jL9nxJ91ECkL93tRjTmAicZfsH3U21Jx3tMGoEjWRCi4iIiIhBlJWbASJpG0mflrRx/b4JcDhwN3Ax8BlJb1GxRQ1sVqUEF8/UNh+irNz0lQuAz0rarvY/op7/iYiIiIhY6mTlZuDMohzM/5SkNYHplNTQJ9ueKWkdYBxlS1g7cLTt30n6GnAXsAC4DLijryZk+ypJqwE/rMHUDOAG4Md9NUZERERExEDJJZ7RJ9ra2txoNAZ7GhERERExxHV3iWe2pUVERERExJCQ4CYiIiIiIoaEBDeDTJIlbTHY82gm6RJJZw72PCIiIiIieiMJBZYSkh4CPm/7R/X7PwC3A4d2enY9sGa9lHPA3D9pBqNPHd/j+u1JGx0RERERfSwrN0uPW4E9m77/I/Bgi2d3DnRgExERERGxJEhw04cknSJpkqRZkh6StLekXSTdJWm6pCmSzpe0Yhfth0v6qqQnJD0t6QJJK9fiWynBS4c9gHNaPLu1qb9/kfRnSc9Jur6me+4o20bSDZKm1bke0sWcVpf0a0nnSVKrOhERERERS4IEN31E0tbAicDOtlcH9qHcVzMf+CSwLvA2YG/g4110cw6wFbAjsAXlzpvTa9ktwHaS1pa0HNAGXAm
"text/plain": [
"<Figure size 864x504 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"def plot_fi(fi):\n",
" return fi.plot('cols', 'imp', 'barh', figsize=(12,7), legend=False)\n",
"\n",
"plot_fi(fi[:30]);"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Removing low-importance variables"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"21"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"to_keep = fi[fi.imp>0.005].cols\n",
"len(to_keep)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"xs_imp = xs[to_keep]\n",
"valid_xs_imp = valid_xs[to_keep]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"m = rf(xs_imp, y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0.181208, 0.232323)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m_rmse(m, xs_imp, y), m_rmse(m, valid_xs_imp, valid_y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(78, 21)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(xs.columns), len(xs_imp.columns)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 864x504 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"plot_fi(rf_feat_importance(m, xs_imp));"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Removing redundant features"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 720x432 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"cluster_columns(xs_imp)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def get_oob(df):\n",
" m = RandomForestRegressor(n_estimators=40, min_samples_leaf=15,\n",
" max_samples=50000, max_features=0.5, n_jobs=-1, oob_score=True)\n",
" m.fit(df, y)\n",
" return m.oob_score_"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.8771039618198545"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"get_oob(xs_imp)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'saleYear': 0.8759666979317242,\n",
" 'saleElapsed': 0.8728423449081594,\n",
" 'ProductGroupDesc': 0.877877012281002,\n",
" 'ProductGroup': 0.8772503407182847,\n",
" 'fiModelDesc': 0.8756415073829513,\n",
" 'fiBaseModel': 0.8765165299438019,\n",
" 'Hydraulics_Flow': 0.8778545895742573,\n",
" 'Grouser_Tracks': 0.8773718142788077,\n",
" 'Coupler_System': 0.8778016988955392}"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"{c:get_oob(xs_imp.drop(c, axis=1)) for c in (\n",
" 'saleYear', 'saleElapsed', 'ProductGroupDesc','ProductGroup',\n",
" 'fiModelDesc', 'fiBaseModel',\n",
" 'Hydraulics_Flow','Grouser_Tracks', 'Coupler_System')}"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.8739605718147015"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"to_drop = ['saleYear', 'ProductGroupDesc', 'fiBaseModel', 'Grouser_Tracks']\n",
"get_oob(xs_imp.drop(to_drop, axis=1))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"xs_final = xs_imp.drop(to_drop, axis=1)\n",
"valid_xs_final = valid_xs_imp.drop(to_drop, axis=1)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"(path/'xs_final.pkl').save(xs_final)\n",
"(path/'valid_xs_final.pkl').save(valid_xs_final)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"xs_final = (path/'xs_final.pkl').load()\n",
"valid_xs_final = (path/'valid_xs_final.pkl').load()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0.183263, 0.233846)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m = rf(xs_final, y)\n",
"m_rmse(m, xs_final, y), m_rmse(m, valid_xs_final, valid_y)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Partial dependence"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"p = valid_xs_final['ProductSize'].value_counts(sort=False).plot.barh()\n",
"c = to.classes['ProductSize']\n",
"plt.yticks(range(len(c)), c);"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"ax = valid_xs_final['YearMade'].hist()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 864x288 with 3 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"from sklearn.inspection import plot_partial_dependence\n",
"\n",
"fig,ax = plt.subplots(figsize=(12, 4))\n",
"plot_partial_dependence(m, valid_xs_final, ['YearMade','ProductSize'],\n",
" grid_resolution=20, ax=ax);"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Data leakage"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Tree interpreter"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#hide\n",
"import warnings\n",
"warnings.simplefilter('ignore', FutureWarning)\n",
"\n",
"from treeinterpreter import treeinterpreter\n",
"from waterfall_chart import plot as waterfall"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"row = valid_xs_final.iloc[:5]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"prediction,bias,contributions = treeinterpreter.predict(m, row.values)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(array([9.98234598]), 10.104309759725059, -0.12196378442186026)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"prediction[0], bias[0], contributions[0].sum()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"waterfall(valid_xs_final.columns, contributions[0], threshold=0.08, \n",
" rotation_value=45,formatting='{:,.3f}');"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Extrapolation and neural networks"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### The extrapolation problem"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"#hide\n",
"np.random.seed(42)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"x_lin = torch.linspace(0,20, steps=40)\n",
"y_lin = x_lin + torch.randn_like(x_lin)\n",
"plt.scatter(x_lin, y_lin);"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(torch.Size([40]), torch.Size([40, 1]))"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"xs_lin = x_lin.unsqueeze(1)\n",
"x_lin.shape,xs_lin.shape"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"torch.Size([40, 1])"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"x_lin[:,None].shape"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"m_lin = RandomForestRegressor().fit(xs_lin[:30],y_lin[:30])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"plt.scatter(x_lin, y_lin, 20)\n",
"plt.scatter(x_lin, m_lin.predict(xs_lin), color='red', alpha=0.5);"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Finding out of domain data"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"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>cols</th>\n",
" <th>imp</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>saleElapsed</td>\n",
" <td>0.859446</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>SalesID</td>\n",
" <td>0.119325</td>\n",
" </tr>\n",
" <tr>\n",
" <th>13</th>\n",
" <td>MachineID</td>\n",
" <td>0.014259</td>\n",
" </tr>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>YearMade</td>\n",
" <td>0.001793</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>fiModelDesc</td>\n",
" <td>0.001740</td>\n",
" </tr>\n",
" <tr>\n",
" <th>11</th>\n",
" <td>Enclosure</td>\n",
" <td>0.000657</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" cols imp\n",
"5 saleElapsed 0.859446\n",
"9 SalesID 0.119325\n",
"13 MachineID 0.014259\n",
"0 YearMade 0.001793\n",
"8 fiModelDesc 0.001740\n",
"11 Enclosure 0.000657"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_dom = pd.concat([xs_final, valid_xs_final])\n",
"is_valid = np.array([0]*len(xs_final) + [1]*len(valid_xs_final))\n",
"\n",
"m = rf(df_dom, is_valid)\n",
"rf_feat_importance(m, df_dom)[:6]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"orig 0.232795\n",
"SalesID 0.23109\n",
"saleElapsed 0.236221\n",
"MachineID 0.233492\n"
]
}
],
"source": [
"m = rf(xs_final, y)\n",
"print('orig', m_rmse(m, valid_xs_final, valid_y))\n",
"\n",
"for c in ('SalesID','saleElapsed','MachineID'):\n",
" m = rf(xs_final.drop(c,axis=1), y)\n",
" print(c, m_rmse(m, valid_xs_final.drop(c,axis=1), valid_y))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.231307"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"time_vars = ['SalesID','MachineID']\n",
"xs_final_time = xs_final.drop(time_vars, axis=1)\n",
"valid_xs_time = valid_xs_final.drop(time_vars, axis=1)\n",
"\n",
"m = rf(xs_final_time, y)\n",
"m_rmse(m, valid_xs_time, valid_y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"xs['saleYear'].hist();"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"filt = xs['saleYear']>2004\n",
"xs_filt = xs_final_time[filt]\n",
"y_filt = y[filt]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0.17768, 0.230631)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m = rf(xs_filt, y_filt)\n",
"m_rmse(m, xs_filt, y_filt), m_rmse(m, valid_xs_time, valid_y)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Using a neural network"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df_nn = pd.read_csv(path/'TrainAndValid.csv', low_memory=False)\n",
"df_nn['ProductSize'] = df_nn['ProductSize'].astype('category')\n",
"df_nn['ProductSize'].cat.set_categories(sizes, ordered=True, inplace=True)\n",
"df_nn[dep_var] = np.log(df_nn[dep_var])\n",
"df_nn = add_datepart(df_nn, 'saledate')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df_nn_final = df_nn[list(xs_final_time.columns) + [dep_var]]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"cont_nn,cat_nn = cont_cat_split(df_nn_final, max_card=9000, dep_var=dep_var)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"cont_nn.append('saleElapsed')\n",
"cat_nn.remove('saleElapsed')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"YearMade 73\n",
"ProductSize 6\n",
"Coupler_System 2\n",
"fiProductClassDesc 74\n",
"ModelID 5281\n",
"Hydraulics_Flow 3\n",
"fiSecondaryDesc 177\n",
"fiModelDesc 5059\n",
"ProductGroup 6\n",
"Enclosure 6\n",
"fiModelDescriptor 140\n",
"Drive_System 4\n",
"Hydraulics 12\n",
"Tire_Size 17\n",
"dtype: int64"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_nn_final[cat_nn].nunique()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0.176706, 0.230642)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"xs_filt2 = xs_filt.drop('fiModelDescriptor', axis=1)\n",
"valid_xs_time2 = valid_xs_time.drop('fiModelDescriptor', axis=1)\n",
"m2 = rf(xs_filt2, y_filt)\n",
"m_rmse(m, xs_filt2, y_filt), m_rmse(m2, valid_xs_time2, valid_y)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"cat_nn.remove('fiModelDescriptor')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"procs_nn = [Categorify, FillMissing, Normalize]\n",
"to_nn = TabularPandas(df_nn_final, procs_nn, cat_nn, cont_nn,\n",
" splits=splits, y_names=dep_var)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"dls = to_nn.dataloaders(1024)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(8.465899897028686, 11.863582336583399)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"y = to_nn.train.y\n",
"y.min(),y.max()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"from fastai2.tabular.all import *"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"learn = tabular_learner(dls, y_range=(8,12), layers=[500,250],\n",
" n_out=1, loss_func=F.mse_loss)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"(0.005754399299621582, 0.0002754228771664202)"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/png": "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
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"learn.lr_find()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: left;\">\n",
" <th>epoch</th>\n",
" <th>train_loss</th>\n",
" <th>valid_loss</th>\n",
" <th>time</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td>0</td>\n",
" <td>0.069705</td>\n",
" <td>0.062389</td>\n",
" <td>00:11</td>\n",
" </tr>\n",
" <tr>\n",
" <td>1</td>\n",
" <td>0.056253</td>\n",
" <td>0.058489</td>\n",
" <td>00:11</td>\n",
" </tr>\n",
" <tr>\n",
" <td>2</td>\n",
" <td>0.048385</td>\n",
" <td>0.052256</td>\n",
" <td>00:11</td>\n",
" </tr>\n",
" <tr>\n",
" <td>3</td>\n",
" <td>0.043400</td>\n",
" <td>0.050743</td>\n",
" <td>00:11</td>\n",
" </tr>\n",
" <tr>\n",
" <td>4</td>\n",
" <td>0.040358</td>\n",
" <td>0.050986</td>\n",
" <td>00:11</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"learn.fit_one_cycle(5, 1e-2)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"0.2258"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"preds,targs = learn.get_preds()\n",
"r_mse(preds,targs)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"learn.save('nn')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### fastai's Tabular classes"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Ensembling"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"rf_preds = m.predict(valid_xs_time)\n",
"ens_preds = (to_np(preds.squeeze()) + rf_preds) /2"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.22291"
]
},
"execution_count": null,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"r_mse(ens_preds,valid_y)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Boosting"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Combining embeddings with other methods"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Conclusion: our advice for tabular modeling"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Questionnaire"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Further research"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"jupytext": {
"split_at_heading": true
},
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}