Created
February 28, 2020 03:45
-
-
Save epassaro/7ad4f63829f58d333153128f90a7b005 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Compare TARDIS atomic files\n", | |
"\n", | |
"This notebook compares the attributes `levels_prepared` and `lines_prepared` generated by Carsus and stored in HDF5 format.\n", | |
"\n", | |
"I tried to cover every case:\n", | |
"\n", | |
"1. Ion present in both files, with different number of levels/lines.\n", | |
"2. Ion present in both files, with same number of levels/lines but some different value.\n", | |
"3. Ion not present in one file.\n", | |
"4. Ion not present in both files." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stderr", | |
"output_type": "stream", | |
"text": [ | |
"/home/epassaro/miniconda3/envs/carsus/lib/python3.6/importlib/_bootstrap.py:219: QAWarning: pyne.data is not yet QA compliant.\n", | |
" return f(*args, **kwds)\n", | |
"/home/epassaro/miniconda3/envs/carsus/lib/python3.6/site-packages/tardis/io/util.py:14: TqdmExperimentalWarning: Using `tqdm.autonotebook.tqdm` in notebook mode. Use `tqdm.tqdm` instead to force console mode (e.g. in jupyter console)\n", | |
" from tqdm.autonotebook import tqdm\n" | |
] | |
} | |
], | |
"source": [ | |
"import pandas as pd\n", | |
"from carsus.util import parse_selected_species" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"## Set paths" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"path_a = 'kurucz_H-Zn_chianti_H-He_sql.h5'\n", | |
"path_b = 'kurucz_H-Zn_chianti_H-He_pandas.h5'" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"## Define functions" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 3, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def highlight_values(val):\n", | |
" if val == True:\n", | |
" return 'background-color: #BCF5A9'\n", | |
" else:\n", | |
" return 'background-color: #F5A9A9'\n", | |
" \n", | |
"def highlight_diff(val):\n", | |
" if val == 0:\n", | |
" return 'background-color: #BCF5A9'\n", | |
" else:\n", | |
" return 'background-color: #F5A9A9'" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 4, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def compare_levels_lines(path_a, path_b, ions='H-Zn'):\n", | |
" \n", | |
" # Read data\n", | |
" levels_a = pd.read_hdf(path_a, key='levels')\n", | |
" levels_b = pd.read_hdf(path_b, key='levels')\n", | |
" lines_a = pd.read_hdf(path_a, key='lines')\n", | |
" lines_b = pd.read_hdf(path_b, key='lines')\n", | |
" \n", | |
" # Get ions list\n", | |
" ions = parse_selected_species(ions)\n", | |
" \n", | |
" lvl_eq = []\n", | |
" lns_eq = []\n", | |
" for ion in ions:\n", | |
" \n", | |
" # How many levels per ion in A\n", | |
" try:\n", | |
" num_lvl_a = len(levels_a.loc[ion])\n", | |
" \n", | |
" except (KeyError, TypeError, ValueError):\n", | |
" num_lvl_a = 0\n", | |
" \n", | |
" # How many levels per ion in B\n", | |
" try:\n", | |
" num_lvl_b = len(levels_b.loc[ion])\n", | |
" \n", | |
" except (KeyError, TypeError, ValueError):\n", | |
" num_lvl_b = 0\n", | |
"\n", | |
" # If level number is the same in A and B (and not zero) \n", | |
" # then compare cell against cell. `True` means all cells \n", | |
" # are equal in both dataframes.\n", | |
" if num_lvl_a == num_lvl_b:\n", | |
" val_lvl = True\n", | |
" \n", | |
" if num_lvl_a != 0:\n", | |
" try:\n", | |
" k = levels_a.loc[ion].eq(levels_b.loc[ion]).sum().sum()\n", | |
" if num_lvl_a*3 != k: # x3 because this df has three columns!\n", | |
" val_lvl = False\n", | |
" \n", | |
" except (KeyError, TypeError, ValueError):\n", | |
" pass\n", | |
"\n", | |
" else:\n", | |
" val_lvl = False\n", | |
" \n", | |
" # Append the results\n", | |
" lvl_eq.append((ion, num_lvl_a, num_lvl_b, val_lvl))\n", | |
" \n", | |
" \n", | |
" # Same for lines\n", | |
" try:\n", | |
" num_lns_a = len(lines_a.loc[ion])\n", | |
" \n", | |
" except (KeyError, TypeError, ValueError):\n", | |
" num_lns_a = 0\n", | |
" \n", | |
" try:\n", | |
" num_lns_b = len(lines_a.loc[ion])\n", | |
" \n", | |
" except (KeyError, TypeError, ValueError):\n", | |
" num_lns_b = 0\n", | |
"\n", | |
" if num_lns_a == num_lns_b:\n", | |
" val_lns = True\n", | |
" \n", | |
" if num_lns_a != 0:\n", | |
" try:\n", | |
" k = lines_a.loc[ion].eq(lines_b.loc[ion]).sum().sum()\n", | |
" if num_lns_a*8 != k:\n", | |
" val_lvl = False\n", | |
" \n", | |
" except (KeyError, TypeError, ValueError):\n", | |
" pass\n", | |
" \n", | |
" else:\n", | |
" val_lns = False\n", | |
" \n", | |
" lns_eq.append((ion, num_lns_a, num_lns_b, val_lns))\n", | |
" \n", | |
" df_lvl = pd.DataFrame(lvl_eq, columns=['ion', 'num_lvl_a', 'num_lvl_b', 'val_lvl'])\n", | |
" df_lns = pd.DataFrame(lns_eq, columns=['ion', 'num_lns_a', 'num_lns_b', 'val_lns'])\n", | |
" df = pd.merge(df_lvl, df_lns).set_index('ion')\n", | |
" \n", | |
" df['diff_lvl'] = abs(df['num_lvl_b'] - df['num_lvl_a'])\n", | |
" df['diff_lns'] = abs(df['num_lns_b'] - df['num_lns_a'])\n", | |
" df = df[['num_lvl_a', 'num_lvl_b', 'diff_lvl', 'val_lvl', \n", | |
" 'num_lns_a', 'num_lns_b', 'diff_lns', 'val_lns']]\n", | |
"\n", | |
" return df" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 5, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def lvl_diff(path_a, path_b, ion):\n", | |
" \n", | |
" # Read data\n", | |
" levels_a = pd.read_hdf(path_a, key='levels').loc[ion]\n", | |
" levels_b = pd.read_hdf(path_b, key='levels').loc[ion]\n", | |
" \n", | |
" df = levels_a.join(levels_b, how='outer', lsuffix='_a', rsuffix='_b')\n", | |
" df['energy_diff'] = abs(df['energy_b'] - df['energy_a'])\n", | |
" df.loc[df['g_a'] == df['g_b'], 'g_values'] = True\n", | |
" df.loc[df['g_a'] != df['g_b'], 'g_values'] = False\n", | |
" df.loc[df['metastable_a'] == df['metastable_b'], 'metastable_values'] = True\n", | |
" df.loc[df['metastable_a'] != df['metastable_b'], 'metastable_values'] = False\n", | |
" df = df[['energy_a', 'energy_b', 'energy_diff', 'g_a', 'g_b', 'g_values',\n", | |
" 'metastable_a', 'metastable_b', 'metastable_values']]\n", | |
"\n", | |
" return df" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"## Summary and test table" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 6, | |
"metadata": { | |
"scrolled": false | |
}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"[\u001b[1mpy.warnings \u001b[0m][\u001b[1;33mWARNING\u001b[0m] /home/epassaro/miniconda3/envs/carsus/lib/python3.6/site-packages/ipykernel_launcher.py:54: PerformanceWarning: indexing past lexsort depth may impact performance.\n", | |
" (\u001b[1mwarnings.py\u001b[0m:99)\n", | |
"[\u001b[1mpy.warnings \u001b[0m][\u001b[1;33mWARNING\u001b[0m] /home/epassaro/miniconda3/envs/carsus/lib/python3.6/site-packages/ipykernel_launcher.py:54: PerformanceWarning: indexing past lexsort depth may impact performance.\n", | |
" (\u001b[1mwarnings.py\u001b[0m:99)\n", | |
"[\u001b[1mpy.warnings \u001b[0m][\u001b[1;33mWARNING\u001b[0m] /home/epassaro/miniconda3/envs/carsus/lib/python3.6/site-packages/ipykernel_launcher.py:60: PerformanceWarning: indexing past lexsort depth may impact performance.\n", | |
" (\u001b[1mwarnings.py\u001b[0m:99)\n", | |
"[\u001b[1mpy.warnings \u001b[0m][\u001b[1;33mWARNING\u001b[0m] /home/epassaro/miniconda3/envs/carsus/lib/python3.6/site-packages/ipykernel_launcher.py:60: PerformanceWarning: indexing past lexsort depth may impact performance.\n", | |
" (\u001b[1mwarnings.py\u001b[0m:99)\n", | |
"[\u001b[1mpy.warnings \u001b[0m][\u001b[1;33mWARNING\u001b[0m] /home/epassaro/miniconda3/envs/carsus/lib/python3.6/site-packages/ipykernel_launcher.py:70: PerformanceWarning: indexing past lexsort depth may impact performance.\n", | |
" (\u001b[1mwarnings.py\u001b[0m:99)\n", | |
"[\u001b[1mpy.warnings \u001b[0m][\u001b[1;33mWARNING\u001b[0m] /home/epassaro/miniconda3/envs/carsus/lib/python3.6/site-packages/ipykernel_launcher.py:70: PerformanceWarning: indexing past lexsort depth may impact performance.\n", | |
" (\u001b[1mwarnings.py\u001b[0m:99)\n" | |
] | |
} | |
], | |
"source": [ | |
"tt = compare_levels_lines(path_a, path_b)\n", | |
"summary = pd.DataFrame(tt.sum().astype(int), columns=['Total'])" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 7, | |
"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>Total</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>num_lvl_a</th>\n", | |
" <td>24537</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>num_lvl_b</th>\n", | |
" <td>24538</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>diff_lvl</th>\n", | |
" <td>1</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>val_lvl</th>\n", | |
" <td>464</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>num_lns_a</th>\n", | |
" <td>271771</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>num_lns_b</th>\n", | |
" <td>271771</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>diff_lns</th>\n", | |
" <td>0</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>val_lns</th>\n", | |
" <td>465</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" Total\n", | |
"num_lvl_a 24537\n", | |
"num_lvl_b 24538\n", | |
"diff_lvl 1\n", | |
"val_lvl 464\n", | |
"num_lns_a 271771\n", | |
"num_lns_b 271771\n", | |
"diff_lns 0\n", | |
"val_lns 465" | |
] | |
}, | |
"execution_count": 7, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"summary" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"- **num_???:** _(int)_ total number of levels/lines.\n", | |
"- **diff_???:** _(int)_ difference in total number of levels/lines between A and B.\n", | |
"- **val_???:** _(bool)_ means every single cell in dataframe A is equal to the one on B." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 8, | |
"metadata": { | |
"scrolled": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<style type=\"text/css\" >\n", | |
" #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col3 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col3 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col6 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col7 {\n", | |
" background-color: #BCF5A9;\n", | |
" }</style><table id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53\" ><thead> <tr> <th class=\"blank level0\" ></th> <th class=\"col_heading level0 col0\" >num_lvl_a</th> <th class=\"col_heading level0 col1\" >num_lvl_b</th> <th class=\"col_heading level0 col2\" >diff_lvl</th> <th class=\"col_heading level0 col3\" >val_lvl</th> <th class=\"col_heading level0 col4\" >num_lns_a</th> <th class=\"col_heading level0 col5\" >num_lns_b</th> <th class=\"col_heading level0 col6\" >diff_lns</th> <th class=\"col_heading level0 col7\" >val_lns</th> </tr> <tr> <th class=\"index_name level0\" >ion</th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> <th class=\"blank\" ></th> </tr></thead><tbody>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row0\" class=\"row_heading level0 row0\" >(1, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col0\" class=\"data row0 col0\" >25</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col1\" class=\"data row0 col1\" >25</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col2\" class=\"data row0 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col3\" class=\"data row0 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col4\" class=\"data row0 col4\" >74</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col5\" class=\"data row0 col5\" >74</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col6\" class=\"data row0 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row0_col7\" class=\"data row0 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row1\" class=\"row_heading level0 row1\" >(2, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col0\" class=\"data row1 col0\" >49</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col1\" class=\"data row1 col1\" >49</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col2\" class=\"data row1 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col3\" class=\"data row1 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col4\" class=\"data row1 col4\" >174</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col5\" class=\"data row1 col5\" >174</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col6\" class=\"data row1 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row1_col7\" class=\"data row1 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row2\" class=\"row_heading level0 row2\" >(2, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col0\" class=\"data row2 col0\" >25</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col1\" class=\"data row2 col1\" >25</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col2\" class=\"data row2 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col3\" class=\"data row2 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col4\" class=\"data row2 col4\" >67</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col5\" class=\"data row2 col5\" >67</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col6\" class=\"data row2 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row2_col7\" class=\"data row2 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row3\" class=\"row_heading level0 row3\" >(3, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col0\" class=\"data row3 col0\" >67</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col1\" class=\"data row3 col1\" >67</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col2\" class=\"data row3 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col3\" class=\"data row3 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col4\" class=\"data row3 col4\" >403</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col5\" class=\"data row3 col5\" >403</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col6\" class=\"data row3 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row3_col7\" class=\"data row3 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row4\" class=\"row_heading level0 row4\" >(3, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col0\" class=\"data row4 col0\" >55</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col1\" class=\"data row4 col1\" >55</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col2\" class=\"data row4 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col3\" class=\"data row4 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col4\" class=\"data row4 col4\" >135</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col5\" class=\"data row4 col5\" >135</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col6\" class=\"data row4 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row4_col7\" class=\"data row4 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row5\" class=\"row_heading level0 row5\" >(3, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col0\" class=\"data row5 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col1\" class=\"data row5 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col2\" class=\"data row5 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col3\" class=\"data row5 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col4\" class=\"data row5 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col5\" class=\"data row5 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col6\" class=\"data row5 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row5_col7\" class=\"data row5 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row6\" class=\"row_heading level0 row6\" >(4, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col0\" class=\"data row6 col0\" >28</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col1\" class=\"data row6 col1\" >28</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col2\" class=\"data row6 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col3\" class=\"data row6 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col4\" class=\"data row6 col4\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col5\" class=\"data row6 col5\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col6\" class=\"data row6 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row6_col7\" class=\"data row6 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row7\" class=\"row_heading level0 row7\" >(4, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col0\" class=\"data row7 col0\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col1\" class=\"data row7 col1\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col2\" class=\"data row7 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col3\" class=\"data row7 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col4\" class=\"data row7 col4\" >185</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col5\" class=\"data row7 col5\" >185</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col6\" class=\"data row7 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row7_col7\" class=\"data row7 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row8\" class=\"row_heading level0 row8\" >(4, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col0\" class=\"data row8 col0\" >17</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col1\" class=\"data row8 col1\" >17</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col2\" class=\"data row8 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col3\" class=\"data row8 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col4\" class=\"data row8 col4\" >27</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col5\" class=\"data row8 col5\" >27</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col6\" class=\"data row8 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row8_col7\" class=\"data row8 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row9\" class=\"row_heading level0 row9\" >(4, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col0\" class=\"data row9 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col1\" class=\"data row9 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col2\" class=\"data row9 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col3\" class=\"data row9 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col4\" class=\"data row9 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col5\" class=\"data row9 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col6\" class=\"data row9 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row9_col7\" class=\"data row9 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row10\" class=\"row_heading level0 row10\" >(5, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col0\" class=\"data row10 col0\" >34</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col1\" class=\"data row10 col1\" >34</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col2\" class=\"data row10 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col3\" class=\"data row10 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col4\" class=\"data row10 col4\" >87</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col5\" class=\"data row10 col5\" >87</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col6\" class=\"data row10 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row10_col7\" class=\"data row10 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row11\" class=\"row_heading level0 row11\" >(5, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col0\" class=\"data row11 col0\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col1\" class=\"data row11 col1\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col2\" class=\"data row11 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col3\" class=\"data row11 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col4\" class=\"data row11 col4\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col5\" class=\"data row11 col5\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col6\" class=\"data row11 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row11_col7\" class=\"data row11 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row12\" class=\"row_heading level0 row12\" >(5, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col0\" class=\"data row12 col0\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col1\" class=\"data row12 col1\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col2\" class=\"data row12 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col3\" class=\"data row12 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col4\" class=\"data row12 col4\" >100</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col5\" class=\"data row12 col5\" >100</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col6\" class=\"data row12 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row12_col7\" class=\"data row12 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row13\" class=\"row_heading level0 row13\" >(5, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col0\" class=\"data row13 col0\" >10</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col1\" class=\"data row13 col1\" >10</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col2\" class=\"data row13 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col3\" class=\"data row13 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col4\" class=\"data row13 col4\" >7</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col5\" class=\"data row13 col5\" >7</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col6\" class=\"data row13 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row13_col7\" class=\"data row13 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row14\" class=\"row_heading level0 row14\" >(5, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col0\" class=\"data row14 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col1\" class=\"data row14 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col2\" class=\"data row14 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col3\" class=\"data row14 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col4\" class=\"data row14 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col5\" class=\"data row14 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col6\" class=\"data row14 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row14_col7\" class=\"data row14 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row15\" class=\"row_heading level0 row15\" >(6, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col0\" class=\"data row15 col0\" >829</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col1\" class=\"data row15 col1\" >829</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col2\" class=\"data row15 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col3\" class=\"data row15 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col4\" class=\"data row15 col4\" >3249</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col5\" class=\"data row15 col5\" >3249</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col6\" class=\"data row15 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row15_col7\" class=\"data row15 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row16\" class=\"row_heading level0 row16\" >(6, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col0\" class=\"data row16 col0\" >85</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col1\" class=\"data row16 col1\" >85</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col2\" class=\"data row16 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col3\" class=\"data row16 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col4\" class=\"data row16 col4\" >374</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col5\" class=\"data row16 col5\" >374</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col6\" class=\"data row16 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row16_col7\" class=\"data row16 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row17\" class=\"row_heading level0 row17\" >(6, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col0\" class=\"data row17 col0\" >79</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col1\" class=\"data row17 col1\" >79</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col2\" class=\"data row17 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col3\" class=\"data row17 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col4\" class=\"data row17 col4\" >388</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col5\" class=\"data row17 col5\" >388</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col6\" class=\"data row17 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row17_col7\" class=\"data row17 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row18\" class=\"row_heading level0 row18\" >(6, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col0\" class=\"data row18 col0\" >36</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col1\" class=\"data row18 col1\" >36</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col2\" class=\"data row18 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col3\" class=\"data row18 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col4\" class=\"data row18 col4\" >192</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col5\" class=\"data row18 col5\" >192</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col6\" class=\"data row18 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row18_col7\" class=\"data row18 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row19\" class=\"row_heading level0 row19\" >(6, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col0\" class=\"data row19 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col1\" class=\"data row19 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col2\" class=\"data row19 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col3\" class=\"data row19 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col4\" class=\"data row19 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col5\" class=\"data row19 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col6\" class=\"data row19 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row19_col7\" class=\"data row19 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row20\" class=\"row_heading level0 row20\" >(6, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col0\" class=\"data row20 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col1\" class=\"data row20 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col2\" class=\"data row20 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col3\" class=\"data row20 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col4\" class=\"data row20 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col5\" class=\"data row20 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col6\" class=\"data row20 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row20_col7\" class=\"data row20 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row21\" class=\"row_heading level0 row21\" >(7, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col0\" class=\"data row21 col0\" >276</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col1\" class=\"data row21 col1\" >276</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col2\" class=\"data row21 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col3\" class=\"data row21 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col4\" class=\"data row21 col4\" >3679</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col5\" class=\"data row21 col5\" >3679</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col6\" class=\"data row21 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row21_col7\" class=\"data row21 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row22\" class=\"row_heading level0 row22\" >(7, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col0\" class=\"data row22 col0\" >152</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col1\" class=\"data row22 col1\" >152</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col2\" class=\"data row22 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col3\" class=\"data row22 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col4\" class=\"data row22 col4\" >1154</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col5\" class=\"data row22 col5\" >1154</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col6\" class=\"data row22 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row22_col7\" class=\"data row22 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row23\" class=\"row_heading level0 row23\" >(7, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col0\" class=\"data row23 col0\" >89</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col1\" class=\"data row23 col1\" >89</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col2\" class=\"data row23 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col3\" class=\"data row23 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col4\" class=\"data row23 col4\" >272</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col5\" class=\"data row23 col5\" >272</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col6\" class=\"data row23 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row23_col7\" class=\"data row23 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row24\" class=\"row_heading level0 row24\" >(7, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col0\" class=\"data row24 col0\" >81</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col1\" class=\"data row24 col1\" >81</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col2\" class=\"data row24 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col3\" class=\"data row24 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col4\" class=\"data row24 col4\" >404</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col5\" class=\"data row24 col5\" >404</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col6\" class=\"data row24 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row24_col7\" class=\"data row24 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row25\" class=\"row_heading level0 row25\" >(7, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col0\" class=\"data row25 col0\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col1\" class=\"data row25 col1\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col2\" class=\"data row25 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col3\" class=\"data row25 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col4\" class=\"data row25 col4\" >229</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col5\" class=\"data row25 col5\" >229</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col6\" class=\"data row25 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row25_col7\" class=\"data row25 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row26\" class=\"row_heading level0 row26\" >(7, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col0\" class=\"data row26 col0\" >15</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col1\" class=\"data row26 col1\" >15</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col2\" class=\"data row26 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col3\" class=\"data row26 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col4\" class=\"data row26 col4\" >24</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col5\" class=\"data row26 col5\" >24</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col6\" class=\"data row26 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row26_col7\" class=\"data row26 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row27\" class=\"row_heading level0 row27\" >(7, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col0\" class=\"data row27 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col1\" class=\"data row27 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col2\" class=\"data row27 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col3\" class=\"data row27 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col4\" class=\"data row27 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col5\" class=\"data row27 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col6\" class=\"data row27 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row27_col7\" class=\"data row27 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row28\" class=\"row_heading level0 row28\" >(8, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col0\" class=\"data row28 col0\" >150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col1\" class=\"data row28 col1\" >150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col2\" class=\"data row28 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col3\" class=\"data row28 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col4\" class=\"data row28 col4\" >854</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col5\" class=\"data row28 col5\" >854</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col6\" class=\"data row28 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row28_col7\" class=\"data row28 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row29\" class=\"row_heading level0 row29\" >(8, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col0\" class=\"data row29 col0\" >173</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col1\" class=\"data row29 col1\" >173</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col2\" class=\"data row29 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col3\" class=\"data row29 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col4\" class=\"data row29 col4\" >1374</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col5\" class=\"data row29 col5\" >1374</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col6\" class=\"data row29 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row29_col7\" class=\"data row29 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row30\" class=\"row_heading level0 row30\" >(8, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col0\" class=\"data row30 col0\" >137</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col1\" class=\"data row30 col1\" >137</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col2\" class=\"data row30 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col3\" class=\"data row30 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col4\" class=\"data row30 col4\" >766</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col5\" class=\"data row30 col5\" >766</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col6\" class=\"data row30 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row30_col7\" class=\"data row30 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row31\" class=\"row_heading level0 row31\" >(8, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col0\" class=\"data row31 col0\" >137</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col1\" class=\"data row31 col1\" >137</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col2\" class=\"data row31 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col3\" class=\"data row31 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col4\" class=\"data row31 col4\" >465</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col5\" class=\"data row31 col5\" >465</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col6\" class=\"data row31 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row31_col7\" class=\"data row31 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row32\" class=\"row_heading level0 row32\" >(8, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col0\" class=\"data row32 col0\" >97</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col1\" class=\"data row32 col1\" >97</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col2\" class=\"data row32 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col3\" class=\"data row32 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col4\" class=\"data row32 col4\" >459</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col5\" class=\"data row32 col5\" >459</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col6\" class=\"data row32 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row32_col7\" class=\"data row32 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row33\" class=\"row_heading level0 row33\" >(8, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col0\" class=\"data row33 col0\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col1\" class=\"data row33 col1\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col2\" class=\"data row33 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col3\" class=\"data row33 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col4\" class=\"data row33 col4\" >214</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col5\" class=\"data row33 col5\" >214</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col6\" class=\"data row33 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row33_col7\" class=\"data row33 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row34\" class=\"row_heading level0 row34\" >(8, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col0\" class=\"data row34 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col1\" class=\"data row34 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col2\" class=\"data row34 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col3\" class=\"data row34 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col4\" class=\"data row34 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col5\" class=\"data row34 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col6\" class=\"data row34 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row34_col7\" class=\"data row34 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row35\" class=\"row_heading level0 row35\" >(8, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col0\" class=\"data row35 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col1\" class=\"data row35 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col2\" class=\"data row35 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col3\" class=\"data row35 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col4\" class=\"data row35 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col5\" class=\"data row35 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col6\" class=\"data row35 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row35_col7\" class=\"data row35 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row36\" class=\"row_heading level0 row36\" >(9, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col0\" class=\"data row36 col0\" >117</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col1\" class=\"data row36 col1\" >117</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col2\" class=\"data row36 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col3\" class=\"data row36 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col4\" class=\"data row36 col4\" >1222</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col5\" class=\"data row36 col5\" >1222</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col6\" class=\"data row36 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row36_col7\" class=\"data row36 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row37\" class=\"row_heading level0 row37\" >(9, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col0\" class=\"data row37 col0\" >163</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col1\" class=\"data row37 col1\" >163</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col2\" class=\"data row37 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col3\" class=\"data row37 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col4\" class=\"data row37 col4\" >515</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col5\" class=\"data row37 col5\" >515</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col6\" class=\"data row37 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row37_col7\" class=\"data row37 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row38\" class=\"row_heading level0 row38\" >(9, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col0\" class=\"data row38 col0\" >242</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col1\" class=\"data row38 col1\" >242</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col2\" class=\"data row38 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col3\" class=\"data row38 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col4\" class=\"data row38 col4\" >2213</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col5\" class=\"data row38 col5\" >2213</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col6\" class=\"data row38 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row38_col7\" class=\"data row38 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row39\" class=\"row_heading level0 row39\" >(9, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col0\" class=\"data row39 col0\" >136</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col1\" class=\"data row39 col1\" >136</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col2\" class=\"data row39 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col3\" class=\"data row39 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col4\" class=\"data row39 col4\" >619</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col5\" class=\"data row39 col5\" >619</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col6\" class=\"data row39 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row39_col7\" class=\"data row39 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row40\" class=\"row_heading level0 row40\" >(9, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col0\" class=\"data row40 col0\" >90</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col1\" class=\"data row40 col1\" >90</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col2\" class=\"data row40 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col3\" class=\"data row40 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col4\" class=\"data row40 col4\" >244</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col5\" class=\"data row40 col5\" >244</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col6\" class=\"data row40 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row40_col7\" class=\"data row40 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row41\" class=\"row_heading level0 row41\" >(9, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col0\" class=\"data row41 col0\" >13</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col1\" class=\"data row41 col1\" >13</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col2\" class=\"data row41 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col3\" class=\"data row41 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col4\" class=\"data row41 col4\" >11</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col5\" class=\"data row41 col5\" >11</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col6\" class=\"data row41 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row41_col7\" class=\"data row41 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row42\" class=\"row_heading level0 row42\" >(9, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col0\" class=\"data row42 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col1\" class=\"data row42 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col2\" class=\"data row42 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col3\" class=\"data row42 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col4\" class=\"data row42 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col5\" class=\"data row42 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col6\" class=\"data row42 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row42_col7\" class=\"data row42 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row43\" class=\"row_heading level0 row43\" >(9, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col0\" class=\"data row43 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col1\" class=\"data row43 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col2\" class=\"data row43 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col3\" class=\"data row43 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col4\" class=\"data row43 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col5\" class=\"data row43 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col6\" class=\"data row43 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row43_col7\" class=\"data row43 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row44\" class=\"row_heading level0 row44\" >(9, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col0\" class=\"data row44 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col1\" class=\"data row44 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col2\" class=\"data row44 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col3\" class=\"data row44 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col4\" class=\"data row44 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col5\" class=\"data row44 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col6\" class=\"data row44 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row44_col7\" class=\"data row44 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row45\" class=\"row_heading level0 row45\" >(10, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col0\" class=\"data row45 col0\" >264</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col1\" class=\"data row45 col1\" >264</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col2\" class=\"data row45 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col3\" class=\"data row45 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col4\" class=\"data row45 col4\" >2422</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col5\" class=\"data row45 col5\" >2422</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col6\" class=\"data row45 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row45_col7\" class=\"data row45 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row46\" class=\"row_heading level0 row46\" >(10, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col0\" class=\"data row46 col0\" >279</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col1\" class=\"data row46 col1\" >279</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col2\" class=\"data row46 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col3\" class=\"data row46 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col4\" class=\"data row46 col4\" >3468</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col5\" class=\"data row46 col5\" >3468</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col6\" class=\"data row46 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row46_col7\" class=\"data row46 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row47\" class=\"row_heading level0 row47\" >(10, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col0\" class=\"data row47 col0\" >61</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col1\" class=\"data row47 col1\" >61</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col2\" class=\"data row47 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col3\" class=\"data row47 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col4\" class=\"data row47 col4\" >269</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col5\" class=\"data row47 col5\" >269</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col6\" class=\"data row47 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row47_col7\" class=\"data row47 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row48\" class=\"row_heading level0 row48\" >(10, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col0\" class=\"data row48 col0\" >95</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col1\" class=\"data row48 col1\" >95</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col2\" class=\"data row48 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col3\" class=\"data row48 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col4\" class=\"data row48 col4\" >340</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col5\" class=\"data row48 col5\" >340</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col6\" class=\"data row48 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row48_col7\" class=\"data row48 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row49\" class=\"row_heading level0 row49\" >(10, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col0\" class=\"data row49 col0\" >60</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col1\" class=\"data row49 col1\" >60</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col2\" class=\"data row49 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col3\" class=\"data row49 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col4\" class=\"data row49 col4\" >164</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col5\" class=\"data row49 col5\" >164</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col6\" class=\"data row49 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row49_col7\" class=\"data row49 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row50\" class=\"row_heading level0 row50\" >(10, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col0\" class=\"data row50 col0\" >32</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col1\" class=\"data row50 col1\" >32</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col2\" class=\"data row50 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col3\" class=\"data row50 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col4\" class=\"data row50 col4\" >49</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col5\" class=\"data row50 col5\" >49</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col6\" class=\"data row50 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row50_col7\" class=\"data row50 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row51\" class=\"row_heading level0 row51\" >(10, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col0\" class=\"data row51 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col1\" class=\"data row51 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col2\" class=\"data row51 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col3\" class=\"data row51 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col4\" class=\"data row51 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col5\" class=\"data row51 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col6\" class=\"data row51 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row51_col7\" class=\"data row51 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row52\" class=\"row_heading level0 row52\" >(10, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col0\" class=\"data row52 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col1\" class=\"data row52 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col2\" class=\"data row52 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col3\" class=\"data row52 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col4\" class=\"data row52 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col5\" class=\"data row52 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col6\" class=\"data row52 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row52_col7\" class=\"data row52 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row53\" class=\"row_heading level0 row53\" >(10, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col0\" class=\"data row53 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col1\" class=\"data row53 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col2\" class=\"data row53 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col3\" class=\"data row53 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col4\" class=\"data row53 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col5\" class=\"data row53 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col6\" class=\"data row53 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row53_col7\" class=\"data row53 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row54\" class=\"row_heading level0 row54\" >(10, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col0\" class=\"data row54 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col1\" class=\"data row54 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col2\" class=\"data row54 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col3\" class=\"data row54 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col4\" class=\"data row54 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col5\" class=\"data row54 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col6\" class=\"data row54 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row54_col7\" class=\"data row54 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row55\" class=\"row_heading level0 row55\" >(11, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col0\" class=\"data row55 col0\" >58</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col1\" class=\"data row55 col1\" >58</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col2\" class=\"data row55 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col3\" class=\"data row55 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col4\" class=\"data row55 col4\" >342</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col5\" class=\"data row55 col5\" >342</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col6\" class=\"data row55 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row55_col7\" class=\"data row55 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row56\" class=\"row_heading level0 row56\" >(11, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col0\" class=\"data row56 col0\" >35</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col1\" class=\"data row56 col1\" >35</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col2\" class=\"data row56 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col3\" class=\"data row56 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col4\" class=\"data row56 col4\" >171</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col5\" class=\"data row56 col5\" >171</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col6\" class=\"data row56 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row56_col7\" class=\"data row56 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row57\" class=\"row_heading level0 row57\" >(11, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col0\" class=\"data row57 col0\" >69</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col1\" class=\"data row57 col1\" >69</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col2\" class=\"data row57 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col3\" class=\"data row57 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col4\" class=\"data row57 col4\" >353</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col5\" class=\"data row57 col5\" >353</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col6\" class=\"data row57 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row57_col7\" class=\"data row57 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row58\" class=\"row_heading level0 row58\" >(11, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col0\" class=\"data row58 col0\" >46</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col1\" class=\"data row58 col1\" >46</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col2\" class=\"data row58 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col3\" class=\"data row58 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col4\" class=\"data row58 col4\" >110</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col5\" class=\"data row58 col5\" >110</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col6\" class=\"data row58 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row58_col7\" class=\"data row58 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row59\" class=\"row_heading level0 row59\" >(11, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col0\" class=\"data row59 col0\" >66</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col1\" class=\"data row59 col1\" >66</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col2\" class=\"data row59 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col3\" class=\"data row59 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col4\" class=\"data row59 col4\" >187</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col5\" class=\"data row59 col5\" >187</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col6\" class=\"data row59 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row59_col7\" class=\"data row59 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row60\" class=\"row_heading level0 row60\" >(11, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col0\" class=\"data row60 col0\" >102</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col1\" class=\"data row60 col1\" >102</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col2\" class=\"data row60 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col3\" class=\"data row60 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col4\" class=\"data row60 col4\" >375</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col5\" class=\"data row60 col5\" >375</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col6\" class=\"data row60 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row60_col7\" class=\"data row60 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row61\" class=\"row_heading level0 row61\" >(11, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col0\" class=\"data row61 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col1\" class=\"data row61 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col2\" class=\"data row61 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col3\" class=\"data row61 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col4\" class=\"data row61 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col5\" class=\"data row61 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col6\" class=\"data row61 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row61_col7\" class=\"data row61 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row62\" class=\"row_heading level0 row62\" >(11, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col0\" class=\"data row62 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col1\" class=\"data row62 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col2\" class=\"data row62 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col3\" class=\"data row62 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col4\" class=\"data row62 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col5\" class=\"data row62 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col6\" class=\"data row62 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row62_col7\" class=\"data row62 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row63\" class=\"row_heading level0 row63\" >(11, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col0\" class=\"data row63 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col1\" class=\"data row63 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col2\" class=\"data row63 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col3\" class=\"data row63 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col4\" class=\"data row63 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col5\" class=\"data row63 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col6\" class=\"data row63 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row63_col7\" class=\"data row63 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row64\" class=\"row_heading level0 row64\" >(11, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col0\" class=\"data row64 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col1\" class=\"data row64 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col2\" class=\"data row64 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col3\" class=\"data row64 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col4\" class=\"data row64 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col5\" class=\"data row64 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col6\" class=\"data row64 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row64_col7\" class=\"data row64 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row65\" class=\"row_heading level0 row65\" >(11, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col0\" class=\"data row65 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col1\" class=\"data row65 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col2\" class=\"data row65 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col3\" class=\"data row65 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col4\" class=\"data row65 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col5\" class=\"data row65 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col6\" class=\"data row65 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row65_col7\" class=\"data row65 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row66\" class=\"row_heading level0 row66\" >(12, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col0\" class=\"data row66 col0\" >539</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col1\" class=\"data row66 col1\" >539</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col2\" class=\"data row66 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col3\" class=\"data row66 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col4\" class=\"data row66 col4\" >1580</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col5\" class=\"data row66 col5\" >1580</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col6\" class=\"data row66 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row66_col7\" class=\"data row66 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row67\" class=\"row_heading level0 row67\" >(12, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col0\" class=\"data row67 col0\" >75</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col1\" class=\"data row67 col1\" >75</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col2\" class=\"data row67 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col3\" class=\"data row67 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col4\" class=\"data row67 col4\" >510</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col5\" class=\"data row67 col5\" >510</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col6\" class=\"data row67 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row67_col7\" class=\"data row67 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row68\" class=\"row_heading level0 row68\" >(12, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col0\" class=\"data row68 col0\" >93</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col1\" class=\"data row68 col1\" >93</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col2\" class=\"data row68 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col3\" class=\"data row68 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col4\" class=\"data row68 col4\" >704</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col5\" class=\"data row68 col5\" >704</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col6\" class=\"data row68 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row68_col7\" class=\"data row68 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row69\" class=\"row_heading level0 row69\" >(12, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col0\" class=\"data row69 col0\" >54</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col1\" class=\"data row69 col1\" >54</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col2\" class=\"data row69 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col3\" class=\"data row69 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col4\" class=\"data row69 col4\" >169</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col5\" class=\"data row69 col5\" >169</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col6\" class=\"data row69 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row69_col7\" class=\"data row69 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row70\" class=\"row_heading level0 row70\" >(12, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col0\" class=\"data row70 col0\" >53</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col1\" class=\"data row70 col1\" >53</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col2\" class=\"data row70 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col3\" class=\"data row70 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col4\" class=\"data row70 col4\" >132</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col5\" class=\"data row70 col5\" >132</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col6\" class=\"data row70 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row70_col7\" class=\"data row70 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row71\" class=\"row_heading level0 row71\" >(12, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col0\" class=\"data row71 col0\" >80</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col1\" class=\"data row71 col1\" >80</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col2\" class=\"data row71 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col3\" class=\"data row71 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col4\" class=\"data row71 col4\" >180</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col5\" class=\"data row71 col5\" >180</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col6\" class=\"data row71 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row71_col7\" class=\"data row71 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row72\" class=\"row_heading level0 row72\" >(12, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col0\" class=\"data row72 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col1\" class=\"data row72 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col2\" class=\"data row72 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col3\" class=\"data row72 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col4\" class=\"data row72 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col5\" class=\"data row72 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col6\" class=\"data row72 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row72_col7\" class=\"data row72 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row73\" class=\"row_heading level0 row73\" >(12, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col0\" class=\"data row73 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col1\" class=\"data row73 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col2\" class=\"data row73 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col3\" class=\"data row73 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col4\" class=\"data row73 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col5\" class=\"data row73 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col6\" class=\"data row73 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row73_col7\" class=\"data row73 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row74\" class=\"row_heading level0 row74\" >(12, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col0\" class=\"data row74 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col1\" class=\"data row74 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col2\" class=\"data row74 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col3\" class=\"data row74 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col4\" class=\"data row74 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col5\" class=\"data row74 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col6\" class=\"data row74 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row74_col7\" class=\"data row74 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row75\" class=\"row_heading level0 row75\" >(12, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col0\" class=\"data row75 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col1\" class=\"data row75 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col2\" class=\"data row75 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col3\" class=\"data row75 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col4\" class=\"data row75 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col5\" class=\"data row75 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col6\" class=\"data row75 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row75_col7\" class=\"data row75 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row76\" class=\"row_heading level0 row76\" >(12, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col0\" class=\"data row76 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col1\" class=\"data row76 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col2\" class=\"data row76 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col3\" class=\"data row76 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col4\" class=\"data row76 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col5\" class=\"data row76 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col6\" class=\"data row76 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row76_col7\" class=\"data row76 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row77\" class=\"row_heading level0 row77\" >(12, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col0\" class=\"data row77 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col1\" class=\"data row77 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col2\" class=\"data row77 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col3\" class=\"data row77 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col4\" class=\"data row77 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col5\" class=\"data row77 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col6\" class=\"data row77 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row77_col7\" class=\"data row77 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row78\" class=\"row_heading level0 row78\" >(13, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col0\" class=\"data row78 col0\" >272</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col1\" class=\"data row78 col1\" >272</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col2\" class=\"data row78 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col3\" class=\"data row78 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col4\" class=\"data row78 col4\" >482</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col5\" class=\"data row78 col5\" >482</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col6\" class=\"data row78 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row78_col7\" class=\"data row78 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row79\" class=\"row_heading level0 row79\" >(13, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col0\" class=\"data row79 col0\" >192</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col1\" class=\"data row79 col1\" >192</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col2\" class=\"data row79 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col3\" class=\"data row79 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col4\" class=\"data row79 col4\" >2602</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col5\" class=\"data row79 col5\" >2602</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col6\" class=\"data row79 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row79_col7\" class=\"data row79 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row80\" class=\"row_heading level0 row80\" >(13, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col0\" class=\"data row80 col0\" >58</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col1\" class=\"data row80 col1\" >58</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col2\" class=\"data row80 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col3\" class=\"data row80 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col4\" class=\"data row80 col4\" >342</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col5\" class=\"data row80 col5\" >342</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col6\" class=\"data row80 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row80_col7\" class=\"data row80 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row81\" class=\"row_heading level0 row81\" >(13, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col0\" class=\"data row81 col0\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col1\" class=\"data row81 col1\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col2\" class=\"data row81 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col3\" class=\"data row81 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col4\" class=\"data row81 col4\" >142</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col5\" class=\"data row81 col5\" >142</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col6\" class=\"data row81 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row81_col7\" class=\"data row81 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row82\" class=\"row_heading level0 row82\" >(13, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col0\" class=\"data row82 col0\" >56</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col1\" class=\"data row82 col1\" >56</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col2\" class=\"data row82 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col3\" class=\"data row82 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col4\" class=\"data row82 col4\" >77</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col5\" class=\"data row82 col5\" >77</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col6\" class=\"data row82 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row82_col7\" class=\"data row82 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row83\" class=\"row_heading level0 row83\" >(13, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col0\" class=\"data row83 col0\" >40</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col1\" class=\"data row83 col1\" >40</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col2\" class=\"data row83 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col3\" class=\"data row83 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col4\" class=\"data row83 col4\" >93</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col5\" class=\"data row83 col5\" >93</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col6\" class=\"data row83 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row83_col7\" class=\"data row83 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row84\" class=\"row_heading level0 row84\" >(13, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col0\" class=\"data row84 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col1\" class=\"data row84 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col2\" class=\"data row84 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col3\" class=\"data row84 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col4\" class=\"data row84 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col5\" class=\"data row84 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col6\" class=\"data row84 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row84_col7\" class=\"data row84 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row85\" class=\"row_heading level0 row85\" >(13, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col0\" class=\"data row85 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col1\" class=\"data row85 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col2\" class=\"data row85 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col3\" class=\"data row85 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col4\" class=\"data row85 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col5\" class=\"data row85 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col6\" class=\"data row85 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row85_col7\" class=\"data row85 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row86\" class=\"row_heading level0 row86\" >(13, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col0\" class=\"data row86 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col1\" class=\"data row86 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col2\" class=\"data row86 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col3\" class=\"data row86 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col4\" class=\"data row86 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col5\" class=\"data row86 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col6\" class=\"data row86 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row86_col7\" class=\"data row86 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row87\" class=\"row_heading level0 row87\" >(13, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col0\" class=\"data row87 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col1\" class=\"data row87 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col2\" class=\"data row87 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col3\" class=\"data row87 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col4\" class=\"data row87 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col5\" class=\"data row87 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col6\" class=\"data row87 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row87_col7\" class=\"data row87 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row88\" class=\"row_heading level0 row88\" >(13, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col0\" class=\"data row88 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col1\" class=\"data row88 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col2\" class=\"data row88 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col3\" class=\"data row88 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col4\" class=\"data row88 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col5\" class=\"data row88 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col6\" class=\"data row88 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row88_col7\" class=\"data row88 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row89\" class=\"row_heading level0 row89\" >(13, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col0\" class=\"data row89 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col1\" class=\"data row89 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col2\" class=\"data row89 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col3\" class=\"data row89 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col4\" class=\"data row89 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col5\" class=\"data row89 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col6\" class=\"data row89 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row89_col7\" class=\"data row89 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row90\" class=\"row_heading level0 row90\" >(13, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col0\" class=\"data row90 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col1\" class=\"data row90 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col2\" class=\"data row90 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col3\" class=\"data row90 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col4\" class=\"data row90 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col5\" class=\"data row90 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col6\" class=\"data row90 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row90_col7\" class=\"data row90 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row91\" class=\"row_heading level0 row91\" >(14, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col0\" class=\"data row91 col0\" >539</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col1\" class=\"data row91 col1\" >539</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col2\" class=\"data row91 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col3\" class=\"data row91 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col4\" class=\"data row91 col4\" >3856</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col5\" class=\"data row91 col5\" >3856</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col6\" class=\"data row91 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row91_col7\" class=\"data row91 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row92\" class=\"row_heading level0 row92\" >(14, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col0\" class=\"data row92 col0\" >96</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col1\" class=\"data row92 col1\" >96</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col2\" class=\"data row92 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col3\" class=\"data row92 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col4\" class=\"data row92 col4\" >567</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col5\" class=\"data row92 col5\" >567</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col6\" class=\"data row92 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row92_col7\" class=\"data row92 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row93\" class=\"row_heading level0 row93\" >(14, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col0\" class=\"data row93 col0\" >163</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col1\" class=\"data row93 col1\" >163</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col2\" class=\"data row93 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col3\" class=\"data row93 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col4\" class=\"data row93 col4\" >1248</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col5\" class=\"data row93 col5\" >1248</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col6\" class=\"data row93 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row93_col7\" class=\"data row93 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row94\" class=\"row_heading level0 row94\" >(14, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col0\" class=\"data row94 col0\" >52</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col1\" class=\"data row94 col1\" >52</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col2\" class=\"data row94 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col3\" class=\"data row94 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col4\" class=\"data row94 col4\" >307</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col5\" class=\"data row94 col5\" >307</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col6\" class=\"data row94 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row94_col7\" class=\"data row94 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row95\" class=\"row_heading level0 row95\" >(14, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col0\" class=\"data row95 col0\" >35</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col1\" class=\"data row95 col1\" >35</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col2\" class=\"data row95 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col3\" class=\"data row95 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col4\" class=\"data row95 col4\" >125</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col5\" class=\"data row95 col5\" >125</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col6\" class=\"data row95 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row95_col7\" class=\"data row95 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row96\" class=\"row_heading level0 row96\" >(14, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col0\" class=\"data row96 col0\" >37</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col1\" class=\"data row96 col1\" >37</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col2\" class=\"data row96 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col3\" class=\"data row96 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col4\" class=\"data row96 col4\" >49</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col5\" class=\"data row96 col5\" >49</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col6\" class=\"data row96 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row96_col7\" class=\"data row96 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row97\" class=\"row_heading level0 row97\" >(14, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col0\" class=\"data row97 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col1\" class=\"data row97 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col2\" class=\"data row97 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col3\" class=\"data row97 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col4\" class=\"data row97 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col5\" class=\"data row97 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col6\" class=\"data row97 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row97_col7\" class=\"data row97 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row98\" class=\"row_heading level0 row98\" >(14, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col0\" class=\"data row98 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col1\" class=\"data row98 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col2\" class=\"data row98 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col3\" class=\"data row98 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col4\" class=\"data row98 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col5\" class=\"data row98 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col6\" class=\"data row98 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row98_col7\" class=\"data row98 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row99\" class=\"row_heading level0 row99\" >(14, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col0\" class=\"data row99 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col1\" class=\"data row99 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col2\" class=\"data row99 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col3\" class=\"data row99 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col4\" class=\"data row99 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col5\" class=\"data row99 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col6\" class=\"data row99 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row99_col7\" class=\"data row99 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row100\" class=\"row_heading level0 row100\" >(14, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col0\" class=\"data row100 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col1\" class=\"data row100 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col2\" class=\"data row100 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col3\" class=\"data row100 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col4\" class=\"data row100 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col5\" class=\"data row100 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col6\" class=\"data row100 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row100_col7\" class=\"data row100 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row101\" class=\"row_heading level0 row101\" >(14, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col0\" class=\"data row101 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col1\" class=\"data row101 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col2\" class=\"data row101 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col3\" class=\"data row101 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col4\" class=\"data row101 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col5\" class=\"data row101 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col6\" class=\"data row101 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row101_col7\" class=\"data row101 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row102\" class=\"row_heading level0 row102\" >(14, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col0\" class=\"data row102 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col1\" class=\"data row102 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col2\" class=\"data row102 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col3\" class=\"data row102 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col4\" class=\"data row102 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col5\" class=\"data row102 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col6\" class=\"data row102 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row102_col7\" class=\"data row102 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row103\" class=\"row_heading level0 row103\" >(14, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col0\" class=\"data row103 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col1\" class=\"data row103 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col2\" class=\"data row103 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col3\" class=\"data row103 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col4\" class=\"data row103 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col5\" class=\"data row103 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col6\" class=\"data row103 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row103_col7\" class=\"data row103 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row104\" class=\"row_heading level0 row104\" >(14, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col0\" class=\"data row104 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col1\" class=\"data row104 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col2\" class=\"data row104 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col3\" class=\"data row104 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col4\" class=\"data row104 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col5\" class=\"data row104 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col6\" class=\"data row104 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row104_col7\" class=\"data row104 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row105\" class=\"row_heading level0 row105\" >(15, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col0\" class=\"data row105 col0\" >230</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col1\" class=\"data row105 col1\" >230</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col2\" class=\"data row105 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col3\" class=\"data row105 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col4\" class=\"data row105 col4\" >916</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col5\" class=\"data row105 col5\" >916</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col6\" class=\"data row105 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row105_col7\" class=\"data row105 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row106\" class=\"row_heading level0 row106\" >(15, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col0\" class=\"data row106 col0\" >91</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col1\" class=\"data row106 col1\" >91</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col2\" class=\"data row106 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col3\" class=\"data row106 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col4\" class=\"data row106 col4\" >879</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col5\" class=\"data row106 col5\" >879</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col6\" class=\"data row106 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row106_col7\" class=\"data row106 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row107\" class=\"row_heading level0 row107\" >(15, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col0\" class=\"data row107 col0\" >51</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col1\" class=\"data row107 col1\" >51</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col2\" class=\"data row107 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col3\" class=\"data row107 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col4\" class=\"data row107 col4\" >151</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col5\" class=\"data row107 col5\" >151</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col6\" class=\"data row107 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row107_col7\" class=\"data row107 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row108\" class=\"row_heading level0 row108\" >(15, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col0\" class=\"data row108 col0\" >50</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col1\" class=\"data row108 col1\" >50</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col2\" class=\"data row108 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col3\" class=\"data row108 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col4\" class=\"data row108 col4\" >174</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col5\" class=\"data row108 col5\" >174</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col6\" class=\"data row108 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row108_col7\" class=\"data row108 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row109\" class=\"row_heading level0 row109\" >(15, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col0\" class=\"data row109 col0\" >40</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col1\" class=\"data row109 col1\" >40</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col2\" class=\"data row109 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col3\" class=\"data row109 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col4\" class=\"data row109 col4\" >215</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col5\" class=\"data row109 col5\" >215</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col6\" class=\"data row109 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row109_col7\" class=\"data row109 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row110\" class=\"row_heading level0 row110\" >(15, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col0\" class=\"data row110 col0\" >10</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col1\" class=\"data row110 col1\" >10</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col2\" class=\"data row110 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col3\" class=\"data row110 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col4\" class=\"data row110 col4\" >9</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col5\" class=\"data row110 col5\" >9</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col6\" class=\"data row110 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row110_col7\" class=\"data row110 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row111\" class=\"row_heading level0 row111\" >(15, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col0\" class=\"data row111 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col1\" class=\"data row111 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col2\" class=\"data row111 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col3\" class=\"data row111 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col4\" class=\"data row111 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col5\" class=\"data row111 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col6\" class=\"data row111 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row111_col7\" class=\"data row111 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row112\" class=\"row_heading level0 row112\" >(15, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col0\" class=\"data row112 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col1\" class=\"data row112 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col2\" class=\"data row112 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col3\" class=\"data row112 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col4\" class=\"data row112 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col5\" class=\"data row112 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col6\" class=\"data row112 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row112_col7\" class=\"data row112 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row113\" class=\"row_heading level0 row113\" >(15, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col0\" class=\"data row113 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col1\" class=\"data row113 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col2\" class=\"data row113 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col3\" class=\"data row113 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col4\" class=\"data row113 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col5\" class=\"data row113 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col6\" class=\"data row113 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row113_col7\" class=\"data row113 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row114\" class=\"row_heading level0 row114\" >(15, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col0\" class=\"data row114 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col1\" class=\"data row114 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col2\" class=\"data row114 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col3\" class=\"data row114 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col4\" class=\"data row114 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col5\" class=\"data row114 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col6\" class=\"data row114 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row114_col7\" class=\"data row114 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row115\" class=\"row_heading level0 row115\" >(15, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col0\" class=\"data row115 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col1\" class=\"data row115 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col2\" class=\"data row115 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col3\" class=\"data row115 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col4\" class=\"data row115 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col5\" class=\"data row115 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col6\" class=\"data row115 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row115_col7\" class=\"data row115 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row116\" class=\"row_heading level0 row116\" >(15, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col0\" class=\"data row116 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col1\" class=\"data row116 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col2\" class=\"data row116 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col3\" class=\"data row116 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col4\" class=\"data row116 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col5\" class=\"data row116 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col6\" class=\"data row116 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row116_col7\" class=\"data row116 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row117\" class=\"row_heading level0 row117\" >(15, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col0\" class=\"data row117 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col1\" class=\"data row117 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col2\" class=\"data row117 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col3\" class=\"data row117 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col4\" class=\"data row117 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col5\" class=\"data row117 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col6\" class=\"data row117 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row117_col7\" class=\"data row117 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row118\" class=\"row_heading level0 row118\" >(15, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col0\" class=\"data row118 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col1\" class=\"data row118 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col2\" class=\"data row118 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col3\" class=\"data row118 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col4\" class=\"data row118 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col5\" class=\"data row118 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col6\" class=\"data row118 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row118_col7\" class=\"data row118 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row119\" class=\"row_heading level0 row119\" >(15, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col0\" class=\"data row119 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col1\" class=\"data row119 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col2\" class=\"data row119 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col3\" class=\"data row119 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col4\" class=\"data row119 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col5\" class=\"data row119 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col6\" class=\"data row119 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row119_col7\" class=\"data row119 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row120\" class=\"row_heading level0 row120\" >(16, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col0\" class=\"data row120 col0\" >150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col1\" class=\"data row120 col1\" >150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col2\" class=\"data row120 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col3\" class=\"data row120 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col4\" class=\"data row120 col4\" >727</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col5\" class=\"data row120 col5\" >727</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col6\" class=\"data row120 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row120_col7\" class=\"data row120 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row121\" class=\"row_heading level0 row121\" >(16, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col0\" class=\"data row121 col0\" >84</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col1\" class=\"data row121 col1\" >84</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col2\" class=\"data row121 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col3\" class=\"data row121 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col4\" class=\"data row121 col4\" >500</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col5\" class=\"data row121 col5\" >500</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col6\" class=\"data row121 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row121_col7\" class=\"data row121 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row122\" class=\"row_heading level0 row122\" >(16, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col0\" class=\"data row122 col0\" >41</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col1\" class=\"data row122 col1\" >41</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col2\" class=\"data row122 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col3\" class=\"data row122 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col4\" class=\"data row122 col4\" >170</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col5\" class=\"data row122 col5\" >170</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col6\" class=\"data row122 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row122_col7\" class=\"data row122 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row123\" class=\"row_heading level0 row123\" >(16, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col0\" class=\"data row123 col0\" >28</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col1\" class=\"data row123 col1\" >28</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col2\" class=\"data row123 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col3\" class=\"data row123 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col4\" class=\"data row123 col4\" >50</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col5\" class=\"data row123 col5\" >50</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col6\" class=\"data row123 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row123_col7\" class=\"data row123 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row124\" class=\"row_heading level0 row124\" >(16, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col0\" class=\"data row124 col0\" >19</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col1\" class=\"data row124 col1\" >19</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col2\" class=\"data row124 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col3\" class=\"data row124 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col4\" class=\"data row124 col4\" >41</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col5\" class=\"data row124 col5\" >41</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col6\" class=\"data row124 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row124_col7\" class=\"data row124 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row125\" class=\"row_heading level0 row125\" >(16, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col0\" class=\"data row125 col0\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col1\" class=\"data row125 col1\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col2\" class=\"data row125 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col3\" class=\"data row125 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col4\" class=\"data row125 col4\" >150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col5\" class=\"data row125 col5\" >150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col6\" class=\"data row125 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row125_col7\" class=\"data row125 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row126\" class=\"row_heading level0 row126\" >(16, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col0\" class=\"data row126 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col1\" class=\"data row126 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col2\" class=\"data row126 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col3\" class=\"data row126 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col4\" class=\"data row126 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col5\" class=\"data row126 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col6\" class=\"data row126 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row126_col7\" class=\"data row126 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row127\" class=\"row_heading level0 row127\" >(16, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col0\" class=\"data row127 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col1\" class=\"data row127 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col2\" class=\"data row127 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col3\" class=\"data row127 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col4\" class=\"data row127 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col5\" class=\"data row127 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col6\" class=\"data row127 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row127_col7\" class=\"data row127 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row128\" class=\"row_heading level0 row128\" >(16, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col0\" class=\"data row128 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col1\" class=\"data row128 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col2\" class=\"data row128 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col3\" class=\"data row128 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col4\" class=\"data row128 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col5\" class=\"data row128 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col6\" class=\"data row128 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row128_col7\" class=\"data row128 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row129\" class=\"row_heading level0 row129\" >(16, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col0\" class=\"data row129 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col1\" class=\"data row129 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col2\" class=\"data row129 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col3\" class=\"data row129 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col4\" class=\"data row129 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col5\" class=\"data row129 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col6\" class=\"data row129 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row129_col7\" class=\"data row129 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row130\" class=\"row_heading level0 row130\" >(16, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col0\" class=\"data row130 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col1\" class=\"data row130 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col2\" class=\"data row130 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col3\" class=\"data row130 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col4\" class=\"data row130 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col5\" class=\"data row130 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col6\" class=\"data row130 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row130_col7\" class=\"data row130 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row131\" class=\"row_heading level0 row131\" >(16, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col0\" class=\"data row131 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col1\" class=\"data row131 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col2\" class=\"data row131 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col3\" class=\"data row131 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col4\" class=\"data row131 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col5\" class=\"data row131 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col6\" class=\"data row131 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row131_col7\" class=\"data row131 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row132\" class=\"row_heading level0 row132\" >(16, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col0\" class=\"data row132 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col1\" class=\"data row132 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col2\" class=\"data row132 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col3\" class=\"data row132 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col4\" class=\"data row132 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col5\" class=\"data row132 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col6\" class=\"data row132 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row132_col7\" class=\"data row132 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row133\" class=\"row_heading level0 row133\" >(16, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col0\" class=\"data row133 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col1\" class=\"data row133 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col2\" class=\"data row133 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col3\" class=\"data row133 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col4\" class=\"data row133 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col5\" class=\"data row133 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col6\" class=\"data row133 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row133_col7\" class=\"data row133 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row134\" class=\"row_heading level0 row134\" >(16, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col0\" class=\"data row134 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col1\" class=\"data row134 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col2\" class=\"data row134 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col3\" class=\"data row134 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col4\" class=\"data row134 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col5\" class=\"data row134 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col6\" class=\"data row134 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row134_col7\" class=\"data row134 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row135\" class=\"row_heading level0 row135\" >(16, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col0\" class=\"data row135 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col1\" class=\"data row135 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col2\" class=\"data row135 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col3\" class=\"data row135 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col4\" class=\"data row135 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col5\" class=\"data row135 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col6\" class=\"data row135 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row135_col7\" class=\"data row135 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row136\" class=\"row_heading level0 row136\" >(17, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col0\" class=\"data row136 col0\" >209</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col1\" class=\"data row136 col1\" >209</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col2\" class=\"data row136 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col3\" class=\"data row136 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col4\" class=\"data row136 col4\" >2542</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col5\" class=\"data row136 col5\" >2542</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col6\" class=\"data row136 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row136_col7\" class=\"data row136 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row137\" class=\"row_heading level0 row137\" >(17, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col0\" class=\"data row137 col0\" >124</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col1\" class=\"data row137 col1\" >124</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col2\" class=\"data row137 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col3\" class=\"data row137 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col4\" class=\"data row137 col4\" >973</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col5\" class=\"data row137 col5\" >973</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col6\" class=\"data row137 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row137_col7\" class=\"data row137 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row138\" class=\"row_heading level0 row138\" >(17, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col0\" class=\"data row138 col0\" >78</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col1\" class=\"data row138 col1\" >78</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col2\" class=\"data row138 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col3\" class=\"data row138 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col4\" class=\"data row138 col4\" >431</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col5\" class=\"data row138 col5\" >431</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col6\" class=\"data row138 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row138_col7\" class=\"data row138 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row139\" class=\"row_heading level0 row139\" >(17, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col0\" class=\"data row139 col0\" >33</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col1\" class=\"data row139 col1\" >33</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col2\" class=\"data row139 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col3\" class=\"data row139 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col4\" class=\"data row139 col4\" >121</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col5\" class=\"data row139 col5\" >121</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col6\" class=\"data row139 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row139_col7\" class=\"data row139 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row140\" class=\"row_heading level0 row140\" >(17, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col0\" class=\"data row140 col0\" >27</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col1\" class=\"data row140 col1\" >27</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col2\" class=\"data row140 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col3\" class=\"data row140 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col4\" class=\"data row140 col4\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col5\" class=\"data row140 col5\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col6\" class=\"data row140 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row140_col7\" class=\"data row140 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row141\" class=\"row_heading level0 row141\" >(17, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col0\" class=\"data row141 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col1\" class=\"data row141 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col2\" class=\"data row141 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col3\" class=\"data row141 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col4\" class=\"data row141 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col5\" class=\"data row141 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col6\" class=\"data row141 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row141_col7\" class=\"data row141 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row142\" class=\"row_heading level0 row142\" >(17, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col0\" class=\"data row142 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col1\" class=\"data row142 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col2\" class=\"data row142 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col3\" class=\"data row142 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col4\" class=\"data row142 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col5\" class=\"data row142 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col6\" class=\"data row142 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row142_col7\" class=\"data row142 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row143\" class=\"row_heading level0 row143\" >(17, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col0\" class=\"data row143 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col1\" class=\"data row143 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col2\" class=\"data row143 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col3\" class=\"data row143 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col4\" class=\"data row143 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col5\" class=\"data row143 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col6\" class=\"data row143 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row143_col7\" class=\"data row143 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row144\" class=\"row_heading level0 row144\" >(17, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col0\" class=\"data row144 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col1\" class=\"data row144 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col2\" class=\"data row144 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col3\" class=\"data row144 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col4\" class=\"data row144 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col5\" class=\"data row144 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col6\" class=\"data row144 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row144_col7\" class=\"data row144 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row145\" class=\"row_heading level0 row145\" >(17, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col0\" class=\"data row145 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col1\" class=\"data row145 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col2\" class=\"data row145 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col3\" class=\"data row145 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col4\" class=\"data row145 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col5\" class=\"data row145 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col6\" class=\"data row145 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row145_col7\" class=\"data row145 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row146\" class=\"row_heading level0 row146\" >(17, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col0\" class=\"data row146 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col1\" class=\"data row146 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col2\" class=\"data row146 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col3\" class=\"data row146 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col4\" class=\"data row146 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col5\" class=\"data row146 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col6\" class=\"data row146 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row146_col7\" class=\"data row146 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row147\" class=\"row_heading level0 row147\" >(17, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col0\" class=\"data row147 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col1\" class=\"data row147 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col2\" class=\"data row147 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col3\" class=\"data row147 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col4\" class=\"data row147 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col5\" class=\"data row147 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col6\" class=\"data row147 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row147_col7\" class=\"data row147 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row148\" class=\"row_heading level0 row148\" >(17, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col0\" class=\"data row148 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col1\" class=\"data row148 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col2\" class=\"data row148 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col3\" class=\"data row148 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col4\" class=\"data row148 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col5\" class=\"data row148 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col6\" class=\"data row148 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row148_col7\" class=\"data row148 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row149\" class=\"row_heading level0 row149\" >(17, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col0\" class=\"data row149 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col1\" class=\"data row149 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col2\" class=\"data row149 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col3\" class=\"data row149 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col4\" class=\"data row149 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col5\" class=\"data row149 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col6\" class=\"data row149 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row149_col7\" class=\"data row149 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row150\" class=\"row_heading level0 row150\" >(17, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col0\" class=\"data row150 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col1\" class=\"data row150 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col2\" class=\"data row150 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col3\" class=\"data row150 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col4\" class=\"data row150 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col5\" class=\"data row150 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col6\" class=\"data row150 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row150_col7\" class=\"data row150 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row151\" class=\"row_heading level0 row151\" >(17, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col0\" class=\"data row151 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col1\" class=\"data row151 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col2\" class=\"data row151 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col3\" class=\"data row151 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col4\" class=\"data row151 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col5\" class=\"data row151 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col6\" class=\"data row151 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row151_col7\" class=\"data row151 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row152\" class=\"row_heading level0 row152\" >(17, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col0\" class=\"data row152 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col1\" class=\"data row152 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col2\" class=\"data row152 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col3\" class=\"data row152 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col4\" class=\"data row152 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col5\" class=\"data row152 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col6\" class=\"data row152 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row152_col7\" class=\"data row152 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row153\" class=\"row_heading level0 row153\" >(18, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col0\" class=\"data row153 col0\" >211</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col1\" class=\"data row153 col1\" >211</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col2\" class=\"data row153 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col3\" class=\"data row153 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col4\" class=\"data row153 col4\" >2397</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col5\" class=\"data row153 col5\" >2397</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col6\" class=\"data row153 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row153_col7\" class=\"data row153 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row154\" class=\"row_heading level0 row154\" >(18, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col0\" class=\"data row154 col0\" >305</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col1\" class=\"data row154 col1\" >306</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col2\" class=\"data row154 col2\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col3\" class=\"data row154 col3\" >False</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col4\" class=\"data row154 col4\" >4567</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col5\" class=\"data row154 col5\" >4567</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col6\" class=\"data row154 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row154_col7\" class=\"data row154 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row155\" class=\"row_heading level0 row155\" >(18, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col0\" class=\"data row155 col0\" >96</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col1\" class=\"data row155 col1\" >96</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col2\" class=\"data row155 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col3\" class=\"data row155 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col4\" class=\"data row155 col4\" >655</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col5\" class=\"data row155 col5\" >655</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col6\" class=\"data row155 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row155_col7\" class=\"data row155 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row156\" class=\"row_heading level0 row156\" >(18, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col0\" class=\"data row156 col0\" >37</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col1\" class=\"data row156 col1\" >37</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col2\" class=\"data row156 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col3\" class=\"data row156 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col4\" class=\"data row156 col4\" >104</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col5\" class=\"data row156 col5\" >104</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col6\" class=\"data row156 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row156_col7\" class=\"data row156 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row157\" class=\"row_heading level0 row157\" >(18, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col0\" class=\"data row157 col0\" >21</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col1\" class=\"data row157 col1\" >21</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col2\" class=\"data row157 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col3\" class=\"data row157 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col4\" class=\"data row157 col4\" >49</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col5\" class=\"data row157 col5\" >49</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col6\" class=\"data row157 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row157_col7\" class=\"data row157 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row158\" class=\"row_heading level0 row158\" >(18, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col0\" class=\"data row158 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col1\" class=\"data row158 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col2\" class=\"data row158 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col3\" class=\"data row158 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col4\" class=\"data row158 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col5\" class=\"data row158 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col6\" class=\"data row158 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row158_col7\" class=\"data row158 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row159\" class=\"row_heading level0 row159\" >(18, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col0\" class=\"data row159 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col1\" class=\"data row159 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col2\" class=\"data row159 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col3\" class=\"data row159 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col4\" class=\"data row159 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col5\" class=\"data row159 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col6\" class=\"data row159 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row159_col7\" class=\"data row159 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row160\" class=\"row_heading level0 row160\" >(18, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col0\" class=\"data row160 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col1\" class=\"data row160 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col2\" class=\"data row160 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col3\" class=\"data row160 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col4\" class=\"data row160 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col5\" class=\"data row160 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col6\" class=\"data row160 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row160_col7\" class=\"data row160 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row161\" class=\"row_heading level0 row161\" >(18, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col0\" class=\"data row161 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col1\" class=\"data row161 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col2\" class=\"data row161 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col3\" class=\"data row161 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col4\" class=\"data row161 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col5\" class=\"data row161 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col6\" class=\"data row161 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row161_col7\" class=\"data row161 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row162\" class=\"row_heading level0 row162\" >(18, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col0\" class=\"data row162 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col1\" class=\"data row162 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col2\" class=\"data row162 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col3\" class=\"data row162 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col4\" class=\"data row162 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col5\" class=\"data row162 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col6\" class=\"data row162 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row162_col7\" class=\"data row162 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row163\" class=\"row_heading level0 row163\" >(18, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col0\" class=\"data row163 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col1\" class=\"data row163 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col2\" class=\"data row163 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col3\" class=\"data row163 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col4\" class=\"data row163 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col5\" class=\"data row163 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col6\" class=\"data row163 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row163_col7\" class=\"data row163 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row164\" class=\"row_heading level0 row164\" >(18, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col0\" class=\"data row164 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col1\" class=\"data row164 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col2\" class=\"data row164 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col3\" class=\"data row164 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col4\" class=\"data row164 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col5\" class=\"data row164 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col6\" class=\"data row164 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row164_col7\" class=\"data row164 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row165\" class=\"row_heading level0 row165\" >(18, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col0\" class=\"data row165 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col1\" class=\"data row165 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col2\" class=\"data row165 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col3\" class=\"data row165 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col4\" class=\"data row165 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col5\" class=\"data row165 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col6\" class=\"data row165 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row165_col7\" class=\"data row165 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row166\" class=\"row_heading level0 row166\" >(18, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col0\" class=\"data row166 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col1\" class=\"data row166 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col2\" class=\"data row166 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col3\" class=\"data row166 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col4\" class=\"data row166 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col5\" class=\"data row166 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col6\" class=\"data row166 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row166_col7\" class=\"data row166 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row167\" class=\"row_heading level0 row167\" >(18, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col0\" class=\"data row167 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col1\" class=\"data row167 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col2\" class=\"data row167 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col3\" class=\"data row167 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col4\" class=\"data row167 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col5\" class=\"data row167 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col6\" class=\"data row167 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row167_col7\" class=\"data row167 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row168\" class=\"row_heading level0 row168\" >(18, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col0\" class=\"data row168 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col1\" class=\"data row168 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col2\" class=\"data row168 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col3\" class=\"data row168 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col4\" class=\"data row168 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col5\" class=\"data row168 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col6\" class=\"data row168 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row168_col7\" class=\"data row168 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row169\" class=\"row_heading level0 row169\" >(18, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col0\" class=\"data row169 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col1\" class=\"data row169 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col2\" class=\"data row169 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col3\" class=\"data row169 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col4\" class=\"data row169 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col5\" class=\"data row169 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col6\" class=\"data row169 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row169_col7\" class=\"data row169 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row170\" class=\"row_heading level0 row170\" >(18, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col0\" class=\"data row170 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col1\" class=\"data row170 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col2\" class=\"data row170 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col3\" class=\"data row170 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col4\" class=\"data row170 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col5\" class=\"data row170 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col6\" class=\"data row170 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row170_col7\" class=\"data row170 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row171\" class=\"row_heading level0 row171\" >(19, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col0\" class=\"data row171 col0\" >94</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col1\" class=\"data row171 col1\" >94</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col2\" class=\"data row171 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col3\" class=\"data row171 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col4\" class=\"data row171 col4\" >603</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col5\" class=\"data row171 col5\" >603</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col6\" class=\"data row171 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row171_col7\" class=\"data row171 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row172\" class=\"row_heading level0 row172\" >(19, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col0\" class=\"data row172 col0\" >22</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col1\" class=\"data row172 col1\" >22</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col2\" class=\"data row172 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col3\" class=\"data row172 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col4\" class=\"data row172 col4\" >66</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col5\" class=\"data row172 col5\" >66</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col6\" class=\"data row172 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row172_col7\" class=\"data row172 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row173\" class=\"row_heading level0 row173\" >(19, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col0\" class=\"data row173 col0\" >38</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col1\" class=\"data row173 col1\" >38</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col2\" class=\"data row173 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col3\" class=\"data row173 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col4\" class=\"data row173 col4\" >192</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col5\" class=\"data row173 col5\" >192</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col6\" class=\"data row173 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row173_col7\" class=\"data row173 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row174\" class=\"row_heading level0 row174\" >(19, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col0\" class=\"data row174 col0\" >24</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col1\" class=\"data row174 col1\" >24</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col2\" class=\"data row174 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col3\" class=\"data row174 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col4\" class=\"data row174 col4\" >57</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col5\" class=\"data row174 col5\" >57</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col6\" class=\"data row174 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row174_col7\" class=\"data row174 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row175\" class=\"row_heading level0 row175\" >(19, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col0\" class=\"data row175 col0\" >33</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col1\" class=\"data row175 col1\" >33</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col2\" class=\"data row175 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col3\" class=\"data row175 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col4\" class=\"data row175 col4\" >75</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col5\" class=\"data row175 col5\" >75</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col6\" class=\"data row175 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row175_col7\" class=\"data row175 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row176\" class=\"row_heading level0 row176\" >(19, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col0\" class=\"data row176 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col1\" class=\"data row176 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col2\" class=\"data row176 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col3\" class=\"data row176 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col4\" class=\"data row176 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col5\" class=\"data row176 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col6\" class=\"data row176 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row176_col7\" class=\"data row176 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row177\" class=\"row_heading level0 row177\" >(19, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col0\" class=\"data row177 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col1\" class=\"data row177 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col2\" class=\"data row177 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col3\" class=\"data row177 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col4\" class=\"data row177 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col5\" class=\"data row177 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col6\" class=\"data row177 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row177_col7\" class=\"data row177 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row178\" class=\"row_heading level0 row178\" >(19, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col0\" class=\"data row178 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col1\" class=\"data row178 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col2\" class=\"data row178 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col3\" class=\"data row178 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col4\" class=\"data row178 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col5\" class=\"data row178 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col6\" class=\"data row178 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row178_col7\" class=\"data row178 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row179\" class=\"row_heading level0 row179\" >(19, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col0\" class=\"data row179 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col1\" class=\"data row179 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col2\" class=\"data row179 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col3\" class=\"data row179 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col4\" class=\"data row179 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col5\" class=\"data row179 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col6\" class=\"data row179 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row179_col7\" class=\"data row179 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row180\" class=\"row_heading level0 row180\" >(19, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col0\" class=\"data row180 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col1\" class=\"data row180 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col2\" class=\"data row180 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col3\" class=\"data row180 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col4\" class=\"data row180 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col5\" class=\"data row180 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col6\" class=\"data row180 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row180_col7\" class=\"data row180 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row181\" class=\"row_heading level0 row181\" >(19, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col0\" class=\"data row181 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col1\" class=\"data row181 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col2\" class=\"data row181 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col3\" class=\"data row181 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col4\" class=\"data row181 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col5\" class=\"data row181 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col6\" class=\"data row181 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row181_col7\" class=\"data row181 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row182\" class=\"row_heading level0 row182\" >(19, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col0\" class=\"data row182 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col1\" class=\"data row182 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col2\" class=\"data row182 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col3\" class=\"data row182 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col4\" class=\"data row182 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col5\" class=\"data row182 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col6\" class=\"data row182 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row182_col7\" class=\"data row182 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row183\" class=\"row_heading level0 row183\" >(19, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col0\" class=\"data row183 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col1\" class=\"data row183 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col2\" class=\"data row183 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col3\" class=\"data row183 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col4\" class=\"data row183 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col5\" class=\"data row183 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col6\" class=\"data row183 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row183_col7\" class=\"data row183 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row184\" class=\"row_heading level0 row184\" >(19, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col0\" class=\"data row184 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col1\" class=\"data row184 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col2\" class=\"data row184 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col3\" class=\"data row184 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col4\" class=\"data row184 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col5\" class=\"data row184 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col6\" class=\"data row184 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row184_col7\" class=\"data row184 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row185\" class=\"row_heading level0 row185\" >(19, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col0\" class=\"data row185 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col1\" class=\"data row185 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col2\" class=\"data row185 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col3\" class=\"data row185 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col4\" class=\"data row185 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col5\" class=\"data row185 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col6\" class=\"data row185 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row185_col7\" class=\"data row185 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row186\" class=\"row_heading level0 row186\" >(19, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col0\" class=\"data row186 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col1\" class=\"data row186 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col2\" class=\"data row186 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col3\" class=\"data row186 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col4\" class=\"data row186 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col5\" class=\"data row186 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col6\" class=\"data row186 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row186_col7\" class=\"data row186 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row187\" class=\"row_heading level0 row187\" >(19, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col0\" class=\"data row187 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col1\" class=\"data row187 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col2\" class=\"data row187 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col3\" class=\"data row187 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col4\" class=\"data row187 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col5\" class=\"data row187 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col6\" class=\"data row187 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row187_col7\" class=\"data row187 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row188\" class=\"row_heading level0 row188\" >(19, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col0\" class=\"data row188 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col1\" class=\"data row188 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col2\" class=\"data row188 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col3\" class=\"data row188 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col4\" class=\"data row188 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col5\" class=\"data row188 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col6\" class=\"data row188 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row188_col7\" class=\"data row188 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row189\" class=\"row_heading level0 row189\" >(19, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col0\" class=\"data row189 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col1\" class=\"data row189 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col2\" class=\"data row189 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col3\" class=\"data row189 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col4\" class=\"data row189 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col5\" class=\"data row189 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col6\" class=\"data row189 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row189_col7\" class=\"data row189 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row190\" class=\"row_heading level0 row190\" >(20, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col0\" class=\"data row190 col0\" >198</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col1\" class=\"data row190 col1\" >198</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col2\" class=\"data row190 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col3\" class=\"data row190 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col4\" class=\"data row190 col4\" >2906</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col5\" class=\"data row190 col5\" >2906</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col6\" class=\"data row190 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row190_col7\" class=\"data row190 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row191\" class=\"row_heading level0 row191\" >(20, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col0\" class=\"data row191 col0\" >93</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col1\" class=\"data row191 col1\" >93</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col2\" class=\"data row191 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col3\" class=\"data row191 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col4\" class=\"data row191 col4\" >752</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col5\" class=\"data row191 col5\" >752</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col6\" class=\"data row191 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row191_col7\" class=\"data row191 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row192\" class=\"row_heading level0 row192\" >(20, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col0\" class=\"data row192 col0\" >150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col1\" class=\"data row192 col1\" >150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col2\" class=\"data row192 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col3\" class=\"data row192 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col4\" class=\"data row192 col4\" >1766</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col5\" class=\"data row192 col5\" >1766</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col6\" class=\"data row192 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row192_col7\" class=\"data row192 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row193\" class=\"row_heading level0 row193\" >(20, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col0\" class=\"data row193 col0\" >70</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col1\" class=\"data row193 col1\" >70</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col2\" class=\"data row193 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col3\" class=\"data row193 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col4\" class=\"data row193 col4\" >122</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col5\" class=\"data row193 col5\" >122</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col6\" class=\"data row193 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row193_col7\" class=\"data row193 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row194\" class=\"row_heading level0 row194\" >(20, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col0\" class=\"data row194 col0\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col1\" class=\"data row194 col1\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col2\" class=\"data row194 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col3\" class=\"data row194 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col4\" class=\"data row194 col4\" >91</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col5\" class=\"data row194 col5\" >91</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col6\" class=\"data row194 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row194_col7\" class=\"data row194 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row195\" class=\"row_heading level0 row195\" >(20, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col0\" class=\"data row195 col0\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col1\" class=\"data row195 col1\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col2\" class=\"data row195 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col3\" class=\"data row195 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col4\" class=\"data row195 col4\" >37</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col5\" class=\"data row195 col5\" >37</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col6\" class=\"data row195 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row195_col7\" class=\"data row195 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row196\" class=\"row_heading level0 row196\" >(20, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col0\" class=\"data row196 col0\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col1\" class=\"data row196 col1\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col2\" class=\"data row196 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col3\" class=\"data row196 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col4\" class=\"data row196 col4\" >59</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col5\" class=\"data row196 col5\" >59</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col6\" class=\"data row196 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row196_col7\" class=\"data row196 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row197\" class=\"row_heading level0 row197\" >(20, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col0\" class=\"data row197 col0\" >37</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col1\" class=\"data row197 col1\" >37</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col2\" class=\"data row197 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col3\" class=\"data row197 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col4\" class=\"data row197 col4\" >100</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col5\" class=\"data row197 col5\" >100</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col6\" class=\"data row197 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row197_col7\" class=\"data row197 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row198\" class=\"row_heading level0 row198\" >(20, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col0\" class=\"data row198 col0\" >71</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col1\" class=\"data row198 col1\" >71</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col2\" class=\"data row198 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col3\" class=\"data row198 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col4\" class=\"data row198 col4\" >422</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col5\" class=\"data row198 col5\" >422</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col6\" class=\"data row198 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row198_col7\" class=\"data row198 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row199\" class=\"row_heading level0 row199\" >(20, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col0\" class=\"data row199 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col1\" class=\"data row199 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col2\" class=\"data row199 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col3\" class=\"data row199 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col4\" class=\"data row199 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col5\" class=\"data row199 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col6\" class=\"data row199 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row199_col7\" class=\"data row199 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row200\" class=\"row_heading level0 row200\" >(20, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col0\" class=\"data row200 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col1\" class=\"data row200 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col2\" class=\"data row200 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col3\" class=\"data row200 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col4\" class=\"data row200 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col5\" class=\"data row200 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col6\" class=\"data row200 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row200_col7\" class=\"data row200 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row201\" class=\"row_heading level0 row201\" >(20, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col0\" class=\"data row201 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col1\" class=\"data row201 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col2\" class=\"data row201 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col3\" class=\"data row201 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col4\" class=\"data row201 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col5\" class=\"data row201 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col6\" class=\"data row201 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row201_col7\" class=\"data row201 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row202\" class=\"row_heading level0 row202\" >(20, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col0\" class=\"data row202 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col1\" class=\"data row202 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col2\" class=\"data row202 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col3\" class=\"data row202 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col4\" class=\"data row202 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col5\" class=\"data row202 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col6\" class=\"data row202 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row202_col7\" class=\"data row202 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row203\" class=\"row_heading level0 row203\" >(20, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col0\" class=\"data row203 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col1\" class=\"data row203 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col2\" class=\"data row203 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col3\" class=\"data row203 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col4\" class=\"data row203 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col5\" class=\"data row203 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col6\" class=\"data row203 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row203_col7\" class=\"data row203 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row204\" class=\"row_heading level0 row204\" >(20, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col0\" class=\"data row204 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col1\" class=\"data row204 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col2\" class=\"data row204 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col3\" class=\"data row204 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col4\" class=\"data row204 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col5\" class=\"data row204 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col6\" class=\"data row204 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row204_col7\" class=\"data row204 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row205\" class=\"row_heading level0 row205\" >(20, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col0\" class=\"data row205 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col1\" class=\"data row205 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col2\" class=\"data row205 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col3\" class=\"data row205 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col4\" class=\"data row205 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col5\" class=\"data row205 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col6\" class=\"data row205 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row205_col7\" class=\"data row205 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row206\" class=\"row_heading level0 row206\" >(20, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col0\" class=\"data row206 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col1\" class=\"data row206 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col2\" class=\"data row206 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col3\" class=\"data row206 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col4\" class=\"data row206 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col5\" class=\"data row206 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col6\" class=\"data row206 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row206_col7\" class=\"data row206 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row207\" class=\"row_heading level0 row207\" >(20, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col0\" class=\"data row207 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col1\" class=\"data row207 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col2\" class=\"data row207 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col3\" class=\"data row207 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col4\" class=\"data row207 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col5\" class=\"data row207 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col6\" class=\"data row207 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row207_col7\" class=\"data row207 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row208\" class=\"row_heading level0 row208\" >(20, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col0\" class=\"data row208 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col1\" class=\"data row208 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col2\" class=\"data row208 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col3\" class=\"data row208 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col4\" class=\"data row208 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col5\" class=\"data row208 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col6\" class=\"data row208 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row208_col7\" class=\"data row208 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row209\" class=\"row_heading level0 row209\" >(20, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col0\" class=\"data row209 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col1\" class=\"data row209 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col2\" class=\"data row209 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col3\" class=\"data row209 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col4\" class=\"data row209 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col5\" class=\"data row209 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col6\" class=\"data row209 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row209_col7\" class=\"data row209 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row210\" class=\"row_heading level0 row210\" >(21, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col0\" class=\"data row210 col0\" >272</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col1\" class=\"data row210 col1\" >272</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col2\" class=\"data row210 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col3\" class=\"data row210 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col4\" class=\"data row210 col4\" >4221</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col5\" class=\"data row210 col5\" >4221</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col6\" class=\"data row210 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row210_col7\" class=\"data row210 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row211\" class=\"row_heading level0 row211\" >(21, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col0\" class=\"data row211 col0\" >168</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col1\" class=\"data row211 col1\" >168</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col2\" class=\"data row211 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col3\" class=\"data row211 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col4\" class=\"data row211 col4\" >2215</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col5\" class=\"data row211 col5\" >2215</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col6\" class=\"data row211 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row211_col7\" class=\"data row211 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row212\" class=\"row_heading level0 row212\" >(21, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col0\" class=\"data row212 col0\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col1\" class=\"data row212 col1\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col2\" class=\"data row212 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col3\" class=\"data row212 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col4\" class=\"data row212 col4\" >217</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col5\" class=\"data row212 col5\" >217</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col6\" class=\"data row212 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row212_col7\" class=\"data row212 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row213\" class=\"row_heading level0 row213\" >(21, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col0\" class=\"data row213 col0\" >125</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col1\" class=\"data row213 col1\" >125</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col2\" class=\"data row213 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col3\" class=\"data row213 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col4\" class=\"data row213 col4\" >953</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col5\" class=\"data row213 col5\" >953</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col6\" class=\"data row213 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row213_col7\" class=\"data row213 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row214\" class=\"row_heading level0 row214\" >(21, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col0\" class=\"data row214 col0\" >22</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col1\" class=\"data row214 col1\" >22</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col2\" class=\"data row214 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col3\" class=\"data row214 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col4\" class=\"data row214 col4\" >29</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col5\" class=\"data row214 col5\" >29</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col6\" class=\"data row214 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row214_col7\" class=\"data row214 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row215\" class=\"row_heading level0 row215\" >(21, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col0\" class=\"data row215 col0\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col1\" class=\"data row215 col1\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col2\" class=\"data row215 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col3\" class=\"data row215 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col4\" class=\"data row215 col4\" >89</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col5\" class=\"data row215 col5\" >89</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col6\" class=\"data row215 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row215_col7\" class=\"data row215 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row216\" class=\"row_heading level0 row216\" >(21, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col0\" class=\"data row216 col0\" >34</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col1\" class=\"data row216 col1\" >34</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col2\" class=\"data row216 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col3\" class=\"data row216 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col4\" class=\"data row216 col4\" >41</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col5\" class=\"data row216 col5\" >41</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col6\" class=\"data row216 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row216_col7\" class=\"data row216 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row217\" class=\"row_heading level0 row217\" >(21, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col0\" class=\"data row217 col0\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col1\" class=\"data row217 col1\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col2\" class=\"data row217 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col3\" class=\"data row217 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col4\" class=\"data row217 col4\" >60</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col5\" class=\"data row217 col5\" >60</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col6\" class=\"data row217 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row217_col7\" class=\"data row217 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row218\" class=\"row_heading level0 row218\" >(21, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col0\" class=\"data row218 col0\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col1\" class=\"data row218 col1\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col2\" class=\"data row218 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col3\" class=\"data row218 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col4\" class=\"data row218 col4\" >52</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col5\" class=\"data row218 col5\" >52</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col6\" class=\"data row218 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row218_col7\" class=\"data row218 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row219\" class=\"row_heading level0 row219\" >(21, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col0\" class=\"data row219 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col1\" class=\"data row219 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col2\" class=\"data row219 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col3\" class=\"data row219 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col4\" class=\"data row219 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col5\" class=\"data row219 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col6\" class=\"data row219 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row219_col7\" class=\"data row219 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row220\" class=\"row_heading level0 row220\" >(21, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col0\" class=\"data row220 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col1\" class=\"data row220 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col2\" class=\"data row220 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col3\" class=\"data row220 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col4\" class=\"data row220 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col5\" class=\"data row220 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col6\" class=\"data row220 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row220_col7\" class=\"data row220 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row221\" class=\"row_heading level0 row221\" >(21, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col0\" class=\"data row221 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col1\" class=\"data row221 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col2\" class=\"data row221 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col3\" class=\"data row221 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col4\" class=\"data row221 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col5\" class=\"data row221 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col6\" class=\"data row221 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row221_col7\" class=\"data row221 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row222\" class=\"row_heading level0 row222\" >(21, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col0\" class=\"data row222 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col1\" class=\"data row222 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col2\" class=\"data row222 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col3\" class=\"data row222 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col4\" class=\"data row222 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col5\" class=\"data row222 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col6\" class=\"data row222 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row222_col7\" class=\"data row222 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row223\" class=\"row_heading level0 row223\" >(21, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col0\" class=\"data row223 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col1\" class=\"data row223 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col2\" class=\"data row223 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col3\" class=\"data row223 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col4\" class=\"data row223 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col5\" class=\"data row223 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col6\" class=\"data row223 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row223_col7\" class=\"data row223 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row224\" class=\"row_heading level0 row224\" >(21, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col0\" class=\"data row224 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col1\" class=\"data row224 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col2\" class=\"data row224 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col3\" class=\"data row224 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col4\" class=\"data row224 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col5\" class=\"data row224 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col6\" class=\"data row224 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row224_col7\" class=\"data row224 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row225\" class=\"row_heading level0 row225\" >(21, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col0\" class=\"data row225 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col1\" class=\"data row225 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col2\" class=\"data row225 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col3\" class=\"data row225 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col4\" class=\"data row225 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col5\" class=\"data row225 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col6\" class=\"data row225 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row225_col7\" class=\"data row225 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row226\" class=\"row_heading level0 row226\" >(21, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col0\" class=\"data row226 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col1\" class=\"data row226 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col2\" class=\"data row226 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col3\" class=\"data row226 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col4\" class=\"data row226 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col5\" class=\"data row226 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col6\" class=\"data row226 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row226_col7\" class=\"data row226 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row227\" class=\"row_heading level0 row227\" >(21, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col0\" class=\"data row227 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col1\" class=\"data row227 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col2\" class=\"data row227 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col3\" class=\"data row227 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col4\" class=\"data row227 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col5\" class=\"data row227 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col6\" class=\"data row227 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row227_col7\" class=\"data row227 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row228\" class=\"row_heading level0 row228\" >(21, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col0\" class=\"data row228 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col1\" class=\"data row228 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col2\" class=\"data row228 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col3\" class=\"data row228 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col4\" class=\"data row228 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col5\" class=\"data row228 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col6\" class=\"data row228 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row228_col7\" class=\"data row228 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row229\" class=\"row_heading level0 row229\" >(21, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col0\" class=\"data row229 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col1\" class=\"data row229 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col2\" class=\"data row229 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col3\" class=\"data row229 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col4\" class=\"data row229 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col5\" class=\"data row229 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col6\" class=\"data row229 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row229_col7\" class=\"data row229 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row230\" class=\"row_heading level0 row230\" >(21, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col0\" class=\"data row230 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col1\" class=\"data row230 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col2\" class=\"data row230 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col3\" class=\"data row230 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col4\" class=\"data row230 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col5\" class=\"data row230 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col6\" class=\"data row230 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row230_col7\" class=\"data row230 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row231\" class=\"row_heading level0 row231\" >(22, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col0\" class=\"data row231 col0\" >441</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col1\" class=\"data row231 col1\" >441</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col2\" class=\"data row231 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col3\" class=\"data row231 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col4\" class=\"data row231 col4\" >8771</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col5\" class=\"data row231 col5\" >8771</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col6\" class=\"data row231 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row231_col7\" class=\"data row231 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row232\" class=\"row_heading level0 row232\" >(22, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col0\" class=\"data row232 col0\" >204</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col1\" class=\"data row232 col1\" >204</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col2\" class=\"data row232 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col3\" class=\"data row232 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col4\" class=\"data row232 col4\" >2597</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col5\" class=\"data row232 col5\" >2597</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col6\" class=\"data row232 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row232_col7\" class=\"data row232 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row233\" class=\"row_heading level0 row233\" >(22, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col0\" class=\"data row233 col0\" >199</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col1\" class=\"data row233 col1\" >199</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col2\" class=\"data row233 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col3\" class=\"data row233 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col4\" class=\"data row233 col4\" >2289</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col5\" class=\"data row233 col5\" >2289</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col6\" class=\"data row233 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row233_col7\" class=\"data row233 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row234\" class=\"row_heading level0 row234\" >(22, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col0\" class=\"data row234 col0\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col1\" class=\"data row234 col1\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col2\" class=\"data row234 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col3\" class=\"data row234 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col4\" class=\"data row234 col4\" >139</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col5\" class=\"data row234 col5\" >139</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col6\" class=\"data row234 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row234_col7\" class=\"data row234 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row235\" class=\"row_heading level0 row235\" >(22, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col0\" class=\"data row235 col0\" >51</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col1\" class=\"data row235 col1\" >51</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col2\" class=\"data row235 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col3\" class=\"data row235 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col4\" class=\"data row235 col4\" >331</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col5\" class=\"data row235 col5\" >331</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col6\" class=\"data row235 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row235_col7\" class=\"data row235 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row236\" class=\"row_heading level0 row236\" >(22, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col0\" class=\"data row236 col0\" >48</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col1\" class=\"data row236 col1\" >48</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col2\" class=\"data row236 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col3\" class=\"data row236 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col4\" class=\"data row236 col4\" >60</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col5\" class=\"data row236 col5\" >60</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col6\" class=\"data row236 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row236_col7\" class=\"data row236 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row237\" class=\"row_heading level0 row237\" >(22, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col0\" class=\"data row237 col0\" >47</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col1\" class=\"data row237 col1\" >47</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col2\" class=\"data row237 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col3\" class=\"data row237 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col4\" class=\"data row237 col4\" >119</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col5\" class=\"data row237 col5\" >119</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col6\" class=\"data row237 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row237_col7\" class=\"data row237 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row238\" class=\"row_heading level0 row238\" >(22, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col0\" class=\"data row238 col0\" >35</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col1\" class=\"data row238 col1\" >35</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col2\" class=\"data row238 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col3\" class=\"data row238 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col4\" class=\"data row238 col4\" >40</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col5\" class=\"data row238 col5\" >40</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col6\" class=\"data row238 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row238_col7\" class=\"data row238 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row239\" class=\"row_heading level0 row239\" >(22, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col0\" class=\"data row239 col0\" >28</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col1\" class=\"data row239 col1\" >28</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col2\" class=\"data row239 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col3\" class=\"data row239 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col4\" class=\"data row239 col4\" >67</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col5\" class=\"data row239 col5\" >67</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col6\" class=\"data row239 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row239_col7\" class=\"data row239 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row240\" class=\"row_heading level0 row240\" >(22, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col0\" class=\"data row240 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col1\" class=\"data row240 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col2\" class=\"data row240 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col3\" class=\"data row240 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col4\" class=\"data row240 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col5\" class=\"data row240 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col6\" class=\"data row240 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row240_col7\" class=\"data row240 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row241\" class=\"row_heading level0 row241\" >(22, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col0\" class=\"data row241 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col1\" class=\"data row241 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col2\" class=\"data row241 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col3\" class=\"data row241 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col4\" class=\"data row241 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col5\" class=\"data row241 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col6\" class=\"data row241 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row241_col7\" class=\"data row241 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row242\" class=\"row_heading level0 row242\" >(22, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col0\" class=\"data row242 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col1\" class=\"data row242 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col2\" class=\"data row242 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col3\" class=\"data row242 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col4\" class=\"data row242 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col5\" class=\"data row242 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col6\" class=\"data row242 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row242_col7\" class=\"data row242 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row243\" class=\"row_heading level0 row243\" >(22, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col0\" class=\"data row243 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col1\" class=\"data row243 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col2\" class=\"data row243 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col3\" class=\"data row243 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col4\" class=\"data row243 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col5\" class=\"data row243 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col6\" class=\"data row243 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row243_col7\" class=\"data row243 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row244\" class=\"row_heading level0 row244\" >(22, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col0\" class=\"data row244 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col1\" class=\"data row244 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col2\" class=\"data row244 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col3\" class=\"data row244 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col4\" class=\"data row244 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col5\" class=\"data row244 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col6\" class=\"data row244 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row244_col7\" class=\"data row244 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row245\" class=\"row_heading level0 row245\" >(22, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col0\" class=\"data row245 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col1\" class=\"data row245 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col2\" class=\"data row245 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col3\" class=\"data row245 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col4\" class=\"data row245 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col5\" class=\"data row245 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col6\" class=\"data row245 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row245_col7\" class=\"data row245 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row246\" class=\"row_heading level0 row246\" >(22, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col0\" class=\"data row246 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col1\" class=\"data row246 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col2\" class=\"data row246 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col3\" class=\"data row246 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col4\" class=\"data row246 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col5\" class=\"data row246 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col6\" class=\"data row246 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row246_col7\" class=\"data row246 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row247\" class=\"row_heading level0 row247\" >(22, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col0\" class=\"data row247 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col1\" class=\"data row247 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col2\" class=\"data row247 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col3\" class=\"data row247 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col4\" class=\"data row247 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col5\" class=\"data row247 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col6\" class=\"data row247 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row247_col7\" class=\"data row247 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row248\" class=\"row_heading level0 row248\" >(22, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col0\" class=\"data row248 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col1\" class=\"data row248 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col2\" class=\"data row248 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col3\" class=\"data row248 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col4\" class=\"data row248 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col5\" class=\"data row248 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col6\" class=\"data row248 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row248_col7\" class=\"data row248 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row249\" class=\"row_heading level0 row249\" >(22, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col0\" class=\"data row249 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col1\" class=\"data row249 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col2\" class=\"data row249 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col3\" class=\"data row249 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col4\" class=\"data row249 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col5\" class=\"data row249 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col6\" class=\"data row249 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row249_col7\" class=\"data row249 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row250\" class=\"row_heading level0 row250\" >(22, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col0\" class=\"data row250 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col1\" class=\"data row250 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col2\" class=\"data row250 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col3\" class=\"data row250 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col4\" class=\"data row250 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col5\" class=\"data row250 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col6\" class=\"data row250 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row250_col7\" class=\"data row250 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row251\" class=\"row_heading level0 row251\" >(22, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col0\" class=\"data row251 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col1\" class=\"data row251 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col2\" class=\"data row251 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col3\" class=\"data row251 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col4\" class=\"data row251 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col5\" class=\"data row251 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col6\" class=\"data row251 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row251_col7\" class=\"data row251 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row252\" class=\"row_heading level0 row252\" >(22, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col0\" class=\"data row252 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col1\" class=\"data row252 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col2\" class=\"data row252 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col3\" class=\"data row252 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col4\" class=\"data row252 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col5\" class=\"data row252 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col6\" class=\"data row252 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row252_col7\" class=\"data row252 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row253\" class=\"row_heading level0 row253\" >(23, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col0\" class=\"data row253 col0\" >502</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col1\" class=\"data row253 col1\" >502</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col2\" class=\"data row253 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col3\" class=\"data row253 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col4\" class=\"data row253 col4\" >6995</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col5\" class=\"data row253 col5\" >6995</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col6\" class=\"data row253 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row253_col7\" class=\"data row253 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row254\" class=\"row_heading level0 row254\" >(23, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col0\" class=\"data row254 col0\" >323</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col1\" class=\"data row254 col1\" >323</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col2\" class=\"data row254 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col3\" class=\"data row254 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col4\" class=\"data row254 col4\" >4545</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col5\" class=\"data row254 col5\" >4545</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col6\" class=\"data row254 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row254_col7\" class=\"data row254 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row255\" class=\"row_heading level0 row255\" >(23, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col0\" class=\"data row255 col0\" >299</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col1\" class=\"data row255 col1\" >299</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col2\" class=\"data row255 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col3\" class=\"data row255 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col4\" class=\"data row255 col4\" >5304</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col5\" class=\"data row255 col5\" >5304</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col6\" class=\"data row255 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row255_col7\" class=\"data row255 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row256\" class=\"row_heading level0 row256\" >(23, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col0\" class=\"data row256 col0\" >98</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col1\" class=\"data row256 col1\" >98</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col2\" class=\"data row256 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col3\" class=\"data row256 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col4\" class=\"data row256 col4\" >995</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col5\" class=\"data row256 col5\" >995</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col6\" class=\"data row256 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row256_col7\" class=\"data row256 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row257\" class=\"row_heading level0 row257\" >(23, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col0\" class=\"data row257 col0\" >64</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col1\" class=\"data row257 col1\" >64</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col2\" class=\"data row257 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col3\" class=\"data row257 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col4\" class=\"data row257 col4\" >335</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col5\" class=\"data row257 col5\" >335</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col6\" class=\"data row257 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row257_col7\" class=\"data row257 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row258\" class=\"row_heading level0 row258\" >(23, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col0\" class=\"data row258 col0\" >56</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col1\" class=\"data row258 col1\" >56</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col2\" class=\"data row258 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col3\" class=\"data row258 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col4\" class=\"data row258 col4\" >372</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col5\" class=\"data row258 col5\" >372</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col6\" class=\"data row258 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row258_col7\" class=\"data row258 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row259\" class=\"row_heading level0 row259\" >(23, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col0\" class=\"data row259 col0\" >23</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col1\" class=\"data row259 col1\" >23</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col2\" class=\"data row259 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col3\" class=\"data row259 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col4\" class=\"data row259 col4\" >32</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col5\" class=\"data row259 col5\" >32</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col6\" class=\"data row259 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row259_col7\" class=\"data row259 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row260\" class=\"row_heading level0 row260\" >(23, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col0\" class=\"data row260 col0\" >33</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col1\" class=\"data row260 col1\" >33</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col2\" class=\"data row260 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col3\" class=\"data row260 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col4\" class=\"data row260 col4\" >77</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col5\" class=\"data row260 col5\" >77</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col6\" class=\"data row260 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row260_col7\" class=\"data row260 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row261\" class=\"row_heading level0 row261\" >(23, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col0\" class=\"data row261 col0\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col1\" class=\"data row261 col1\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col2\" class=\"data row261 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col3\" class=\"data row261 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col4\" class=\"data row261 col4\" >33</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col5\" class=\"data row261 col5\" >33</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col6\" class=\"data row261 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row261_col7\" class=\"data row261 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row262\" class=\"row_heading level0 row262\" >(23, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col0\" class=\"data row262 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col1\" class=\"data row262 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col2\" class=\"data row262 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col3\" class=\"data row262 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col4\" class=\"data row262 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col5\" class=\"data row262 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col6\" class=\"data row262 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row262_col7\" class=\"data row262 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row263\" class=\"row_heading level0 row263\" >(23, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col0\" class=\"data row263 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col1\" class=\"data row263 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col2\" class=\"data row263 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col3\" class=\"data row263 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col4\" class=\"data row263 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col5\" class=\"data row263 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col6\" class=\"data row263 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row263_col7\" class=\"data row263 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row264\" class=\"row_heading level0 row264\" >(23, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col0\" class=\"data row264 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col1\" class=\"data row264 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col2\" class=\"data row264 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col3\" class=\"data row264 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col4\" class=\"data row264 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col5\" class=\"data row264 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col6\" class=\"data row264 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row264_col7\" class=\"data row264 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row265\" class=\"row_heading level0 row265\" >(23, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col0\" class=\"data row265 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col1\" class=\"data row265 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col2\" class=\"data row265 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col3\" class=\"data row265 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col4\" class=\"data row265 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col5\" class=\"data row265 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col6\" class=\"data row265 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row265_col7\" class=\"data row265 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row266\" class=\"row_heading level0 row266\" >(23, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col0\" class=\"data row266 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col1\" class=\"data row266 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col2\" class=\"data row266 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col3\" class=\"data row266 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col4\" class=\"data row266 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col5\" class=\"data row266 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col6\" class=\"data row266 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row266_col7\" class=\"data row266 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row267\" class=\"row_heading level0 row267\" >(23, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col0\" class=\"data row267 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col1\" class=\"data row267 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col2\" class=\"data row267 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col3\" class=\"data row267 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col4\" class=\"data row267 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col5\" class=\"data row267 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col6\" class=\"data row267 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row267_col7\" class=\"data row267 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row268\" class=\"row_heading level0 row268\" >(23, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col0\" class=\"data row268 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col1\" class=\"data row268 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col2\" class=\"data row268 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col3\" class=\"data row268 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col4\" class=\"data row268 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col5\" class=\"data row268 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col6\" class=\"data row268 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row268_col7\" class=\"data row268 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row269\" class=\"row_heading level0 row269\" >(23, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col0\" class=\"data row269 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col1\" class=\"data row269 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col2\" class=\"data row269 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col3\" class=\"data row269 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col4\" class=\"data row269 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col5\" class=\"data row269 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col6\" class=\"data row269 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row269_col7\" class=\"data row269 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row270\" class=\"row_heading level0 row270\" >(23, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col0\" class=\"data row270 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col1\" class=\"data row270 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col2\" class=\"data row270 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col3\" class=\"data row270 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col4\" class=\"data row270 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col5\" class=\"data row270 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col6\" class=\"data row270 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row270_col7\" class=\"data row270 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row271\" class=\"row_heading level0 row271\" >(23, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col0\" class=\"data row271 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col1\" class=\"data row271 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col2\" class=\"data row271 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col3\" class=\"data row271 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col4\" class=\"data row271 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col5\" class=\"data row271 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col6\" class=\"data row271 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row271_col7\" class=\"data row271 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row272\" class=\"row_heading level0 row272\" >(23, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col0\" class=\"data row272 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col1\" class=\"data row272 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col2\" class=\"data row272 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col3\" class=\"data row272 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col4\" class=\"data row272 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col5\" class=\"data row272 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col6\" class=\"data row272 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row272_col7\" class=\"data row272 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row273\" class=\"row_heading level0 row273\" >(23, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col0\" class=\"data row273 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col1\" class=\"data row273 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col2\" class=\"data row273 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col3\" class=\"data row273 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col4\" class=\"data row273 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col5\" class=\"data row273 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col6\" class=\"data row273 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row273_col7\" class=\"data row273 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row274\" class=\"row_heading level0 row274\" >(23, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col0\" class=\"data row274 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col1\" class=\"data row274 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col2\" class=\"data row274 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col3\" class=\"data row274 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col4\" class=\"data row274 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col5\" class=\"data row274 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col6\" class=\"data row274 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row274_col7\" class=\"data row274 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row275\" class=\"row_heading level0 row275\" >(23, 22)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col0\" class=\"data row275 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col1\" class=\"data row275 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col2\" class=\"data row275 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col3\" class=\"data row275 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col4\" class=\"data row275 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col5\" class=\"data row275 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col6\" class=\"data row275 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row275_col7\" class=\"data row275 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row276\" class=\"row_heading level0 row276\" >(24, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col0\" class=\"data row276 col0\" >394</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col1\" class=\"data row276 col1\" >394</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col2\" class=\"data row276 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col3\" class=\"data row276 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col4\" class=\"data row276 col4\" >4172</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col5\" class=\"data row276 col5\" >4172</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col6\" class=\"data row276 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row276_col7\" class=\"data row276 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row277\" class=\"row_heading level0 row277\" >(24, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col0\" class=\"data row277 col0\" >733</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col1\" class=\"data row277 col1\" >733</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col2\" class=\"data row277 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col3\" class=\"data row277 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col4\" class=\"data row277 col4\" >17224</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col5\" class=\"data row277 col5\" >17224</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col6\" class=\"data row277 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row277_col7\" class=\"data row277 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row278\" class=\"row_heading level0 row278\" >(24, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col0\" class=\"data row278 col0\" >214</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col1\" class=\"data row278 col1\" >214</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col2\" class=\"data row278 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col3\" class=\"data row278 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col4\" class=\"data row278 col4\" >2122</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col5\" class=\"data row278 col5\" >2122</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col6\" class=\"data row278 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row278_col7\" class=\"data row278 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row279\" class=\"row_heading level0 row279\" >(24, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col0\" class=\"data row279 col0\" >154</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col1\" class=\"data row279 col1\" >154</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col2\" class=\"data row279 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col3\" class=\"data row279 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col4\" class=\"data row279 col4\" >1717</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col5\" class=\"data row279 col5\" >1717</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col6\" class=\"data row279 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row279_col7\" class=\"data row279 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row280\" class=\"row_heading level0 row280\" >(24, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col0\" class=\"data row280 col0\" >46</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col1\" class=\"data row280 col1\" >46</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col2\" class=\"data row280 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col3\" class=\"data row280 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col4\" class=\"data row280 col4\" >220</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col5\" class=\"data row280 col5\" >220</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col6\" class=\"data row280 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row280_col7\" class=\"data row280 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row281\" class=\"row_heading level0 row281\" >(24, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col0\" class=\"data row281 col0\" >62</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col1\" class=\"data row281 col1\" >62</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col2\" class=\"data row281 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col3\" class=\"data row281 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col4\" class=\"data row281 col4\" >255</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col5\" class=\"data row281 col5\" >255</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col6\" class=\"data row281 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row281_col7\" class=\"data row281 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row282\" class=\"row_heading level0 row282\" >(24, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col0\" class=\"data row282 col0\" >63</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col1\" class=\"data row282 col1\" >63</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col2\" class=\"data row282 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col3\" class=\"data row282 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col4\" class=\"data row282 col4\" >421</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col5\" class=\"data row282 col5\" >421</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col6\" class=\"data row282 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row282_col7\" class=\"data row282 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row283\" class=\"row_heading level0 row283\" >(24, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col0\" class=\"data row283 col0\" >22</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col1\" class=\"data row283 col1\" >22</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col2\" class=\"data row283 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col3\" class=\"data row283 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col4\" class=\"data row283 col4\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col5\" class=\"data row283 col5\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col6\" class=\"data row283 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row283_col7\" class=\"data row283 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row284\" class=\"row_heading level0 row284\" >(24, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col0\" class=\"data row284 col0\" >28</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col1\" class=\"data row284 col1\" >28</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col2\" class=\"data row284 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col3\" class=\"data row284 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col4\" class=\"data row284 col4\" >67</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col5\" class=\"data row284 col5\" >67</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col6\" class=\"data row284 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row284_col7\" class=\"data row284 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row285\" class=\"row_heading level0 row285\" >(24, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col0\" class=\"data row285 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col1\" class=\"data row285 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col2\" class=\"data row285 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col3\" class=\"data row285 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col4\" class=\"data row285 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col5\" class=\"data row285 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col6\" class=\"data row285 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row285_col7\" class=\"data row285 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row286\" class=\"row_heading level0 row286\" >(24, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col0\" class=\"data row286 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col1\" class=\"data row286 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col2\" class=\"data row286 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col3\" class=\"data row286 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col4\" class=\"data row286 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col5\" class=\"data row286 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col6\" class=\"data row286 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row286_col7\" class=\"data row286 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row287\" class=\"row_heading level0 row287\" >(24, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col0\" class=\"data row287 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col1\" class=\"data row287 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col2\" class=\"data row287 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col3\" class=\"data row287 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col4\" class=\"data row287 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col5\" class=\"data row287 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col6\" class=\"data row287 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row287_col7\" class=\"data row287 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row288\" class=\"row_heading level0 row288\" >(24, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col0\" class=\"data row288 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col1\" class=\"data row288 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col2\" class=\"data row288 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col3\" class=\"data row288 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col4\" class=\"data row288 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col5\" class=\"data row288 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col6\" class=\"data row288 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row288_col7\" class=\"data row288 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row289\" class=\"row_heading level0 row289\" >(24, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col0\" class=\"data row289 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col1\" class=\"data row289 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col2\" class=\"data row289 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col3\" class=\"data row289 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col4\" class=\"data row289 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col5\" class=\"data row289 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col6\" class=\"data row289 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row289_col7\" class=\"data row289 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row290\" class=\"row_heading level0 row290\" >(24, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col0\" class=\"data row290 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col1\" class=\"data row290 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col2\" class=\"data row290 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col3\" class=\"data row290 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col4\" class=\"data row290 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col5\" class=\"data row290 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col6\" class=\"data row290 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row290_col7\" class=\"data row290 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row291\" class=\"row_heading level0 row291\" >(24, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col0\" class=\"data row291 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col1\" class=\"data row291 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col2\" class=\"data row291 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col3\" class=\"data row291 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col4\" class=\"data row291 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col5\" class=\"data row291 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col6\" class=\"data row291 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row291_col7\" class=\"data row291 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row292\" class=\"row_heading level0 row292\" >(24, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col0\" class=\"data row292 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col1\" class=\"data row292 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col2\" class=\"data row292 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col3\" class=\"data row292 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col4\" class=\"data row292 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col5\" class=\"data row292 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col6\" class=\"data row292 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row292_col7\" class=\"data row292 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row293\" class=\"row_heading level0 row293\" >(24, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col0\" class=\"data row293 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col1\" class=\"data row293 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col2\" class=\"data row293 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col3\" class=\"data row293 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col4\" class=\"data row293 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col5\" class=\"data row293 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col6\" class=\"data row293 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row293_col7\" class=\"data row293 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row294\" class=\"row_heading level0 row294\" >(24, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col0\" class=\"data row294 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col1\" class=\"data row294 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col2\" class=\"data row294 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col3\" class=\"data row294 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col4\" class=\"data row294 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col5\" class=\"data row294 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col6\" class=\"data row294 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row294_col7\" class=\"data row294 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row295\" class=\"row_heading level0 row295\" >(24, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col0\" class=\"data row295 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col1\" class=\"data row295 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col2\" class=\"data row295 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col3\" class=\"data row295 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col4\" class=\"data row295 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col5\" class=\"data row295 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col6\" class=\"data row295 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row295_col7\" class=\"data row295 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row296\" class=\"row_heading level0 row296\" >(24, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col0\" class=\"data row296 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col1\" class=\"data row296 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col2\" class=\"data row296 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col3\" class=\"data row296 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col4\" class=\"data row296 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col5\" class=\"data row296 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col6\" class=\"data row296 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row296_col7\" class=\"data row296 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row297\" class=\"row_heading level0 row297\" >(24, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col0\" class=\"data row297 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col1\" class=\"data row297 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col2\" class=\"data row297 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col3\" class=\"data row297 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col4\" class=\"data row297 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col5\" class=\"data row297 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col6\" class=\"data row297 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row297_col7\" class=\"data row297 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row298\" class=\"row_heading level0 row298\" >(24, 22)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col0\" class=\"data row298 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col1\" class=\"data row298 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col2\" class=\"data row298 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col3\" class=\"data row298 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col4\" class=\"data row298 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col5\" class=\"data row298 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col6\" class=\"data row298 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row298_col7\" class=\"data row298 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row299\" class=\"row_heading level0 row299\" >(24, 23)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col0\" class=\"data row299 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col1\" class=\"data row299 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col2\" class=\"data row299 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col3\" class=\"data row299 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col4\" class=\"data row299 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col5\" class=\"data row299 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col6\" class=\"data row299 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row299_col7\" class=\"data row299 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row300\" class=\"row_heading level0 row300\" >(25, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col0\" class=\"data row300 col0\" >321</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col1\" class=\"data row300 col1\" >321</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col2\" class=\"data row300 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col3\" class=\"data row300 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col4\" class=\"data row300 col4\" >3023</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col5\" class=\"data row300 col5\" >3023</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col6\" class=\"data row300 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row300_col7\" class=\"data row300 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row301\" class=\"row_heading level0 row301\" >(25, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col0\" class=\"data row301 col0\" >569</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col1\" class=\"data row301 col1\" >569</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col2\" class=\"data row301 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col3\" class=\"data row301 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col4\" class=\"data row301 col4\" >8362</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col5\" class=\"data row301 col5\" >8362</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col6\" class=\"data row301 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row301_col7\" class=\"data row301 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row302\" class=\"row_heading level0 row302\" >(25, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col0\" class=\"data row302 col0\" >391</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col1\" class=\"data row302 col1\" >391</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col2\" class=\"data row302 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col3\" class=\"data row302 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col4\" class=\"data row302 col4\" >5848</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col5\" class=\"data row302 col5\" >5848</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col6\" class=\"data row302 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row302_col7\" class=\"data row302 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row303\" class=\"row_heading level0 row303\" >(25, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col0\" class=\"data row303 col0\" >103</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col1\" class=\"data row303 col1\" >103</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col2\" class=\"data row303 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col3\" class=\"data row303 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col4\" class=\"data row303 col4\" >677</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col5\" class=\"data row303 col5\" >677</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col6\" class=\"data row303 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row303_col7\" class=\"data row303 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row304\" class=\"row_heading level0 row304\" >(25, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col0\" class=\"data row304 col0\" >84</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col1\" class=\"data row304 col1\" >84</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col2\" class=\"data row304 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col3\" class=\"data row304 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col4\" class=\"data row304 col4\" >602</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col5\" class=\"data row304 col5\" >602</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col6\" class=\"data row304 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row304_col7\" class=\"data row304 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row305\" class=\"row_heading level0 row305\" >(25, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col0\" class=\"data row305 col0\" >115</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col1\" class=\"data row305 col1\" >115</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col2\" class=\"data row305 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col3\" class=\"data row305 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col4\" class=\"data row305 col4\" >1009</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col5\" class=\"data row305 col5\" >1009</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col6\" class=\"data row305 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row305_col7\" class=\"data row305 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row306\" class=\"row_heading level0 row306\" >(25, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col0\" class=\"data row306 col0\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col1\" class=\"data row306 col1\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col2\" class=\"data row306 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col3\" class=\"data row306 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col4\" class=\"data row306 col4\" >58</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col5\" class=\"data row306 col5\" >58</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col6\" class=\"data row306 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row306_col7\" class=\"data row306 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row307\" class=\"row_heading level0 row307\" >(25, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col0\" class=\"data row307 col0\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col1\" class=\"data row307 col1\" >31</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col2\" class=\"data row307 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col3\" class=\"data row307 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col4\" class=\"data row307 col4\" >97</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col5\" class=\"data row307 col5\" >97</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col6\" class=\"data row307 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row307_col7\" class=\"data row307 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row308\" class=\"row_heading level0 row308\" >(25, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col0\" class=\"data row308 col0\" >25</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col1\" class=\"data row308 col1\" >25</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col2\" class=\"data row308 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col3\" class=\"data row308 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col4\" class=\"data row308 col4\" >5</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col5\" class=\"data row308 col5\" >5</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col6\" class=\"data row308 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row308_col7\" class=\"data row308 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row309\" class=\"row_heading level0 row309\" >(25, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col0\" class=\"data row309 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col1\" class=\"data row309 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col2\" class=\"data row309 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col3\" class=\"data row309 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col4\" class=\"data row309 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col5\" class=\"data row309 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col6\" class=\"data row309 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row309_col7\" class=\"data row309 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row310\" class=\"row_heading level0 row310\" >(25, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col0\" class=\"data row310 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col1\" class=\"data row310 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col2\" class=\"data row310 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col3\" class=\"data row310 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col4\" class=\"data row310 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col5\" class=\"data row310 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col6\" class=\"data row310 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row310_col7\" class=\"data row310 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row311\" class=\"row_heading level0 row311\" >(25, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col0\" class=\"data row311 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col1\" class=\"data row311 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col2\" class=\"data row311 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col3\" class=\"data row311 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col4\" class=\"data row311 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col5\" class=\"data row311 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col6\" class=\"data row311 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row311_col7\" class=\"data row311 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row312\" class=\"row_heading level0 row312\" >(25, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col0\" class=\"data row312 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col1\" class=\"data row312 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col2\" class=\"data row312 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col3\" class=\"data row312 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col4\" class=\"data row312 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col5\" class=\"data row312 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col6\" class=\"data row312 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row312_col7\" class=\"data row312 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row313\" class=\"row_heading level0 row313\" >(25, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col0\" class=\"data row313 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col1\" class=\"data row313 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col2\" class=\"data row313 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col3\" class=\"data row313 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col4\" class=\"data row313 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col5\" class=\"data row313 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col6\" class=\"data row313 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row313_col7\" class=\"data row313 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row314\" class=\"row_heading level0 row314\" >(25, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col0\" class=\"data row314 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col1\" class=\"data row314 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col2\" class=\"data row314 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col3\" class=\"data row314 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col4\" class=\"data row314 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col5\" class=\"data row314 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col6\" class=\"data row314 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row314_col7\" class=\"data row314 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row315\" class=\"row_heading level0 row315\" >(25, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col0\" class=\"data row315 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col1\" class=\"data row315 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col2\" class=\"data row315 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col3\" class=\"data row315 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col4\" class=\"data row315 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col5\" class=\"data row315 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col6\" class=\"data row315 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row315_col7\" class=\"data row315 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row316\" class=\"row_heading level0 row316\" >(25, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col0\" class=\"data row316 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col1\" class=\"data row316 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col2\" class=\"data row316 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col3\" class=\"data row316 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col4\" class=\"data row316 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col5\" class=\"data row316 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col6\" class=\"data row316 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row316_col7\" class=\"data row316 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row317\" class=\"row_heading level0 row317\" >(25, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col0\" class=\"data row317 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col1\" class=\"data row317 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col2\" class=\"data row317 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col3\" class=\"data row317 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col4\" class=\"data row317 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col5\" class=\"data row317 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col6\" class=\"data row317 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row317_col7\" class=\"data row317 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row318\" class=\"row_heading level0 row318\" >(25, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col0\" class=\"data row318 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col1\" class=\"data row318 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col2\" class=\"data row318 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col3\" class=\"data row318 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col4\" class=\"data row318 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col5\" class=\"data row318 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col6\" class=\"data row318 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row318_col7\" class=\"data row318 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row319\" class=\"row_heading level0 row319\" >(25, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col0\" class=\"data row319 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col1\" class=\"data row319 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col2\" class=\"data row319 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col3\" class=\"data row319 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col4\" class=\"data row319 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col5\" class=\"data row319 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col6\" class=\"data row319 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row319_col7\" class=\"data row319 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row320\" class=\"row_heading level0 row320\" >(25, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col0\" class=\"data row320 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col1\" class=\"data row320 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col2\" class=\"data row320 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col3\" class=\"data row320 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col4\" class=\"data row320 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col5\" class=\"data row320 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col6\" class=\"data row320 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row320_col7\" class=\"data row320 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row321\" class=\"row_heading level0 row321\" >(25, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col0\" class=\"data row321 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col1\" class=\"data row321 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col2\" class=\"data row321 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col3\" class=\"data row321 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col4\" class=\"data row321 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col5\" class=\"data row321 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col6\" class=\"data row321 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row321_col7\" class=\"data row321 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row322\" class=\"row_heading level0 row322\" >(25, 22)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col0\" class=\"data row322 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col1\" class=\"data row322 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col2\" class=\"data row322 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col3\" class=\"data row322 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col4\" class=\"data row322 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col5\" class=\"data row322 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col6\" class=\"data row322 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row322_col7\" class=\"data row322 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row323\" class=\"row_heading level0 row323\" >(25, 23)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col0\" class=\"data row323 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col1\" class=\"data row323 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col2\" class=\"data row323 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col3\" class=\"data row323 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col4\" class=\"data row323 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col5\" class=\"data row323 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col6\" class=\"data row323 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row323_col7\" class=\"data row323 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row324\" class=\"row_heading level0 row324\" >(25, 24)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col0\" class=\"data row324 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col1\" class=\"data row324 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col2\" class=\"data row324 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col3\" class=\"data row324 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col4\" class=\"data row324 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col5\" class=\"data row324 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col6\" class=\"data row324 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row324_col7\" class=\"data row324 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row325\" class=\"row_heading level0 row325\" >(26, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col0\" class=\"data row325 col0\" >848</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col1\" class=\"data row325 col1\" >848</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col2\" class=\"data row325 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col3\" class=\"data row325 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col4\" class=\"data row325 col4\" >22905</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col5\" class=\"data row325 col5\" >22905</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col6\" class=\"data row325 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row325_col7\" class=\"data row325 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row326\" class=\"row_heading level0 row326\" >(26, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col0\" class=\"data row326 col0\" >796</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col1\" class=\"data row326 col1\" >796</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col2\" class=\"data row326 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col3\" class=\"data row326 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col4\" class=\"data row326 col4\" >21753</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col5\" class=\"data row326 col5\" >21753</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col6\" class=\"data row326 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row326_col7\" class=\"data row326 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row327\" class=\"row_heading level0 row327\" >(26, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col0\" class=\"data row327 col0\" >566</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col1\" class=\"data row327 col1\" >566</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col2\" class=\"data row327 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col3\" class=\"data row327 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col4\" class=\"data row327 col4\" >9860</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col5\" class=\"data row327 col5\" >9860</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col6\" class=\"data row327 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row327_col7\" class=\"data row327 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row328\" class=\"row_heading level0 row328\" >(26, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col0\" class=\"data row328 col0\" >276</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col1\" class=\"data row328 col1\" >276</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col2\" class=\"data row328 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col3\" class=\"data row328 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col4\" class=\"data row328 col4\" >3559</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col5\" class=\"data row328 col5\" >3559</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col6\" class=\"data row328 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row328_col7\" class=\"data row328 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row329\" class=\"row_heading level0 row329\" >(26, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col0\" class=\"data row329 col0\" >180</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col1\" class=\"data row329 col1\" >180</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col2\" class=\"data row329 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col3\" class=\"data row329 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col4\" class=\"data row329 col4\" >1865</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col5\" class=\"data row329 col5\" >1865</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col6\" class=\"data row329 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row329_col7\" class=\"data row329 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row330\" class=\"row_heading level0 row330\" >(26, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col0\" class=\"data row330 col0\" >93</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col1\" class=\"data row330 col1\" >93</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col2\" class=\"data row330 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col3\" class=\"data row330 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col4\" class=\"data row330 col4\" >660</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col5\" class=\"data row330 col5\" >660</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col6\" class=\"data row330 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row330_col7\" class=\"data row330 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row331\" class=\"row_heading level0 row331\" >(26, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col0\" class=\"data row331 col0\" >154</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col1\" class=\"data row331 col1\" >154</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col2\" class=\"data row331 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col3\" class=\"data row331 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col4\" class=\"data row331 col4\" >477</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col5\" class=\"data row331 col5\" >477</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col6\" class=\"data row331 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row331_col7\" class=\"data row331 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row332\" class=\"row_heading level0 row332\" >(26, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col0\" class=\"data row332 col0\" >41</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col1\" class=\"data row332 col1\" >41</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col2\" class=\"data row332 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col3\" class=\"data row332 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col4\" class=\"data row332 col4\" >59</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col5\" class=\"data row332 col5\" >59</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col6\" class=\"data row332 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row332_col7\" class=\"data row332 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row333\" class=\"row_heading level0 row333\" >(26, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col0\" class=\"data row333 col0\" >34</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col1\" class=\"data row333 col1\" >34</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col2\" class=\"data row333 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col3\" class=\"data row333 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col4\" class=\"data row333 col4\" >109</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col5\" class=\"data row333 col5\" >109</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col6\" class=\"data row333 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row333_col7\" class=\"data row333 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row334\" class=\"row_heading level0 row334\" >(26, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col0\" class=\"data row334 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col1\" class=\"data row334 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col2\" class=\"data row334 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col3\" class=\"data row334 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col4\" class=\"data row334 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col5\" class=\"data row334 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col6\" class=\"data row334 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row334_col7\" class=\"data row334 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row335\" class=\"row_heading level0 row335\" >(26, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col0\" class=\"data row335 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col1\" class=\"data row335 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col2\" class=\"data row335 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col3\" class=\"data row335 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col4\" class=\"data row335 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col5\" class=\"data row335 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col6\" class=\"data row335 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row335_col7\" class=\"data row335 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row336\" class=\"row_heading level0 row336\" >(26, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col0\" class=\"data row336 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col1\" class=\"data row336 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col2\" class=\"data row336 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col3\" class=\"data row336 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col4\" class=\"data row336 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col5\" class=\"data row336 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col6\" class=\"data row336 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row336_col7\" class=\"data row336 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row337\" class=\"row_heading level0 row337\" >(26, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col0\" class=\"data row337 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col1\" class=\"data row337 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col2\" class=\"data row337 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col3\" class=\"data row337 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col4\" class=\"data row337 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col5\" class=\"data row337 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col6\" class=\"data row337 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row337_col7\" class=\"data row337 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row338\" class=\"row_heading level0 row338\" >(26, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col0\" class=\"data row338 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col1\" class=\"data row338 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col2\" class=\"data row338 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col3\" class=\"data row338 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col4\" class=\"data row338 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col5\" class=\"data row338 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col6\" class=\"data row338 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row338_col7\" class=\"data row338 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row339\" class=\"row_heading level0 row339\" >(26, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col0\" class=\"data row339 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col1\" class=\"data row339 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col2\" class=\"data row339 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col3\" class=\"data row339 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col4\" class=\"data row339 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col5\" class=\"data row339 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col6\" class=\"data row339 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row339_col7\" class=\"data row339 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row340\" class=\"row_heading level0 row340\" >(26, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col0\" class=\"data row340 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col1\" class=\"data row340 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col2\" class=\"data row340 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col3\" class=\"data row340 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col4\" class=\"data row340 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col5\" class=\"data row340 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col6\" class=\"data row340 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row340_col7\" class=\"data row340 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row341\" class=\"row_heading level0 row341\" >(26, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col0\" class=\"data row341 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col1\" class=\"data row341 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col2\" class=\"data row341 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col3\" class=\"data row341 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col4\" class=\"data row341 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col5\" class=\"data row341 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col6\" class=\"data row341 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row341_col7\" class=\"data row341 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row342\" class=\"row_heading level0 row342\" >(26, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col0\" class=\"data row342 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col1\" class=\"data row342 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col2\" class=\"data row342 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col3\" class=\"data row342 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col4\" class=\"data row342 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col5\" class=\"data row342 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col6\" class=\"data row342 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row342_col7\" class=\"data row342 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row343\" class=\"row_heading level0 row343\" >(26, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col0\" class=\"data row343 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col1\" class=\"data row343 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col2\" class=\"data row343 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col3\" class=\"data row343 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col4\" class=\"data row343 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col5\" class=\"data row343 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col6\" class=\"data row343 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row343_col7\" class=\"data row343 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row344\" class=\"row_heading level0 row344\" >(26, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col0\" class=\"data row344 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col1\" class=\"data row344 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col2\" class=\"data row344 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col3\" class=\"data row344 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col4\" class=\"data row344 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col5\" class=\"data row344 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col6\" class=\"data row344 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row344_col7\" class=\"data row344 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row345\" class=\"row_heading level0 row345\" >(26, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col0\" class=\"data row345 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col1\" class=\"data row345 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col2\" class=\"data row345 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col3\" class=\"data row345 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col4\" class=\"data row345 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col5\" class=\"data row345 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col6\" class=\"data row345 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row345_col7\" class=\"data row345 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row346\" class=\"row_heading level0 row346\" >(26, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col0\" class=\"data row346 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col1\" class=\"data row346 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col2\" class=\"data row346 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col3\" class=\"data row346 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col4\" class=\"data row346 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col5\" class=\"data row346 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col6\" class=\"data row346 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row346_col7\" class=\"data row346 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row347\" class=\"row_heading level0 row347\" >(26, 22)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col0\" class=\"data row347 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col1\" class=\"data row347 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col2\" class=\"data row347 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col3\" class=\"data row347 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col4\" class=\"data row347 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col5\" class=\"data row347 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col6\" class=\"data row347 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row347_col7\" class=\"data row347 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row348\" class=\"row_heading level0 row348\" >(26, 23)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col0\" class=\"data row348 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col1\" class=\"data row348 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col2\" class=\"data row348 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col3\" class=\"data row348 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col4\" class=\"data row348 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col5\" class=\"data row348 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col6\" class=\"data row348 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row348_col7\" class=\"data row348 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row349\" class=\"row_heading level0 row349\" >(26, 24)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col0\" class=\"data row349 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col1\" class=\"data row349 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col2\" class=\"data row349 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col3\" class=\"data row349 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col4\" class=\"data row349 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col5\" class=\"data row349 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col6\" class=\"data row349 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row349_col7\" class=\"data row349 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row350\" class=\"row_heading level0 row350\" >(26, 25)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col0\" class=\"data row350 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col1\" class=\"data row350 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col2\" class=\"data row350 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col3\" class=\"data row350 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col4\" class=\"data row350 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col5\" class=\"data row350 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col6\" class=\"data row350 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row350_col7\" class=\"data row350 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row351\" class=\"row_heading level0 row351\" >(27, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col0\" class=\"data row351 col0\" >317</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col1\" class=\"data row351 col1\" >317</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col2\" class=\"data row351 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col3\" class=\"data row351 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col4\" class=\"data row351 col4\" >5298</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col5\" class=\"data row351 col5\" >5298</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col6\" class=\"data row351 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row351_col7\" class=\"data row351 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row352\" class=\"row_heading level0 row352\" >(27, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col0\" class=\"data row352 col0\" >256</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col1\" class=\"data row352 col1\" >256</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col2\" class=\"data row352 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col3\" class=\"data row352 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col4\" class=\"data row352 col4\" >2853</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col5\" class=\"data row352 col5\" >2853</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col6\" class=\"data row352 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row352_col7\" class=\"data row352 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row353\" class=\"row_heading level0 row353\" >(27, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col0\" class=\"data row353 col0\" >213</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col1\" class=\"data row353 col1\" >213</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col2\" class=\"data row353 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col3\" class=\"data row353 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col4\" class=\"data row353 col4\" >2247</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col5\" class=\"data row353 col5\" >2247</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col6\" class=\"data row353 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row353_col7\" class=\"data row353 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row354\" class=\"row_heading level0 row354\" >(27, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col0\" class=\"data row354 col0\" >296</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col1\" class=\"data row354 col1\" >296</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col2\" class=\"data row354 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col3\" class=\"data row354 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col4\" class=\"data row354 col4\" >4092</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col5\" class=\"data row354 col5\" >4092</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col6\" class=\"data row354 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row354_col7\" class=\"data row354 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row355\" class=\"row_heading level0 row355\" >(27, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col0\" class=\"data row355 col0\" >267</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col1\" class=\"data row355 col1\" >267</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col2\" class=\"data row355 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col3\" class=\"data row355 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col4\" class=\"data row355 col4\" >3542</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col5\" class=\"data row355 col5\" >3542</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col6\" class=\"data row355 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row355_col7\" class=\"data row355 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row356\" class=\"row_heading level0 row356\" >(27, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col0\" class=\"data row356 col0\" >179</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col1\" class=\"data row356 col1\" >179</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col2\" class=\"data row356 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col3\" class=\"data row356 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col4\" class=\"data row356 col4\" >1907</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col5\" class=\"data row356 col5\" >1907</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col6\" class=\"data row356 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row356_col7\" class=\"data row356 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row357\" class=\"row_heading level0 row357\" >(27, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col0\" class=\"data row357 col0\" >63</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col1\" class=\"data row357 col1\" >63</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col2\" class=\"data row357 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col3\" class=\"data row357 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col4\" class=\"data row357 col4\" >289</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col5\" class=\"data row357 col5\" >289</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col6\" class=\"data row357 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row357_col7\" class=\"data row357 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row358\" class=\"row_heading level0 row358\" >(27, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col0\" class=\"data row358 col0\" >72</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col1\" class=\"data row358 col1\" >72</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col2\" class=\"data row358 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col3\" class=\"data row358 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col4\" class=\"data row358 col4\" >234</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col5\" class=\"data row358 col5\" >234</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col6\" class=\"data row358 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row358_col7\" class=\"data row358 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row359\" class=\"row_heading level0 row359\" >(27, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col0\" class=\"data row359 col0\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col1\" class=\"data row359 col1\" >39</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col2\" class=\"data row359 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col3\" class=\"data row359 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col4\" class=\"data row359 col4\" >48</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col5\" class=\"data row359 col5\" >48</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col6\" class=\"data row359 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row359_col7\" class=\"data row359 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row360\" class=\"row_heading level0 row360\" >(27, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col0\" class=\"data row360 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col1\" class=\"data row360 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col2\" class=\"data row360 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col3\" class=\"data row360 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col4\" class=\"data row360 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col5\" class=\"data row360 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col6\" class=\"data row360 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row360_col7\" class=\"data row360 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row361\" class=\"row_heading level0 row361\" >(27, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col0\" class=\"data row361 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col1\" class=\"data row361 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col2\" class=\"data row361 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col3\" class=\"data row361 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col4\" class=\"data row361 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col5\" class=\"data row361 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col6\" class=\"data row361 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row361_col7\" class=\"data row361 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row362\" class=\"row_heading level0 row362\" >(27, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col0\" class=\"data row362 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col1\" class=\"data row362 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col2\" class=\"data row362 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col3\" class=\"data row362 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col4\" class=\"data row362 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col5\" class=\"data row362 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col6\" class=\"data row362 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row362_col7\" class=\"data row362 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row363\" class=\"row_heading level0 row363\" >(27, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col0\" class=\"data row363 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col1\" class=\"data row363 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col2\" class=\"data row363 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col3\" class=\"data row363 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col4\" class=\"data row363 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col5\" class=\"data row363 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col6\" class=\"data row363 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row363_col7\" class=\"data row363 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row364\" class=\"row_heading level0 row364\" >(27, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col0\" class=\"data row364 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col1\" class=\"data row364 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col2\" class=\"data row364 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col3\" class=\"data row364 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col4\" class=\"data row364 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col5\" class=\"data row364 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col6\" class=\"data row364 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row364_col7\" class=\"data row364 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row365\" class=\"row_heading level0 row365\" >(27, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col0\" class=\"data row365 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col1\" class=\"data row365 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col2\" class=\"data row365 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col3\" class=\"data row365 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col4\" class=\"data row365 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col5\" class=\"data row365 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col6\" class=\"data row365 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row365_col7\" class=\"data row365 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row366\" class=\"row_heading level0 row366\" >(27, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col0\" class=\"data row366 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col1\" class=\"data row366 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col2\" class=\"data row366 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col3\" class=\"data row366 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col4\" class=\"data row366 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col5\" class=\"data row366 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col6\" class=\"data row366 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row366_col7\" class=\"data row366 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row367\" class=\"row_heading level0 row367\" >(27, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col0\" class=\"data row367 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col1\" class=\"data row367 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col2\" class=\"data row367 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col3\" class=\"data row367 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col4\" class=\"data row367 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col5\" class=\"data row367 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col6\" class=\"data row367 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row367_col7\" class=\"data row367 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row368\" class=\"row_heading level0 row368\" >(27, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col0\" class=\"data row368 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col1\" class=\"data row368 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col2\" class=\"data row368 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col3\" class=\"data row368 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col4\" class=\"data row368 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col5\" class=\"data row368 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col6\" class=\"data row368 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row368_col7\" class=\"data row368 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row369\" class=\"row_heading level0 row369\" >(27, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col0\" class=\"data row369 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col1\" class=\"data row369 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col2\" class=\"data row369 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col3\" class=\"data row369 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col4\" class=\"data row369 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col5\" class=\"data row369 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col6\" class=\"data row369 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row369_col7\" class=\"data row369 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row370\" class=\"row_heading level0 row370\" >(27, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col0\" class=\"data row370 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col1\" class=\"data row370 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col2\" class=\"data row370 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col3\" class=\"data row370 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col4\" class=\"data row370 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col5\" class=\"data row370 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col6\" class=\"data row370 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row370_col7\" class=\"data row370 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row371\" class=\"row_heading level0 row371\" >(27, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col0\" class=\"data row371 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col1\" class=\"data row371 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col2\" class=\"data row371 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col3\" class=\"data row371 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col4\" class=\"data row371 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col5\" class=\"data row371 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col6\" class=\"data row371 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row371_col7\" class=\"data row371 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row372\" class=\"row_heading level0 row372\" >(27, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col0\" class=\"data row372 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col1\" class=\"data row372 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col2\" class=\"data row372 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col3\" class=\"data row372 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col4\" class=\"data row372 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col5\" class=\"data row372 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col6\" class=\"data row372 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row372_col7\" class=\"data row372 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row373\" class=\"row_heading level0 row373\" >(27, 22)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col0\" class=\"data row373 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col1\" class=\"data row373 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col2\" class=\"data row373 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col3\" class=\"data row373 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col4\" class=\"data row373 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col5\" class=\"data row373 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col6\" class=\"data row373 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row373_col7\" class=\"data row373 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row374\" class=\"row_heading level0 row374\" >(27, 23)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col0\" class=\"data row374 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col1\" class=\"data row374 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col2\" class=\"data row374 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col3\" class=\"data row374 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col4\" class=\"data row374 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col5\" class=\"data row374 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col6\" class=\"data row374 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row374_col7\" class=\"data row374 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row375\" class=\"row_heading level0 row375\" >(27, 24)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col0\" class=\"data row375 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col1\" class=\"data row375 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col2\" class=\"data row375 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col3\" class=\"data row375 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col4\" class=\"data row375 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col5\" class=\"data row375 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col6\" class=\"data row375 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row375_col7\" class=\"data row375 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row376\" class=\"row_heading level0 row376\" >(27, 25)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col0\" class=\"data row376 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col1\" class=\"data row376 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col2\" class=\"data row376 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col3\" class=\"data row376 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col4\" class=\"data row376 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col5\" class=\"data row376 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col6\" class=\"data row376 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row376_col7\" class=\"data row376 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row377\" class=\"row_heading level0 row377\" >(27, 26)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col0\" class=\"data row377 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col1\" class=\"data row377 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col2\" class=\"data row377 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col3\" class=\"data row377 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col4\" class=\"data row377 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col5\" class=\"data row377 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col6\" class=\"data row377 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row377_col7\" class=\"data row377 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row378\" class=\"row_heading level0 row378\" >(28, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col0\" class=\"data row378 col0\" >180</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col1\" class=\"data row378 col1\" >180</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col2\" class=\"data row378 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col3\" class=\"data row378 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col4\" class=\"data row378 col4\" >2671</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col5\" class=\"data row378 col5\" >2671</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col6\" class=\"data row378 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row378_col7\" class=\"data row378 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row379\" class=\"row_heading level0 row379\" >(28, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col0\" class=\"data row379 col0\" >717</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col1\" class=\"data row379 col1\" >717</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col2\" class=\"data row379 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col3\" class=\"data row379 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col4\" class=\"data row379 col4\" >17150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col5\" class=\"data row379 col5\" >17150</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col6\" class=\"data row379 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row379_col7\" class=\"data row379 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row380\" class=\"row_heading level0 row380\" >(28, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col0\" class=\"data row380 col0\" >344</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col1\" class=\"data row380 col1\" >344</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col2\" class=\"data row380 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col3\" class=\"data row380 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col4\" class=\"data row380 col4\" >5456</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col5\" class=\"data row380 col5\" >5456</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col6\" class=\"data row380 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row380_col7\" class=\"data row380 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row381\" class=\"row_heading level0 row381\" >(28, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col0\" class=\"data row381 col0\" >235</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col1\" class=\"data row381 col1\" >235</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col2\" class=\"data row381 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col3\" class=\"data row381 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col4\" class=\"data row381 col4\" >2712</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col5\" class=\"data row381 col5\" >2712</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col6\" class=\"data row381 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row381_col7\" class=\"data row381 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row382\" class=\"row_heading level0 row382\" >(28, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col0\" class=\"data row382 col0\" >323</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col1\" class=\"data row382 col1\" >323</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col2\" class=\"data row382 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col3\" class=\"data row382 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col4\" class=\"data row382 col4\" >4733</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col5\" class=\"data row382 col5\" >4733</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col6\" class=\"data row382 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row382_col7\" class=\"data row382 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row383\" class=\"row_heading level0 row383\" >(28, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col0\" class=\"data row383 col0\" >272</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col1\" class=\"data row383 col1\" >272</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col2\" class=\"data row383 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col3\" class=\"data row383 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col4\" class=\"data row383 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col5\" class=\"data row383 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col6\" class=\"data row383 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row383_col7\" class=\"data row383 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row384\" class=\"row_heading level0 row384\" >(28, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col0\" class=\"data row384 col0\" >44</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col1\" class=\"data row384 col1\" >44</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col2\" class=\"data row384 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col3\" class=\"data row384 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col4\" class=\"data row384 col4\" >174</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col5\" class=\"data row384 col5\" >174</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col6\" class=\"data row384 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row384_col7\" class=\"data row384 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row385\" class=\"row_heading level0 row385\" >(28, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col0\" class=\"data row385 col0\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col1\" class=\"data row385 col1\" >43</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col2\" class=\"data row385 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col3\" class=\"data row385 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col4\" class=\"data row385 col4\" >153</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col5\" class=\"data row385 col5\" >153</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col6\" class=\"data row385 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row385_col7\" class=\"data row385 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row386\" class=\"row_heading level0 row386\" >(28, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col0\" class=\"data row386 col0\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col1\" class=\"data row386 col1\" >26</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col2\" class=\"data row386 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col3\" class=\"data row386 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col4\" class=\"data row386 col4\" >66</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col5\" class=\"data row386 col5\" >66</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col6\" class=\"data row386 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row386_col7\" class=\"data row386 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row387\" class=\"row_heading level0 row387\" >(28, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col0\" class=\"data row387 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col1\" class=\"data row387 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col2\" class=\"data row387 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col3\" class=\"data row387 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col4\" class=\"data row387 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col5\" class=\"data row387 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col6\" class=\"data row387 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row387_col7\" class=\"data row387 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row388\" class=\"row_heading level0 row388\" >(28, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col0\" class=\"data row388 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col1\" class=\"data row388 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col2\" class=\"data row388 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col3\" class=\"data row388 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col4\" class=\"data row388 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col5\" class=\"data row388 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col6\" class=\"data row388 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row388_col7\" class=\"data row388 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row389\" class=\"row_heading level0 row389\" >(28, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col0\" class=\"data row389 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col1\" class=\"data row389 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col2\" class=\"data row389 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col3\" class=\"data row389 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col4\" class=\"data row389 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col5\" class=\"data row389 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col6\" class=\"data row389 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row389_col7\" class=\"data row389 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row390\" class=\"row_heading level0 row390\" >(28, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col0\" class=\"data row390 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col1\" class=\"data row390 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col2\" class=\"data row390 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col3\" class=\"data row390 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col4\" class=\"data row390 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col5\" class=\"data row390 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col6\" class=\"data row390 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row390_col7\" class=\"data row390 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row391\" class=\"row_heading level0 row391\" >(28, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col0\" class=\"data row391 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col1\" class=\"data row391 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col2\" class=\"data row391 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col3\" class=\"data row391 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col4\" class=\"data row391 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col5\" class=\"data row391 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col6\" class=\"data row391 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row391_col7\" class=\"data row391 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row392\" class=\"row_heading level0 row392\" >(28, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col0\" class=\"data row392 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col1\" class=\"data row392 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col2\" class=\"data row392 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col3\" class=\"data row392 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col4\" class=\"data row392 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col5\" class=\"data row392 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col6\" class=\"data row392 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row392_col7\" class=\"data row392 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row393\" class=\"row_heading level0 row393\" >(28, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col0\" class=\"data row393 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col1\" class=\"data row393 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col2\" class=\"data row393 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col3\" class=\"data row393 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col4\" class=\"data row393 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col5\" class=\"data row393 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col6\" class=\"data row393 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row393_col7\" class=\"data row393 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row394\" class=\"row_heading level0 row394\" >(28, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col0\" class=\"data row394 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col1\" class=\"data row394 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col2\" class=\"data row394 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col3\" class=\"data row394 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col4\" class=\"data row394 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col5\" class=\"data row394 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col6\" class=\"data row394 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row394_col7\" class=\"data row394 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row395\" class=\"row_heading level0 row395\" >(28, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col0\" class=\"data row395 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col1\" class=\"data row395 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col2\" class=\"data row395 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col3\" class=\"data row395 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col4\" class=\"data row395 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col5\" class=\"data row395 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col6\" class=\"data row395 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row395_col7\" class=\"data row395 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row396\" class=\"row_heading level0 row396\" >(28, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col0\" class=\"data row396 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col1\" class=\"data row396 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col2\" class=\"data row396 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col3\" class=\"data row396 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col4\" class=\"data row396 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col5\" class=\"data row396 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col6\" class=\"data row396 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row396_col7\" class=\"data row396 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row397\" class=\"row_heading level0 row397\" >(28, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col0\" class=\"data row397 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col1\" class=\"data row397 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col2\" class=\"data row397 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col3\" class=\"data row397 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col4\" class=\"data row397 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col5\" class=\"data row397 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col6\" class=\"data row397 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row397_col7\" class=\"data row397 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row398\" class=\"row_heading level0 row398\" >(28, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col0\" class=\"data row398 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col1\" class=\"data row398 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col2\" class=\"data row398 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col3\" class=\"data row398 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col4\" class=\"data row398 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col5\" class=\"data row398 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col6\" class=\"data row398 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row398_col7\" class=\"data row398 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row399\" class=\"row_heading level0 row399\" >(28, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col0\" class=\"data row399 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col1\" class=\"data row399 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col2\" class=\"data row399 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col3\" class=\"data row399 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col4\" class=\"data row399 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col5\" class=\"data row399 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col6\" class=\"data row399 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row399_col7\" class=\"data row399 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row400\" class=\"row_heading level0 row400\" >(28, 22)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col0\" class=\"data row400 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col1\" class=\"data row400 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col2\" class=\"data row400 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col3\" class=\"data row400 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col4\" class=\"data row400 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col5\" class=\"data row400 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col6\" class=\"data row400 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row400_col7\" class=\"data row400 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row401\" class=\"row_heading level0 row401\" >(28, 23)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col0\" class=\"data row401 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col1\" class=\"data row401 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col2\" class=\"data row401 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col3\" class=\"data row401 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col4\" class=\"data row401 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col5\" class=\"data row401 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col6\" class=\"data row401 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row401_col7\" class=\"data row401 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row402\" class=\"row_heading level0 row402\" >(28, 24)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col0\" class=\"data row402 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col1\" class=\"data row402 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col2\" class=\"data row402 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col3\" class=\"data row402 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col4\" class=\"data row402 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col5\" class=\"data row402 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col6\" class=\"data row402 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row402_col7\" class=\"data row402 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row403\" class=\"row_heading level0 row403\" >(28, 25)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col0\" class=\"data row403 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col1\" class=\"data row403 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col2\" class=\"data row403 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col3\" class=\"data row403 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col4\" class=\"data row403 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col5\" class=\"data row403 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col6\" class=\"data row403 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row403_col7\" class=\"data row403 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row404\" class=\"row_heading level0 row404\" >(28, 26)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col0\" class=\"data row404 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col1\" class=\"data row404 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col2\" class=\"data row404 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col3\" class=\"data row404 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col4\" class=\"data row404 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col5\" class=\"data row404 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col6\" class=\"data row404 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row404_col7\" class=\"data row404 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row405\" class=\"row_heading level0 row405\" >(28, 27)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col0\" class=\"data row405 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col1\" class=\"data row405 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col2\" class=\"data row405 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col3\" class=\"data row405 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col4\" class=\"data row405 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col5\" class=\"data row405 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col6\" class=\"data row405 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row405_col7\" class=\"data row405 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row406\" class=\"row_heading level0 row406\" >(29, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col0\" class=\"data row406 col0\" >65</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col1\" class=\"data row406 col1\" >65</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col2\" class=\"data row406 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col3\" class=\"data row406 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col4\" class=\"data row406 col4\" >253</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col5\" class=\"data row406 col5\" >253</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col6\" class=\"data row406 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row406_col7\" class=\"data row406 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row407\" class=\"row_heading level0 row407\" >(29, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col0\" class=\"data row407 col0\" >245</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col1\" class=\"data row407 col1\" >245</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col2\" class=\"data row407 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col3\" class=\"data row407 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col4\" class=\"data row407 col4\" >2818</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col5\" class=\"data row407 col5\" >2818</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col6\" class=\"data row407 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row407_col7\" class=\"data row407 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row408\" class=\"row_heading level0 row408\" >(29, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col0\" class=\"data row408 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col1\" class=\"data row408 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col2\" class=\"data row408 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col3\" class=\"data row408 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col4\" class=\"data row408 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col5\" class=\"data row408 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col6\" class=\"data row408 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row408_col7\" class=\"data row408 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row409\" class=\"row_heading level0 row409\" >(29, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col0\" class=\"data row409 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col1\" class=\"data row409 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col2\" class=\"data row409 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col3\" class=\"data row409 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col4\" class=\"data row409 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col5\" class=\"data row409 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col6\" class=\"data row409 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row409_col7\" class=\"data row409 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row410\" class=\"row_heading level0 row410\" >(29, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col0\" class=\"data row410 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col1\" class=\"data row410 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col2\" class=\"data row410 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col3\" class=\"data row410 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col4\" class=\"data row410 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col5\" class=\"data row410 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col6\" class=\"data row410 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row410_col7\" class=\"data row410 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row411\" class=\"row_heading level0 row411\" >(29, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col0\" class=\"data row411 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col1\" class=\"data row411 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col2\" class=\"data row411 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col3\" class=\"data row411 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col4\" class=\"data row411 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col5\" class=\"data row411 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col6\" class=\"data row411 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row411_col7\" class=\"data row411 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row412\" class=\"row_heading level0 row412\" >(29, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col0\" class=\"data row412 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col1\" class=\"data row412 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col2\" class=\"data row412 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col3\" class=\"data row412 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col4\" class=\"data row412 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col5\" class=\"data row412 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col6\" class=\"data row412 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row412_col7\" class=\"data row412 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row413\" class=\"row_heading level0 row413\" >(29, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col0\" class=\"data row413 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col1\" class=\"data row413 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col2\" class=\"data row413 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col3\" class=\"data row413 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col4\" class=\"data row413 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col5\" class=\"data row413 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col6\" class=\"data row413 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row413_col7\" class=\"data row413 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row414\" class=\"row_heading level0 row414\" >(29, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col0\" class=\"data row414 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col1\" class=\"data row414 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col2\" class=\"data row414 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col3\" class=\"data row414 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col4\" class=\"data row414 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col5\" class=\"data row414 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col6\" class=\"data row414 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row414_col7\" class=\"data row414 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row415\" class=\"row_heading level0 row415\" >(29, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col0\" class=\"data row415 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col1\" class=\"data row415 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col2\" class=\"data row415 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col3\" class=\"data row415 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col4\" class=\"data row415 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col5\" class=\"data row415 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col6\" class=\"data row415 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row415_col7\" class=\"data row415 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row416\" class=\"row_heading level0 row416\" >(29, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col0\" class=\"data row416 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col1\" class=\"data row416 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col2\" class=\"data row416 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col3\" class=\"data row416 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col4\" class=\"data row416 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col5\" class=\"data row416 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col6\" class=\"data row416 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row416_col7\" class=\"data row416 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row417\" class=\"row_heading level0 row417\" >(29, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col0\" class=\"data row417 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col1\" class=\"data row417 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col2\" class=\"data row417 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col3\" class=\"data row417 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col4\" class=\"data row417 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col5\" class=\"data row417 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col6\" class=\"data row417 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row417_col7\" class=\"data row417 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row418\" class=\"row_heading level0 row418\" >(29, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col0\" class=\"data row418 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col1\" class=\"data row418 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col2\" class=\"data row418 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col3\" class=\"data row418 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col4\" class=\"data row418 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col5\" class=\"data row418 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col6\" class=\"data row418 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row418_col7\" class=\"data row418 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row419\" class=\"row_heading level0 row419\" >(29, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col0\" class=\"data row419 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col1\" class=\"data row419 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col2\" class=\"data row419 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col3\" class=\"data row419 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col4\" class=\"data row419 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col5\" class=\"data row419 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col6\" class=\"data row419 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row419_col7\" class=\"data row419 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row420\" class=\"row_heading level0 row420\" >(29, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col0\" class=\"data row420 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col1\" class=\"data row420 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col2\" class=\"data row420 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col3\" class=\"data row420 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col4\" class=\"data row420 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col5\" class=\"data row420 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col6\" class=\"data row420 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row420_col7\" class=\"data row420 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row421\" class=\"row_heading level0 row421\" >(29, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col0\" class=\"data row421 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col1\" class=\"data row421 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col2\" class=\"data row421 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col3\" class=\"data row421 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col4\" class=\"data row421 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col5\" class=\"data row421 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col6\" class=\"data row421 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row421_col7\" class=\"data row421 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row422\" class=\"row_heading level0 row422\" >(29, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col0\" class=\"data row422 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col1\" class=\"data row422 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col2\" class=\"data row422 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col3\" class=\"data row422 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col4\" class=\"data row422 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col5\" class=\"data row422 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col6\" class=\"data row422 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row422_col7\" class=\"data row422 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row423\" class=\"row_heading level0 row423\" >(29, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col0\" class=\"data row423 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col1\" class=\"data row423 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col2\" class=\"data row423 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col3\" class=\"data row423 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col4\" class=\"data row423 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col5\" class=\"data row423 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col6\" class=\"data row423 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row423_col7\" class=\"data row423 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row424\" class=\"row_heading level0 row424\" >(29, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col0\" class=\"data row424 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col1\" class=\"data row424 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col2\" class=\"data row424 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col3\" class=\"data row424 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col4\" class=\"data row424 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col5\" class=\"data row424 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col6\" class=\"data row424 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row424_col7\" class=\"data row424 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row425\" class=\"row_heading level0 row425\" >(29, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col0\" class=\"data row425 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col1\" class=\"data row425 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col2\" class=\"data row425 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col3\" class=\"data row425 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col4\" class=\"data row425 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col5\" class=\"data row425 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col6\" class=\"data row425 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row425_col7\" class=\"data row425 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row426\" class=\"row_heading level0 row426\" >(29, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col0\" class=\"data row426 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col1\" class=\"data row426 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col2\" class=\"data row426 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col3\" class=\"data row426 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col4\" class=\"data row426 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col5\" class=\"data row426 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col6\" class=\"data row426 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row426_col7\" class=\"data row426 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row427\" class=\"row_heading level0 row427\" >(29, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col0\" class=\"data row427 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col1\" class=\"data row427 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col2\" class=\"data row427 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col3\" class=\"data row427 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col4\" class=\"data row427 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col5\" class=\"data row427 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col6\" class=\"data row427 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row427_col7\" class=\"data row427 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row428\" class=\"row_heading level0 row428\" >(29, 22)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col0\" class=\"data row428 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col1\" class=\"data row428 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col2\" class=\"data row428 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col3\" class=\"data row428 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col4\" class=\"data row428 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col5\" class=\"data row428 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col6\" class=\"data row428 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row428_col7\" class=\"data row428 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row429\" class=\"row_heading level0 row429\" >(29, 23)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col0\" class=\"data row429 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col1\" class=\"data row429 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col2\" class=\"data row429 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col3\" class=\"data row429 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col4\" class=\"data row429 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col5\" class=\"data row429 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col6\" class=\"data row429 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row429_col7\" class=\"data row429 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row430\" class=\"row_heading level0 row430\" >(29, 24)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col0\" class=\"data row430 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col1\" class=\"data row430 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col2\" class=\"data row430 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col3\" class=\"data row430 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col4\" class=\"data row430 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col5\" class=\"data row430 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col6\" class=\"data row430 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row430_col7\" class=\"data row430 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row431\" class=\"row_heading level0 row431\" >(29, 25)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col0\" class=\"data row431 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col1\" class=\"data row431 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col2\" class=\"data row431 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col3\" class=\"data row431 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col4\" class=\"data row431 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col5\" class=\"data row431 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col6\" class=\"data row431 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row431_col7\" class=\"data row431 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row432\" class=\"row_heading level0 row432\" >(29, 26)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col0\" class=\"data row432 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col1\" class=\"data row432 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col2\" class=\"data row432 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col3\" class=\"data row432 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col4\" class=\"data row432 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col5\" class=\"data row432 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col6\" class=\"data row432 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row432_col7\" class=\"data row432 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row433\" class=\"row_heading level0 row433\" >(29, 27)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col0\" class=\"data row433 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col1\" class=\"data row433 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col2\" class=\"data row433 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col3\" class=\"data row433 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col4\" class=\"data row433 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col5\" class=\"data row433 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col6\" class=\"data row433 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row433_col7\" class=\"data row433 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row434\" class=\"row_heading level0 row434\" >(29, 28)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col0\" class=\"data row434 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col1\" class=\"data row434 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col2\" class=\"data row434 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col3\" class=\"data row434 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col4\" class=\"data row434 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col5\" class=\"data row434 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col6\" class=\"data row434 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row434_col7\" class=\"data row434 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row435\" class=\"row_heading level0 row435\" >(30, 0)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col0\" class=\"data row435 col0\" >35</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col1\" class=\"data row435 col1\" >35</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col2\" class=\"data row435 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col3\" class=\"data row435 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col4\" class=\"data row435 col4\" >98</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col5\" class=\"data row435 col5\" >98</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col6\" class=\"data row435 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row435_col7\" class=\"data row435 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row436\" class=\"row_heading level0 row436\" >(30, 1)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col0\" class=\"data row436 col0\" >6</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col1\" class=\"data row436 col1\" >6</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col2\" class=\"data row436 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col3\" class=\"data row436 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col4\" class=\"data row436 col4\" >6</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col5\" class=\"data row436 col5\" >6</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col6\" class=\"data row436 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row436_col7\" class=\"data row436 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row437\" class=\"row_heading level0 row437\" >(30, 2)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col0\" class=\"data row437 col0\" >250</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col1\" class=\"data row437 col1\" >250</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col2\" class=\"data row437 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col3\" class=\"data row437 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col4\" class=\"data row437 col4\" >2047</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col5\" class=\"data row437 col5\" >2047</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col6\" class=\"data row437 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row437_col7\" class=\"data row437 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row438\" class=\"row_heading level0 row438\" >(30, 3)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col0\" class=\"data row438 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col1\" class=\"data row438 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col2\" class=\"data row438 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col3\" class=\"data row438 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col4\" class=\"data row438 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col5\" class=\"data row438 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col6\" class=\"data row438 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row438_col7\" class=\"data row438 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row439\" class=\"row_heading level0 row439\" >(30, 4)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col0\" class=\"data row439 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col1\" class=\"data row439 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col2\" class=\"data row439 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col3\" class=\"data row439 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col4\" class=\"data row439 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col5\" class=\"data row439 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col6\" class=\"data row439 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row439_col7\" class=\"data row439 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row440\" class=\"row_heading level0 row440\" >(30, 5)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col0\" class=\"data row440 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col1\" class=\"data row440 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col2\" class=\"data row440 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col3\" class=\"data row440 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col4\" class=\"data row440 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col5\" class=\"data row440 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col6\" class=\"data row440 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row440_col7\" class=\"data row440 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row441\" class=\"row_heading level0 row441\" >(30, 6)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col0\" class=\"data row441 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col1\" class=\"data row441 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col2\" class=\"data row441 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col3\" class=\"data row441 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col4\" class=\"data row441 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col5\" class=\"data row441 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col6\" class=\"data row441 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row441_col7\" class=\"data row441 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row442\" class=\"row_heading level0 row442\" >(30, 7)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col0\" class=\"data row442 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col1\" class=\"data row442 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col2\" class=\"data row442 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col3\" class=\"data row442 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col4\" class=\"data row442 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col5\" class=\"data row442 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col6\" class=\"data row442 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row442_col7\" class=\"data row442 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row443\" class=\"row_heading level0 row443\" >(30, 8)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col0\" class=\"data row443 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col1\" class=\"data row443 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col2\" class=\"data row443 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col3\" class=\"data row443 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col4\" class=\"data row443 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col5\" class=\"data row443 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col6\" class=\"data row443 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row443_col7\" class=\"data row443 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row444\" class=\"row_heading level0 row444\" >(30, 9)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col0\" class=\"data row444 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col1\" class=\"data row444 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col2\" class=\"data row444 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col3\" class=\"data row444 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col4\" class=\"data row444 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col5\" class=\"data row444 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col6\" class=\"data row444 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row444_col7\" class=\"data row444 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row445\" class=\"row_heading level0 row445\" >(30, 10)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col0\" class=\"data row445 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col1\" class=\"data row445 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col2\" class=\"data row445 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col3\" class=\"data row445 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col4\" class=\"data row445 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col5\" class=\"data row445 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col6\" class=\"data row445 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row445_col7\" class=\"data row445 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row446\" class=\"row_heading level0 row446\" >(30, 11)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col0\" class=\"data row446 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col1\" class=\"data row446 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col2\" class=\"data row446 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col3\" class=\"data row446 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col4\" class=\"data row446 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col5\" class=\"data row446 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col6\" class=\"data row446 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row446_col7\" class=\"data row446 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row447\" class=\"row_heading level0 row447\" >(30, 12)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col0\" class=\"data row447 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col1\" class=\"data row447 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col2\" class=\"data row447 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col3\" class=\"data row447 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col4\" class=\"data row447 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col5\" class=\"data row447 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col6\" class=\"data row447 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row447_col7\" class=\"data row447 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row448\" class=\"row_heading level0 row448\" >(30, 13)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col0\" class=\"data row448 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col1\" class=\"data row448 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col2\" class=\"data row448 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col3\" class=\"data row448 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col4\" class=\"data row448 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col5\" class=\"data row448 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col6\" class=\"data row448 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row448_col7\" class=\"data row448 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row449\" class=\"row_heading level0 row449\" >(30, 14)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col0\" class=\"data row449 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col1\" class=\"data row449 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col2\" class=\"data row449 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col3\" class=\"data row449 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col4\" class=\"data row449 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col5\" class=\"data row449 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col6\" class=\"data row449 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row449_col7\" class=\"data row449 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row450\" class=\"row_heading level0 row450\" >(30, 15)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col0\" class=\"data row450 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col1\" class=\"data row450 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col2\" class=\"data row450 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col3\" class=\"data row450 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col4\" class=\"data row450 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col5\" class=\"data row450 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col6\" class=\"data row450 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row450_col7\" class=\"data row450 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row451\" class=\"row_heading level0 row451\" >(30, 16)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col0\" class=\"data row451 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col1\" class=\"data row451 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col2\" class=\"data row451 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col3\" class=\"data row451 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col4\" class=\"data row451 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col5\" class=\"data row451 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col6\" class=\"data row451 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row451_col7\" class=\"data row451 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row452\" class=\"row_heading level0 row452\" >(30, 17)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col0\" class=\"data row452 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col1\" class=\"data row452 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col2\" class=\"data row452 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col3\" class=\"data row452 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col4\" class=\"data row452 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col5\" class=\"data row452 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col6\" class=\"data row452 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row452_col7\" class=\"data row452 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row453\" class=\"row_heading level0 row453\" >(30, 18)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col0\" class=\"data row453 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col1\" class=\"data row453 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col2\" class=\"data row453 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col3\" class=\"data row453 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col4\" class=\"data row453 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col5\" class=\"data row453 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col6\" class=\"data row453 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row453_col7\" class=\"data row453 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row454\" class=\"row_heading level0 row454\" >(30, 19)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col0\" class=\"data row454 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col1\" class=\"data row454 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col2\" class=\"data row454 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col3\" class=\"data row454 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col4\" class=\"data row454 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col5\" class=\"data row454 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col6\" class=\"data row454 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row454_col7\" class=\"data row454 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row455\" class=\"row_heading level0 row455\" >(30, 20)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col0\" class=\"data row455 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col1\" class=\"data row455 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col2\" class=\"data row455 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col3\" class=\"data row455 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col4\" class=\"data row455 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col5\" class=\"data row455 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col6\" class=\"data row455 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row455_col7\" class=\"data row455 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row456\" class=\"row_heading level0 row456\" >(30, 21)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col0\" class=\"data row456 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col1\" class=\"data row456 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col2\" class=\"data row456 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col3\" class=\"data row456 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col4\" class=\"data row456 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col5\" class=\"data row456 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col6\" class=\"data row456 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row456_col7\" class=\"data row456 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row457\" class=\"row_heading level0 row457\" >(30, 22)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col0\" class=\"data row457 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col1\" class=\"data row457 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col2\" class=\"data row457 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col3\" class=\"data row457 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col4\" class=\"data row457 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col5\" class=\"data row457 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col6\" class=\"data row457 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row457_col7\" class=\"data row457 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row458\" class=\"row_heading level0 row458\" >(30, 23)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col0\" class=\"data row458 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col1\" class=\"data row458 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col2\" class=\"data row458 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col3\" class=\"data row458 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col4\" class=\"data row458 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col5\" class=\"data row458 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col6\" class=\"data row458 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row458_col7\" class=\"data row458 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row459\" class=\"row_heading level0 row459\" >(30, 24)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col0\" class=\"data row459 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col1\" class=\"data row459 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col2\" class=\"data row459 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col3\" class=\"data row459 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col4\" class=\"data row459 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col5\" class=\"data row459 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col6\" class=\"data row459 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row459_col7\" class=\"data row459 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row460\" class=\"row_heading level0 row460\" >(30, 25)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col0\" class=\"data row460 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col1\" class=\"data row460 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col2\" class=\"data row460 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col3\" class=\"data row460 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col4\" class=\"data row460 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col5\" class=\"data row460 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col6\" class=\"data row460 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row460_col7\" class=\"data row460 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row461\" class=\"row_heading level0 row461\" >(30, 26)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col0\" class=\"data row461 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col1\" class=\"data row461 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col2\" class=\"data row461 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col3\" class=\"data row461 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col4\" class=\"data row461 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col5\" class=\"data row461 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col6\" class=\"data row461 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row461_col7\" class=\"data row461 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row462\" class=\"row_heading level0 row462\" >(30, 27)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col0\" class=\"data row462 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col1\" class=\"data row462 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col2\" class=\"data row462 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col3\" class=\"data row462 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col4\" class=\"data row462 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col5\" class=\"data row462 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col6\" class=\"data row462 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row462_col7\" class=\"data row462 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row463\" class=\"row_heading level0 row463\" >(30, 28)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col0\" class=\"data row463 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col1\" class=\"data row463 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col2\" class=\"data row463 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col3\" class=\"data row463 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col4\" class=\"data row463 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col5\" class=\"data row463 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col6\" class=\"data row463 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row463_col7\" class=\"data row463 col7\" >True</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53level0_row464\" class=\"row_heading level0 row464\" >(30, 29)</th>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col0\" class=\"data row464 col0\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col1\" class=\"data row464 col1\" >1</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col2\" class=\"data row464 col2\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col3\" class=\"data row464 col3\" >True</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col4\" class=\"data row464 col4\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col5\" class=\"data row464 col5\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col6\" class=\"data row464 col6\" >0</td>\n", | |
" <td id=\"T_33417e7e_59da_11ea_97e9_c83dd46c2c53row464_col7\" class=\"data row464 col7\" >True</td>\n", | |
" </tr>\n", | |
" </tbody></table>" | |
], | |
"text/plain": [ | |
"<pandas.io.formats.style.Styler at 0x7f463c0f8eb8>" | |
] | |
}, | |
"execution_count": 8, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"tt.style.applymap(highlight_values, subset=['val_lvl', 'val_lns']).applymap(\n", | |
" highlight_diff, subset=['diff_lvl', 'diff_lns'])" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"## Check specific ion levels\n", | |
"\n", | |
"This function is specially useful when you have same number of levels for a specific ion and `val_lvl` is `False`. Otherwise the color scheme could be confusing, so focus on energy values." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 9, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"ion = (18,1)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 10, | |
"metadata": { | |
"scrolled": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<style type=\"text/css\" >\n", | |
" #T_33aef012_59da_11ea_97e9_c83dd46c2c53row0_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row0_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row0_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row1_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row1_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row1_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row2_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row2_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row2_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row3_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row3_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row3_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row4_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row4_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row4_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row5_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row5_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row5_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row6_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row6_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row6_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row7_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row7_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row7_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row8_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row8_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row8_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row9_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row9_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row9_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row10_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row10_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row10_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row11_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row11_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row11_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row12_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row12_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row12_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row13_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row13_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row13_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row14_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row14_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row14_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row15_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row15_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row15_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row16_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row16_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row16_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row17_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row17_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row17_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row18_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row18_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row18_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row19_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row19_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row19_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row20_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row20_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row20_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row21_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row21_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row21_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row22_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row22_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row22_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row23_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row23_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row23_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row24_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row24_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row24_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row25_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row25_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row25_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row26_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row26_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row26_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row27_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row27_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row27_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row28_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row28_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row28_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row29_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row29_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row29_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row30_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row30_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row30_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row31_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row31_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row31_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row32_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row32_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row32_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row33_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row33_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row33_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row34_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row34_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row34_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row35_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row35_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row35_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row36_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row36_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row36_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row37_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row37_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row37_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row38_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row38_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row38_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row39_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row39_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row39_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row40_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row40_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row40_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row41_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row41_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row41_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row42_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row42_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row42_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row43_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row43_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row43_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row44_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row44_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row44_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row45_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row45_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row45_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row46_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row46_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row46_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row47_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row47_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row47_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row48_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row48_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row48_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row49_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row49_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row49_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row50_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row50_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row50_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row51_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row51_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row51_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row52_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row52_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row52_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row53_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row53_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row53_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row54_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row54_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row54_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row55_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row55_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row55_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row56_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row56_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row56_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row57_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row57_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row57_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row58_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row58_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row58_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row59_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row59_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row59_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row60_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row60_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row60_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row61_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row61_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row61_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row62_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row62_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row62_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row63_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row63_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row63_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row64_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row64_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row64_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row65_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row65_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row65_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row66_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row66_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row66_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row67_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row67_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row67_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row68_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row68_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row68_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row69_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row69_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row69_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row70_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row70_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row70_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row71_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row71_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row71_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row72_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row72_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row72_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row73_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row73_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row73_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row74_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row74_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row74_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row75_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row75_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row75_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row76_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row76_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row76_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row77_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row77_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row77_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row78_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row78_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row78_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row79_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row79_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row79_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row80_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row80_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row80_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row81_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row81_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row81_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row82_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row82_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row82_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row83_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row83_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row83_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row84_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row84_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row84_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row85_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row85_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row85_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row86_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row86_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row86_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row87_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row87_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row87_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row88_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row88_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row88_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row89_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row89_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row89_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row90_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row90_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row90_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row91_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row91_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row91_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row92_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row92_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row92_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row93_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row93_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row93_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row94_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row94_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row94_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row95_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row95_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row95_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row96_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row96_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row96_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row97_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row97_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row97_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row98_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row98_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row98_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row99_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row99_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row99_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row100_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row100_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row100_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row101_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row101_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row101_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row102_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row102_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row102_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row103_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row103_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row103_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row104_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row104_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row104_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row105_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row105_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row105_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row106_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row106_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row106_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row107_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row107_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row107_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row108_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row108_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row108_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row109_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row109_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row109_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row110_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row110_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row110_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row111_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row111_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row111_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row112_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row112_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row112_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row113_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row113_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row113_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row114_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row114_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row114_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row115_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row115_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row115_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row116_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row116_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row116_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row117_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row117_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row117_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row118_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row118_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row118_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row119_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row119_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row119_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row120_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row120_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row120_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row121_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row121_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row121_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row122_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row122_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row122_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row123_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row123_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row123_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row124_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row124_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row124_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row125_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row125_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row125_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row126_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row126_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row126_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row127_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row127_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row127_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row128_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row128_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row128_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row129_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row129_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row129_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row130_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row130_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row130_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row131_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row131_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row131_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row132_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row132_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row132_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row133_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row133_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row133_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row134_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row134_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row134_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row135_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row135_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row135_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row136_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row136_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row136_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row137_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row137_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row137_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row138_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row138_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row138_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row139_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row139_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row139_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row140_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row140_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row140_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row141_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row141_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row141_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row142_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row142_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row142_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row143_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row143_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row143_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row144_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row144_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row144_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row145_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row145_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row145_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row146_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row146_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row146_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row147_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row147_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row147_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row148_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row148_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row148_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row149_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row149_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row149_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row150_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row150_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row150_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row151_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row151_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row151_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row152_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row152_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row152_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row153_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row153_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row153_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row154_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row154_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row154_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row155_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row155_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row155_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row156_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row156_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row156_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row157_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row157_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row157_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row158_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row158_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row158_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row159_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row159_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row159_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row160_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row160_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row160_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row161_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row161_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row161_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row162_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row162_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row162_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row163_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row163_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row163_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row164_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row164_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row164_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row165_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row165_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row165_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row166_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row166_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row166_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row167_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row167_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row167_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row168_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row168_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row168_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row169_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row169_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row169_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row170_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row170_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row170_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row171_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row171_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row171_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row172_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row172_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row172_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row173_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row173_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row173_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row174_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row174_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row174_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row175_col2 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row175_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row175_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row176_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row176_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row176_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row177_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row177_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row177_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row178_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row178_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row178_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row179_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row179_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row179_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row180_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row180_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row180_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row181_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row181_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row181_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row182_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row182_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row182_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row183_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row183_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row183_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row184_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row184_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row184_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row185_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row185_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row185_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row186_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row186_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row186_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row187_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row187_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row187_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row188_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row188_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row188_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row189_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row189_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row189_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row190_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row190_col5 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row190_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row191_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row191_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row191_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row192_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row192_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row192_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row193_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row193_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row193_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row194_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row194_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row194_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row195_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row195_col5 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row195_col8 {\n", | |
" background-color: #BCF5A9;\n", | |
" } #T_33aef012_59da_11ea_97e9_c83dd46c2c53row196_col2 {\n", | |
" background-color: #F5A9A9;\n", | |
" } #T_33aef |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment